Skip to content

Commit

Permalink
fix: add graylog toml tags (#10660)
Browse files Browse the repository at this point in the history
  • Loading branch information
powersj authored Feb 16, 2022
1 parent 0d529d8 commit dbafbed
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions plugins/inputs/graylog/graylog.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit dbafbed

Please sign in to comment.