mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-11 20:36:12 +02:00
9 lines
221 B
Go
9 lines
221 B
Go
package csconfig
|
|
|
|
/**/
|
|
type PrometheusCfg struct {
|
|
Enabled bool `yaml:"enabled"`
|
|
Level string `yaml:"level"` //aggregated|full
|
|
ListenAddr string `yaml:"listen_addr"`
|
|
ListenPort int `yaml:"listen_port"`
|
|
}
|