[Metricbeat] Some Visualizations have no data to display in Dashboard

In master of k8s, /etc/metricbeat/modules.d/kubernetes.yml

# Node metrics, from kubelet:
- module: kubernetes
  metricsets:
    - node
    - system
    - pod
    - container
    - volume
  period: 10s
  hosts: ["127.0.0.1:10248"]
  # Enriching parameters:
  # add_metadata: true
  # in_cluster: true
  #labels.dedot: true
  #annotations.dedot: true
  # When used outside the cluster:
  # in_cluster: false
  #host: node_name
  #kube_config: /etc/kubernetes/admin.conf

# State metrics from kube-state-metrics service:
- module: kubernetes
  metricsets:
    - state_node
    - state_deployment
    - state_replicaset
    - state_statefulset
    - state_pod
    - state_container
  period: 10s
  hosts: ["10.108.106.145:8080"]
  add_metadata: true
#  in_cluster: true
  enabled: true

# Kubernetes events
- module: kubernetes
  enabled: false
  metricsets:
    - event

But in [Dashboard]/[Metricbeat Kubernetes] Overview ECS, the last 4 visualizations has no data.
How to show data in these visualizations? Thanks.

Hi! For the dashboard, it requires to have certain kubernetes metrics sent to Elasticsearch before it can be displayed in these visualizations. For example, for Network out by node, It requires kuberenetes.pod.network.tx.bytes. When you click Discover in Kibana, do you see this metric being reported?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.