blob: 7f6607e0830e27a9da85ad00b5163149b58cde36 [file] [log] [blame]
package config
import (
"time"
)
// Config represents exporter configuration.
type Config struct {
ListenAddress string
TelemetryPath string
DatabaseURL string
StoreTimeout time.Duration
ExportStats bool
ExportPools bool
ExportDatabases bool
ExportLists bool
}