mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
495e92ce9f
* add maxprocs * add prereqs * add tos and version pkg * add in all runtime packages Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
19 lines
378 B
Go
19 lines
378 B
Go
package version
|
|
|
|
import (
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
|
)
|
|
|
|
var prysmInfo = promauto.NewGauge(prometheus.GaugeOpts{
|
|
Name: "prysm_version",
|
|
ConstLabels: prometheus.Labels{
|
|
"version": gitTag,
|
|
"commit": gitCommit,
|
|
"buildDate": buildDateUnix},
|
|
})
|
|
|
|
func init() {
|
|
prysmInfo.Set(float64(1))
|
|
}
|