1
1
mirror of https://github.com/openziti/zrok.git synced 2025-06-08 10:57:28 +02:00
2023-03-15 16:14:06 -04:00

18 lines
237 B
Go

package metrics
type Config struct {
Influx *InfluxConfig
Agent *AgentConfig
}
type AgentConfig struct {
Source interface{}
}
type InfluxConfig struct {
Url string
Bucket string
Org string
Token string `cf:"+secret"`
}