forked from TrueCloudLab/frostfs-node
ac46d1a11f
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
51 lines
1.2 KiB
Go
51 lines
1.2 KiB
Go
package metricsconfig
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/nspcc-dev/neofs-node/cmd/neofs-node/config"
|
|
)
|
|
|
|
const (
|
|
subsection = "metrics"
|
|
|
|
// ShutdownTimeoutDefault is a default value for metrics HTTP service timeout.
|
|
ShutdownTimeoutDefault = 30 * time.Second
|
|
|
|
// AddressDefault is a default value for metrics HTTP service endpoint.
|
|
AddressDefault = "localhost:9090"
|
|
)
|
|
|
|
// Enabled returns the value of "enabled" config parameter
|
|
// from "metrics" section.
|
|
//
|
|
// Returns false if the value is missing or invalid.
|
|
func Enabled(c *config.Config) bool {
|
|
return config.BoolSafe(c.Sub(subsection), "enabled")
|
|
}
|
|
|
|
// ShutdownTimeout returns the value of "shutdown_timeout" config parameter
|
|
// from "metrics" section.
|
|
//
|
|
// Returns ShutdownTimeoutDefault if the value is not positive duration.
|
|
func ShutdownTimeout(c *config.Config) time.Duration {
|
|
v := config.DurationSafe(c.Sub(subsection), "shutdown_timeout")
|
|
if v > 0 {
|
|
return v
|
|
}
|
|
|
|
return ShutdownTimeoutDefault
|
|
}
|
|
|
|
// Address returns the value of "address" config parameter
|
|
// from "metrics" section.
|
|
//
|
|
// Returns AddressDefault if the value is not set.
|
|
func Address(c *config.Config) string {
|
|
v := config.StringSafe(c.Sub(subsection), "address")
|
|
if v != "" {
|
|
return v
|
|
}
|
|
|
|
return AddressDefault
|
|
}
|