Fix faulty annotation tag for InfluxDB #2190 (#2192)

This commit is contained in:
Peter Hedenskog 2018-10-24 20:06:48 +02:00 committed by GitHub
parent 3ecf1bb3a9
commit 5d9acb33cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ module.exports = {
if (options.influxdb.tags) {
for (var row of options.influxdb.tags.split(',')) {
const keyAndValue = row.split('=');
tags += `,${keyAndValue[1]}`;
tags.push(keyAndValue[1]);
}
}
const influxDBTags = annotationsHelper.getTagsAsString(tags);