dbb420f79e
Co-authored-by: AlteredCoder Co-authored-by: erenJag
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"`
|
|
}
|