We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbcafe2 commit 40453e3Copy full SHA for 40453e3
exporter/collector.go
@@ -96,7 +96,7 @@ func (mc JSONMetricCollector) Collect(ch chan<- prometheus.Metric) {
96
// When value starts by '0x', convert hex to decimal
97
if strings.HasPrefix(value, "0x") {
98
value = formatHex(value)
99
- }
+ }
100
101
if floatValue, err := SanitizeValue(value); err == nil {
102
metric := prometheus.MustNewConstMetric(
0 commit comments