Skip to content
Snippets Groups Projects
Unverified Commit 168270ea authored by Cameron Sparr's avatar Cameron Sparr
Browse files

ntpq: correct number of seconds in an hour

closes #2256
parent c4d4185f
No related branches found
No related tags found
No related merge requests found
......@@ -136,7 +136,7 @@ func (n *NTPQ) Gather(acc telegraf.Accumulator) error {
continue
}
// seconds in an hour
mFields[key] = int64(m) * 360
mFields[key] = int64(m) * 3600
continue
case strings.HasSuffix(when, "d"):
m, err := strconv.Atoi(strings.TrimSuffix(fields[index], "d"))
......
......@@ -171,7 +171,7 @@ func TestHoursNTPQ(t *testing.T) {
assert.NoError(t, n.Gather(&acc))
fields := map[string]interface{}{
"when": int64(720),
"when": int64(7200),
"poll": int64(256),
"reach": int64(37),
"delay": float64(51.016),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment