7,540
edits
Changes
→Kibana
==Kibana==
https://www.elastic.co/products/kibana<br>
https://www.elastic.co/guide/en/kibana/current/docker.html<br>
Kibana is an analytics and visualization platform with intuitive interface sitting on top of ElasticSearch.
<pre>
docker service create --name kibana \
--network elk \
-e ELASTICSEARCH_URL=http://elasticsearch:9200 \
--reserve-memory 50m \
--label com.df.notify=true \
--label com.df.distribute=true \
--label com.df.servicePath=/app/kibana,/bundles,/elasticsearch \
--label com.df.port=5601 \
docker.elastic.co/kibana/kibana:6.4.0
version: '2'
services:
kibana:
image: docker.elastic.co/kibana/kibana:6.4.0
environment:
SERVER_NAME: kibana.example.org
ELASTICSEARCH_URL: http://elasticsearch.example.org
docker run --name kibana docker.elastic.co/kibana/kibana:6.4.0
</pre>
<br>