Update new relic plugin to correctly handle 1 minute time periods requested on the hour. (+1 squashed commits)

Squashed commits:

[57f5f76] Update new relic plugin to correctly handle 1 minute time periods requested on the hour.
This commit is contained in:
Ryan Merrick 2016-01-27 14:24:05 +00:00
parent 06c243ab87
commit a7ac63c235
1 changed files with 12 additions and 10 deletions

View File

@ -129,24 +129,26 @@ func (nr *NewRelic) Gather(acc inputs.Accumulator) error {
}
if len(nr.Metrics) > 0 {
t := time.Now()
tFrom := fmt.Sprintf("%d-%02d-%02dT%02d:%02d:%02d-00:00\n",
t.Year(), t.Month(), t.Day(),
t.Hour(), t.Minute()-1, t.Second())
tNow := time.Now()
tFrom := tNow.Add(-1 * time.Minute)
tTo := fmt.Sprintf("%d-%02d-%02dT%02d:%02d:%02d-00:00\n",
t.Year(), t.Month(), t.Day(),
t.Hour(), t.Minute(), t.Second())
tFromStr := fmt.Sprintf("%d-%02d-%02dT%02d:%02d:%02d-00:00\n",
tFrom.Year(), tFrom.Month(), tFrom.Day(),
tFrom.Hour(), tFrom.Minute(), 00)
tToStr := fmt.Sprintf("%d-%02d-%02dT%02d:%02d:%02d-00:00\n",
tNow.Year(), tNow.Month(), tNow.Day(),
tNow.Hour(), tNow.Minute(), 00)
vals := url.Values{}
vals.Add("from", tFromStr)
vals.Add("to", tToStr)
for k := range nr.Metrics {
vals.Add("names[]", k)
}
vals.Add("from", tFrom)
vals.Add("to", tTo)
result := conn.GetMetricData(nr.APPID, vals)
var fieldsMetrics map[string]interface{}