Hi,
I'm using Metricbeat 5.1.1 ==> Elastic Search 5.1.1 ==> Kibana 5.1.1, I used import_dashboards script to import metricbeat dashboards in Kibana.
All components are installed on the same machine (localhost).
When I request Elastic Search with http://localhost:9200/metricbeat-*/_search?pretty , I get the following response:
{"took":9,"timed_out":false,"_shards":{"total":10,"successful":10,"failed":0},"hits":{"total":4808372,"max_score":1.0,"hits":[{"_index":"metricbeat-2016.12.19","_type":"metricsets","_id":"AVkXv8Cafy-kld0Gs4-S","_score":1.0,"_source":{"@timestamp":"2016-12-19T15:42:29.606Z","system":{"process":{"memory":{"rss":{"pct":0.0,"bytes":0},"size":0,"share":0},"pgid":0,"name":"kfd_process_wq","cpu":{"start_time":"2016-12-19T10:12:36.000Z","total":{"pct":0.0}},"pid":584,"state":"sleeping","fd":{"limit":{"hard":4096,"soft":1024},"open":0},"username":"root","ppid":2}},"beat":{"hostname":"iota","name":"iota","version":"5.1.1"},"@version":"1","host":"iota","metricset":{"rtt":146217,"module":"system","name":"process"},"type":"metricsets","tags":["beats_input_raw_event"]}}....
It sounds OK for me.
Although the default index used in kibana is metricbeat-, in discover tab, I can read "No results found". When I check the request done by kibana (http://localhost:9200/metricbeat-/mapping/field/*?=1482248436057&ignore_unavailable=false&allow_no_indices=false&include_defaults=true), I get an error "index not found":
{"error":{"root_cause":[{"type":"index_not_found_exception","reason":"no such index","index_uuid":"_na_","index":"metricbeat-*"}],"type":"index_not_found_exception","reason":"no such index","index_uuid":"_na_","index":"metricbeat-*"},"status":404}
I checked that I have only one instance of elastic search.
What could I miss?
Thank you,
Damien