/** * The InfluxdbWriter type writes check result metrics and * performance data to an InfluxDB HTTP API */ object InfluxdbWriter "influxdb" { host = "{{ grafana_influxdb.bindaddr }}" port = "{{ grafana_influxdb.bindport }}" database = "{{ grafana_influxdb.database }}" flush_threshold = 1024 flush_interval = 10s host_template = { measurement = "$host.check_command$" tags = { hostname = "$host.name$" } } service_template = { measurement = "$service.check_command$" tags = { hostname = "$host.name$" service = "$service.name$" } } }