Skip to content

Commit 92ef187

Browse files
authored
feat: added version collector metric (#273)
This PR adds Prometheus build info metric ``` smartctl_exporter_build_info{branch="master",goarch="amd64",goos="linux",goversion="go1.24.0",revision="tarball",tags="unknown",version="0.13.0"} 1 ``` Signed-off-by: Konstantin Shalygin <[email protected]>
1 parent aec40bf commit 92ef187

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

main.go

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import (
2424
kingpin "github.com/alecthomas/kingpin/v2"
2525
"github.com/prometheus/client_golang/prometheus"
2626
"github.com/prometheus/client_golang/prometheus/collectors"
27+
versioncollector "github.com/prometheus/client_golang/prometheus/collectors/version"
2728
"github.com/prometheus/client_golang/prometheus/promhttp"
2829
"github.com/prometheus/common/promslog"
2930
"github.com/prometheus/common/promslog/flag"
@@ -216,6 +217,7 @@ func main() {
216217
}
217218

218219
reg := prometheus.NewPedanticRegistry()
220+
reg.MustRegister(versioncollector.NewCollector("smartctl_exporter"))
219221
reg.MustRegister(
220222
collectors.NewProcessCollector(collectors.ProcessCollectorOpts{}),
221223
collectors.NewGoCollector(),

0 commit comments

Comments
 (0)