zrok/controller/metrics/config.go

18 lines
255 B
Go
Raw Normal View History

2023-03-03 19:31:57 +01:00
package metrics
type Config struct {
Influx *InfluxConfig
Strategies *StrategiesConfig
}
type InfluxConfig struct {
Url string
Bucket string
Org string
Token string `cf:"+secret"`
2023-03-03 19:31:57 +01:00
}
2023-03-03 19:51:10 +01:00
type StrategiesConfig struct {
Source interface{}
2023-03-03 19:51:10 +01:00
}