categraf/config/prometheus.go

13 lines
341 B
Go
Raw Normal View History

package config
type (
Prometheus struct {
Enable bool `toml:"enable"`
2022-07-12 12:57:03 +08:00
LogLevel string `toml:"log_level"`
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"`
}
)