Dmitrii Stepanov
c09144ecf1
Use observability module. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
45 lines
1.3 KiB
Go
45 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
metricsconfig "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-node/config/metrics"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-observability/metrics"
|
|
)
|
|
|
|
func metricsComponent(c *cfg) (*httpComponent, bool) {
|
|
var updated bool
|
|
// check if it has been inited before
|
|
if c.dynamicConfiguration.metrics == nil {
|
|
c.dynamicConfiguration.metrics = new(httpComponent)
|
|
c.dynamicConfiguration.metrics.cfg = c
|
|
c.dynamicConfiguration.metrics.name = "metrics"
|
|
c.dynamicConfiguration.metrics.handler = metrics.Handler()
|
|
updated = true
|
|
}
|
|
|
|
// (re)init read configuration
|
|
enabled := metricsconfig.Enabled(c.appCfg)
|
|
if enabled != c.dynamicConfiguration.metrics.enabled {
|
|
c.dynamicConfiguration.metrics.enabled = enabled
|
|
updated = true
|
|
}
|
|
address := metricsconfig.Address(c.appCfg)
|
|
if address != c.dynamicConfiguration.metrics.address {
|
|
c.dynamicConfiguration.metrics.address = address
|
|
updated = true
|
|
}
|
|
dur := metricsconfig.ShutdownTimeout(c.appCfg)
|
|
if dur != c.dynamicConfiguration.metrics.shutdownDur {
|
|
c.dynamicConfiguration.metrics.shutdownDur = dur
|
|
updated = true
|
|
}
|
|
|
|
return c.dynamicConfiguration.metrics, updated
|
|
}
|
|
|
|
func enableMetricsSvc(c *cfg) {
|
|
c.shared.metricsSvc.Enable()
|
|
}
|
|
|
|
func disableMetricsSvc(c *cfg) {
|
|
c.shared.metricsSvc.Disable()
|
|
}
|