Hallo.
I enabled influxdbwriter from icinga to influxdb.
I need to monitor the increase of maxdb database.
I see the Data area on Icinga with check_maxdb
In influxdb doesn’t arrive the value of Data Area.
I see:
show tag keys on icinga2 from check_maxdb
name: check_maxdb
tagKey
hostname
service
so no metric tags.
Why?
Instead, if I execute on influxdb:
show tag keys on icinga2 from check_wmi
name: check_wmi
tagKey
hostname
metric
This my influxdb.conf:
more /etc/icinga2/features-enabled/influxdb.conf
host = “hostnameinfluxdb”
port = 8086
database = “icinga2”
username = “icinga2”
password = “icinga2”
flush_threshold = 1024
flush_interval = 7200s
enable_send_metadata = true
enable_send_thresholds = true
host_template = {
measurement = “$host.check_command$”
tags = {
hostname = “$host.name$”
}
}
service_template = {
measurement = “$service.check_command$”
tags = {
hostname = “$host.name$”
service = “$service.name$”
}
}
}
What could I check?