Influxdbwriter no metric on check_maxdb

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?

Hello and welcome to the community!

I don’t have much to add to the topic itself, but I do have a little formatting hint for the config files you shared :slight_smile:
There are some guidelines to help you make your posts all fancy and nicely structured!

Have a nice day!
Feu

You can follow my comments in this thread.

Hallo.
I don’t see any error on icnga2.log about Influxdb on Maxdb

I don’t know what could I check…