mirror of
https://github.com/openziti/zrok.git
synced 2025-04-09 16:39:05 +02:00
18 lines
255 B
Go
18 lines
255 B
Go
package metrics
|
|
|
|
type Config struct {
|
|
Influx *InfluxConfig
|
|
Strategies *StrategiesConfig
|
|
}
|
|
|
|
type InfluxConfig struct {
|
|
Url string
|
|
Bucket string
|
|
Org string
|
|
Token string `cf:"+secret"`
|
|
}
|
|
|
|
type StrategiesConfig struct {
|
|
Source interface{}
|
|
}
|