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 { type GrayLog struct {
Servers []string Servers []string `toml:"servers"`
Metrics []string Metrics []string `toml:"metrics"`
Username string Username string `toml:"username"`
Password string Password string `toml:"password"`
Timeout config.Duration Timeout config.Duration `toml:"timeout"`
tls.ClientConfig
tls.ClientConfig
client HTTPClient client HTTPClient
} }