File tree 2 files changed +21
-20
lines changed
2 files changed +21
-20
lines changed Original file line number Diff line number Diff line change 39
39
GitCommit string
40
40
)
41
41
42
- //newDesc converts one e.metric to a Prometheus description
43
- func newDesc (m metric ) * prometheus.Desc {
44
- return prometheus .NewDesc (m .name , m .help , nil , nil )
45
- }
46
-
47
- //neMetric converts one e.metric to a Prometheus metric
48
- func newMetric (m metric ) (prometheus.Metric , error ) {
49
- return prometheus .NewConstMetric (newDesc (m ), m .kind , m .value )
50
- }
51
-
52
42
// NewExporter returns an initialized Exporter.
53
43
func NewExporter (c * config , timeout time.Duration ) * Exporter {
54
44
@@ -75,31 +65,31 @@ func NewExporter(c *config, timeout time.Duration) *Exporter {
75
65
// Collect implements prometheus.Collector.
76
66
func (e * Exporter ) Collect (ch chan <- prometheus.Metric ) {
77
67
78
- var up float64
68
+ var err error
79
69
80
- if err : = e .scrape (); err != nil {
70
+ if err = e .scrape (); err != nil {
81
71
log .Warnln (err )
82
- } else {
83
- e .mu .Lock ()
84
- up = 1
85
- e .mu .Unlock ()
86
72
}
87
73
88
74
//Send the metrics to the channel
89
75
e .mu .Lock ()
90
76
91
- e .up .Set (up )
77
+ if err != nil {
78
+ e .up .Set (0 )
79
+ } else {
80
+ e .up .Set (1 )
81
+ }
82
+ ch <- e .up
83
+
92
84
e .totalScrapes .Inc ()
85
+ ch <- e .totalScrapes
93
86
94
87
metricList := make ([]metric , 0 , len (e .metrics ))
95
88
for _ , i := range e .metrics {
96
89
metricList = append (metricList , * i )
97
90
}
98
91
e .mu .Unlock ()
99
92
100
- ch <- e .up
101
- ch <- e .totalScrapes
102
-
103
93
for _ , i := range metricList {
104
94
m , err := newMetric (i )
105
95
if err != nil {
Original file line number Diff line number Diff line change 4
4
"strconv"
5
5
6
6
"code.cloudfoundry.org/bytefmt"
7
+ "github.com/prometheus/client_golang/prometheus"
7
8
"github.com/prometheus/common/log"
8
9
)
9
10
@@ -23,3 +24,13 @@ func parseString(s string) (float64, error) {
23
24
24
25
return v , nil
25
26
}
27
+
28
+ //newDesc converts one e.metric to a Prometheus description
29
+ func newDesc (m metric ) * prometheus.Desc {
30
+ return prometheus .NewDesc (m .name , m .help , nil , nil )
31
+ }
32
+
33
+ //neMetric converts one e.metric to a Prometheus metric
34
+ func newMetric (m metric ) (prometheus.Metric , error ) {
35
+ return prometheus .NewConstMetric (newDesc (m ), m .kind , m .value )
36
+ }
You can’t perform that action at this time.
0 commit comments