mirror of
https://github.com/openziti/zrok.git
synced 2026-08-24 10:14:56 -05:00
22 lines
283 B
Go
22 lines
283 B
Go
package metrics
|
|
|
|
import (
|
|
"github.com/michaelquigley/df/dd"
|
|
)
|
|
|
|
type Config struct {
|
|
Influx *InfluxConfig
|
|
Agent *AgentConfig
|
|
}
|
|
|
|
type AgentConfig struct {
|
|
Source dd.Dynamic
|
|
}
|
|
|
|
type InfluxConfig struct {
|
|
Url string
|
|
Bucket string
|
|
Org string
|
|
Token string `dd:"+secret"`
|
|
}
|