Skip to content

Commit 9f20cda

Browse files
authored
Fixing update metric issue
Metric weren't updating values after so adding them as references.
1 parent f98a87e commit 9f20cda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

emq_exporter.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ type Exporter struct {
4848
totalScrapes prometheus.Counter
4949
apiVersion string
5050

51-
metrics []metric
51+
metrics []*metric
5252
}
5353

5454
// NewExporter returns an initialized Exporter.
@@ -165,7 +165,7 @@ func (e *Exporter) addMetric(fqName, help string, value float64, labels []string
165165
}
166166

167167
//append a new metric to the metrics array
168-
e.metrics = append(e.metrics, metric{
168+
e.metrics = append(e.metrics, &metric{
169169
kind: prometheus.GaugeValue,
170170
desc: prometheus.NewDesc(fqName, help, labels, nil),
171171
value: value,

0 commit comments

Comments
 (0)