Hello,
I am using ELK ver 5.0 on a server and filebeat ver 5.0 on my client server, and want to use metricbeat ver 5.0. So I've installed and configured it accordingly. When i run status on metricbeat, it shows that it is running and the metricbeat logs shows that it is publishing events. However, it is not displaying anything on kibana under the metricbeat-* index. When I did curl -XGET 'http://localhost:9200/metricbeat-*/_search?pretty'
I got 0 hits. Any idea where I'm going wrong?
This is my Metricbeat config
metricbeat.modules:
- module: system
metricsets:
- cpu
- load
- filesystem
- memory
- network
- process
enabled: true
period: 10s
processes: ['.*']
output.logstash:
hosts: []
index: metricbeat
This is my logstash-beats-input
input {
beats {
port => 5044
}
}
Thank you for your help!