From 92821828055820bcbb6fdcaeba4a2b58eceab85f Mon Sep 17 00:00:00 2001 From: bergquist Date: Fri, 1 Dec 2017 16:16:49 +0100 Subject: [PATCH] influxdb: pass tags to alerting from influxdb client closes #10046 --- pkg/tsdb/influxdb/response_parser.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/tsdb/influxdb/response_parser.go b/pkg/tsdb/influxdb/response_parser.go index b7db6182241..8de8dcbb464 100644 --- a/pkg/tsdb/influxdb/response_parser.go +++ b/pkg/tsdb/influxdb/response_parser.go @@ -50,6 +50,7 @@ func (rp *ResponseParser) transformRows(rows []Row, queryResult *tsdb.QueryResul result = append(result, &tsdb.TimeSeries{ Name: rp.formatSerieName(row, column, query), Points: points, + Tags: row.Tags, }) } }