mirror of
https://github.com/openziti/zrok.git
synced 2025-06-23 19:22:19 +02:00
metrics config infrastructure (#74)
This commit is contained in:
parent
01f056784a
commit
9d78e8e942
@ -13,6 +13,7 @@ type Config struct {
|
|||||||
Registration *RegistrationConfig
|
Registration *RegistrationConfig
|
||||||
Store *store.Config
|
Store *store.Config
|
||||||
Ziti *ZitiConfig
|
Ziti *ZitiConfig
|
||||||
|
MetricsConfig *MetricsConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
type EndpointConfig struct {
|
type EndpointConfig struct {
|
||||||
|
12
controller/metrics.go
Normal file
12
controller/metrics.go
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
package controller
|
||||||
|
|
||||||
|
type MetricsConfig struct {
|
||||||
|
Influx *InfluxConfig
|
||||||
|
}
|
||||||
|
|
||||||
|
type InfluxConfig struct {
|
||||||
|
Url string
|
||||||
|
Bucket string
|
||||||
|
Org string
|
||||||
|
Token string
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user