Merge pull request #5994 from Icinga/fix/influxdb-template

InfluxDBWriter: Fix macro in template
This commit is contained in:
Gunnar Beutner 2018-01-17 10:27:55 +01:00 committed by GitHub
commit 9ad5def531
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class InfluxdbWriter : ConfigObject
return new Dictionary({
{ "measurement", "$service.check_command$" },
{ "tags", new Dictionary({
{ "hostname", "$host.name" },
{ "hostname", "$host.name$" },
{ "service", "$service.name$" }
}) }
});