fix: add graylog toml tags (#10660)

This commit is contained in:
Joshua Powers 2022-02-16 07:55:30 -08:00 committed by GitHub
parent 0d529d89ea
commit dbafbed42d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -31,13 +31,13 @@ type Metric struct {
}
type GrayLog struct {
Servers []string
Metrics []string
Username string
Password string
Timeout config.Duration
tls.ClientConfig
Servers []string `toml:"servers"`
Metrics []string `toml:"metrics"`
Username string `toml:"username"`
Password string `toml:"password"`
Timeout config.Duration `toml:"timeout"`
tls.ClientConfig
client HTTPClient
}