internal.Duration build fixup

This commit is contained in:
Cameron Sparr 2016-12-17 13:10:33 +00:00
parent 6f9de7ab3d
commit 468e7e2c74
1 changed files with 1 additions and 1 deletions

View File

@ -153,6 +153,6 @@ func (p *Prometheus) gatherURL(url string, acc telegraf.Accumulator) error {
func init() {
inputs.Add("prometheus", func() telegraf.Input {
return &Prometheus{ResponseTimeout: "3s"}
return &Prometheus{ResponseTimeout: internal.Duration{Duration: time.Second * 3}}
})
}