forked from TrueCloudLab/frostfs-node
[#1154] node: Add info metric
Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
This commit is contained in:
parent
4f7d76c9ef
commit
87a4a6e8d0
2 changed files with 24 additions and 0 deletions
21
internal/metrics/application.go
Normal file
21
internal/metrics/application.go
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
package metrics
|
||||||
|
|
||||||
|
import (
|
||||||
|
"git.frostfs.info/TrueCloudLab/frostfs-observability/metrics"
|
||||||
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ApplicationInfo struct {
|
||||||
|
versionValue *prometheus.GaugeVec
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewApplicationInfo(version string) *ApplicationInfo {
|
||||||
|
appInfo := &ApplicationInfo{
|
||||||
|
versionValue: metrics.NewGaugeVec(prometheus.GaugeOpts{
|
||||||
|
Name: "app_info",
|
||||||
|
Help: "General information about the application.",
|
||||||
|
}, []string{"version"}),
|
||||||
|
}
|
||||||
|
appInfo.versionValue.With(prometheus.Labels{"version": version})
|
||||||
|
return appInfo
|
||||||
|
}
|
|
@ -1,6 +1,7 @@
|
||||||
package metrics
|
package metrics
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"git.frostfs.info/TrueCloudLab/frostfs-node/misc"
|
||||||
morphmetrics "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/metrics"
|
morphmetrics "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/metrics"
|
||||||
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/logger"
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/logger"
|
||||||
"git.frostfs.info/TrueCloudLab/frostfs-observability/metrics"
|
"git.frostfs.info/TrueCloudLab/frostfs-observability/metrics"
|
||||||
|
@ -24,6 +25,7 @@ type NodeMetrics struct {
|
||||||
morphClient *morphClientMetrics
|
morphClient *morphClientMetrics
|
||||||
morphCache *morphCacheMetrics
|
morphCache *morphCacheMetrics
|
||||||
log logger.LogMetrics
|
log logger.LogMetrics
|
||||||
|
appInfo *ApplicationInfo
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewNodeMetrics() *NodeMetrics {
|
func NewNodeMetrics() *NodeMetrics {
|
||||||
|
@ -49,6 +51,7 @@ func NewNodeMetrics() *NodeMetrics {
|
||||||
morphClient: newMorphClientMetrics(),
|
morphClient: newMorphClientMetrics(),
|
||||||
morphCache: newMorphCacheMetrics(namespace),
|
morphCache: newMorphCacheMetrics(namespace),
|
||||||
log: logger.NewLogMetrics(namespace),
|
log: logger.NewLogMetrics(namespace),
|
||||||
|
appInfo: NewApplicationInfo(misc.Version),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue