mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 08:23:50 +01:00
b9503685f0
refs #378 refs #377
54 lines
1.2 KiB
Go
54 lines
1.2 KiB
Go
package version
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
var (
|
|
zreplVersion string // set by build infrastructure
|
|
)
|
|
|
|
type ZreplVersionInformation struct {
|
|
Version string
|
|
RuntimeGo string
|
|
RuntimeGOOS string
|
|
RuntimeGOARCH string
|
|
RUNTIMECompiler string
|
|
}
|
|
|
|
func NewZreplVersionInformation() *ZreplVersionInformation {
|
|
return &ZreplVersionInformation{
|
|
Version: zreplVersion,
|
|
RuntimeGo: runtime.Version(),
|
|
RuntimeGOOS: runtime.GOOS,
|
|
RuntimeGOARCH: runtime.GOARCH,
|
|
RUNTIMECompiler: runtime.Compiler,
|
|
}
|
|
}
|
|
|
|
func (i *ZreplVersionInformation) String() string {
|
|
return fmt.Sprintf("zrepl version=%s go=%s GOOS=%s GOARCH=%s Compiler=%s",
|
|
i.Version, i.RuntimeGo, i.RuntimeGOOS, i.RuntimeGOARCH, i.RUNTIMECompiler)
|
|
}
|
|
|
|
var prometheusMetric = prometheus.NewUntypedFunc(
|
|
prometheus.UntypedOpts{
|
|
Namespace: "zrepl",
|
|
Subsystem: "version",
|
|
Name: "daemon",
|
|
Help: "zrepl daemon version",
|
|
ConstLabels: map[string]string{
|
|
"raw": zreplVersion,
|
|
"version_info": NewZreplVersionInformation().String(),
|
|
},
|
|
},
|
|
func() float64 { return 1 },
|
|
)
|
|
|
|
func PrometheusRegister(r prometheus.Registerer) {
|
|
r.MustRegister(prometheusMetric)
|
|
}
|