influxdb: pass tags to alerting from influxdb client

closes #10046
This commit is contained in:
bergquist 2017-12-01 16:16:49 +01:00
parent 5e9f0771c5
commit 9282182805

View File

@ -50,6 +50,7 @@ func (rp *ResponseParser) transformRows(rows []Row, queryResult *tsdb.QueryResul
result = append(result, &tsdb.TimeSeries{ result = append(result, &tsdb.TimeSeries{
Name: rp.formatSerieName(row, column, query), Name: rp.formatSerieName(row, column, query),
Points: points, Points: points,
Tags: row.Tags,
}) })
} }
} }