I have loaded metricbeat dashboards in kibana.In [Metricbeat Zookeeper] Overview dashboard, Packets received / sent section does not display any data. I am unable to figure out why it is happening. All other visualisations are displaying data as expected.
My configuration for zookeeper module in metricbeat.yml is given below:
- module: zookeeper
period: '${PERIOD:60s}'
hosts: '${ZK_HOSTS:zookeeper:2181}'
metricsets:
- "mntr"
- "server"
enabled: '${ZK_ENABLED:true}'
processors:
- drop_fields: # yamllint disable-line
fields: ["zookeeper.server.version_date"]
In Discover tab, when I view the records of metricbeat index, I can clearly see the entries for zookeeper that contain zookeeper.mntr.packets.received and zookeeper.mntr.packets.sent data but my visualisation Packets received / sent in dashboard is not displaying it. Can anyone tell me how can I fix this issue ?