prometheus: convert zrepl_version_daemon to zrepl_start_time metric

closes https://github.com/zrepl/zrepl/pull/556
fixes #553
This commit is contained in:
Lapo Luchini
2022-01-12 16:52:58 +01:00
committed by Christian Schwarz
parent 0a6840273a
commit 4a27cc63a8
3 changed files with 17 additions and 7 deletions
+5 -6
View File
@@ -34,20 +34,19 @@ func (i *ZreplVersionInformation) String() string {
i.Version, i.RuntimeGo, i.RuntimeGOOS, i.RuntimeGOARCH, i.RUNTIMECompiler)
}
var prometheusMetric = prometheus.NewUntypedFunc(
prometheus.UntypedOpts{
var prometheusMetric = prometheus.NewGauge(
prometheus.GaugeOpts{
Namespace: "zrepl",
Subsystem: "version",
Name: "daemon",
Help: "zrepl daemon version",
Name: "start_time",
Help: "zrepl daemon start time and version",
ConstLabels: map[string]string{
"raw": zreplVersion,
"version_info": NewZreplVersionInformation().String(),
},
},
func() float64 { return 1 },
)
func PrometheusRegister(r prometheus.Registerer) {
r.MustRegister(prometheusMetric)
prometheusMetric.SetToCurrentTime()
}