Hello,
Im setting up ELK within Docker and so far its been quite confusing. However, I now have it all up but Kibana has no data in discover. If I do: http://IP/_cat/indices I can see data.
green open .kibana 1 1 2 0 19.1kb 9.5kb
green open winlogbeat-2016.10.13 5 1 200 0 589.9kb 326.4kb
This is a simple winlogbeat log from locking my pc to trigger an event.
http://IP/_cluster/health?pretty shows:
{
"cluster_name" : "elasticsearch",
"status" : "green",
"timed_out" : false,
"number_of_nodes" : 11,
"number_of_data_nodes" : 11,
"active_primary_shards" : 6,
"active_shards" : 12,
"relocating_shards" : 0,
"initializing_shards" : 0,
"unassigned_shards" : 0,
"delayed_unassigned_shards" : 0,
"number_of_pending_tasks" : 0,
"number_of_in_flight_fetch" : 0,
"task_max_waiting_in_queue_millis" : 0,
"active_shards_percent_as_number" : 100.0
}
The above doesnt say that there are any indices but /cat/indices does? It seems like Kibana isnt communicating properly.
The docker image I used was https://hub.docker.com//kibana/.
All status' are green too, so I'm a little stuck.
Any advice would be appreciated!
Thanks.