mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Add basic Prometheus metrics handler (#1830)
* feat: Add Prometheus configuration options * feat: Add Prometheus metrics handler * build: prometheus became direct dependency * docs: change description for prometheus metrics path
This commit is contained in:
parent
6a6fa3e3b5
commit
552989a05b
3 changed files with 22 additions and 1 deletions
|
@ -57,6 +57,7 @@ type configOptions struct {
|
|||
PasswordEncryptionKey string
|
||||
ReverseProxyUserHeader string
|
||||
ReverseProxyWhitelist string
|
||||
Prometheus prometheusOptions
|
||||
|
||||
Scanner scannerOptions
|
||||
|
||||
|
@ -101,6 +102,11 @@ type listenBrainzOptions struct {
|
|||
BaseURL string
|
||||
}
|
||||
|
||||
type prometheusOptions struct {
|
||||
Enabled bool
|
||||
MetricsPath string
|
||||
}
|
||||
|
||||
var (
|
||||
Server = &configOptions{}
|
||||
hooks []func()
|
||||
|
@ -244,6 +250,9 @@ func init() {
|
|||
viper.SetDefault("reverseproxyuserheader", "Remote-User")
|
||||
viper.SetDefault("reverseproxywhitelist", "")
|
||||
|
||||
viper.SetDefault("prometheus.enabled", false)
|
||||
viper.SetDefault("prometheus.metricspath", "/metrics")
|
||||
|
||||
viper.SetDefault("scanner.extractor", consts.DefaultScannerExtractor)
|
||||
viper.SetDefault("scanner.genreseparators", ";/,")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue