Skip to content

Commit d162455

Browse files
author
Hagai Barel
committed
Add e.up to mutex, refactor utils
1 parent 2f58965 commit d162455

File tree

2 files changed

+21
-20
lines changed

2 files changed

+21
-20
lines changed

emq_exporter.go

+10-20
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,6 @@ var (
3939
GitCommit string
4040
)
4141

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-
5242
// NewExporter returns an initialized Exporter.
5343
func NewExporter(c *config, timeout time.Duration) *Exporter {
5444

@@ -75,31 +65,31 @@ func NewExporter(c *config, timeout time.Duration) *Exporter {
7565
// Collect implements prometheus.Collector.
7666
func (e *Exporter) Collect(ch chan<- prometheus.Metric) {
7767

78-
var up float64
68+
var err error
7969

80-
if err := e.scrape(); err != nil {
70+
if err = e.scrape(); err != nil {
8171
log.Warnln(err)
82-
} else {
83-
e.mu.Lock()
84-
up = 1
85-
e.mu.Unlock()
8672
}
8773

8874
//Send the metrics to the channel
8975
e.mu.Lock()
9076

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+
9284
e.totalScrapes.Inc()
85+
ch <- e.totalScrapes
9386

9487
metricList := make([]metric, 0, len(e.metrics))
9588
for _, i := range e.metrics {
9689
metricList = append(metricList, *i)
9790
}
9891
e.mu.Unlock()
9992

100-
ch <- e.up
101-
ch <- e.totalScrapes
102-
10393
for _, i := range metricList {
10494
m, err := newMetric(i)
10595
if err != nil {

utils.go

+11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"strconv"
55

66
"code.cloudfoundry.org/bytefmt"
7+
"github.com/prometheus/client_golang/prometheus"
78
"github.com/prometheus/common/log"
89
)
910

@@ -23,3 +24,13 @@ func parseString(s string) (float64, error) {
2324

2425
return v, nil
2526
}
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+
}

0 commit comments

Comments
 (0)