Missing fields when viewing dashboard in Kibana

Hi running 5.5.1 throughout.

I have metric beat running on mesos dc/os 1.10 using marathon/docker.

I ran the dashboard import scripts.

Everything seems to be loading into Elastic fine, but when I look at the kibana dashboard some of the graphs show errors like: Could not locate that index-pattern-field (id: system.load.norm.1) or Could not locate that index-pattern-field (id: system.fsstat.total_size.used)

Here is my metricbeat.yml config...

metricbeat.modules:

  • module: system
    metricsets:
    • cpu
    • filesystem
    • memory
    • network
    • process
      enabled: true
      period: 10s
      processes: ['.*']
      cpu_ticks: false

output.elasticsearch:
hosts: ["data.elastic.l4lb.thisdcos.directory:9200"]
username: ...
password: ...

Never mind seems to be working fine... I had minor index conflict.

For those who want to know...

I'm running DC/OS 1.10 I also have Filebeat indexing all my marathon/containers into elastic. Because I'm deploying Metricbeat as a container and I named my container metricbeat, it created a metricbeat index, which conflicts with the metricbeat index that Metricbeat tries to create.

So I renamed my metricbeat container to metricbeat-docker and now it has separate index to that of actual Metricbeat index.

This topic was automatically closed after 21 days. New replies are no longer allowed.