mirror of
https://github.com/openziti/zrok.git
synced 2024-11-22 08:03:49 +01:00
18 lines
237 B
Go
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"`
|
|
}
|