Hi all,
i want to take metrics using Metricbeat from my hosts specifically per network interface.
I know that System Module delivers network traffic as a sum. That's ok but in some interfaces i want to monitor the traffic - and other network metrics - independently.
From https://www.elastic.co/guide/en/beats/metricbeat/current/metricbeat-metricset-system-network.html i can see that is doable.
Below how i have configured it on metricbeat.yml
metricbeat.modules:
- module: system
metricsets:
- cpu # CPU usage
- load # CPU load averages
- memory # Memory usage
- network # Network IO
# - process # Per process metrics
# - process_summary # Process summary
- uptime # System Uptime
- filesystem # File system usage for each mountpoint
- fsstat # File system summary metrics
enabled: true
period: 10s
processes: ['.*']
interfaces: [bond0]
Some questions:
- How can i check that i get the network metrics per interface?
- How can i visualize it in Kibana?
Thanks for the help