mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
38 lines
891 B
Go
38 lines
891 B
Go
// Copyright (c) 2022 Gitpod GmbH. All rights reserved.
|
|
// Licensed under the GNU Affero General Public License (AGPL).
|
|
// See License.AGPL.txt in the project root for license information.
|
|
|
|
package baseserver
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
var (
|
|
serverVersionGauge = prometheus.NewGaugeVec(prometheus.GaugeOpts{
|
|
Namespace: "gitpod",
|
|
Subsystem: "server",
|
|
Name: "version",
|
|
Help: "Gauge of the current version of a gitpod server",
|
|
}, []string{"version"})
|
|
)
|
|
|
|
func registerMetrics(reg *prometheus.Registry) error {
|
|
metrics := []prometheus.Collector{
|
|
serverVersionGauge,
|
|
}
|
|
for _, metric := range metrics {
|
|
err := reg.Register(metric)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to register metric: %w", err)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func reportServerVersion(version string) {
|
|
serverVersionGauge.WithLabelValues(version).Set(1)
|
|
}
|