2022-07-11 22:55:33 +08:00
|
|
|
package config
|
|
|
|
|
|
|
|
type (
|
|
|
|
Prometheus struct {
|
|
|
|
Enable bool `toml:"enable"`
|
2022-07-12 12:57:03 +08:00
|
|
|
LogLevel string `toml:"log_level"`
|
2022-07-11 22:55:33 +08:00
|
|
|
ScrapeConfigFile string `toml:"scrape_config_file"`
|
|
|
|
WebAddress string `toml:"web_address"`
|
2022-07-12 08:51:02 +08:00
|
|
|
StoragePath string `toml:"wal_storage_path"`
|
|
|
|
MinBlockDuration string `toml:"wal_min_duration"`
|
2022-07-11 22:55:33 +08:00
|
|
|
}
|
|
|
|
)
|