Kibana 5.1.1 is released. It is definitively worth the try.
Docker lets use check technology easily using its docker-compose functionality. Simply starts it with the next following configuration file in order to get a fully functional elastic search 5.1.1 stack.
#COMPOSE ELK5 version: '2' services: ############################## elasticsupervisor: image: snuids/elasticsupervisor:v0.2d container_name: elasticsupervisor links: - esnode1 environment: - ELASTIC_ADDRESS=esnode1:9200 - PYTHONUNBUFFERED=0 restart: always ############################## cerebro: image: snuids/cerebro:v0.4.1 container_name: cerebro ports: - 9000:9000 links: - esnode1 ##################################################################################################### esnode1: image: elasticsearch:5.1.1 environment: - ES_JAVA_OPTS=-Xmx1g -Xms1g ports: - "9201:9200" - "9301:9300" container_name: esnode1 ##################################################################################################### kibana: image: snuids/kibana5withextravisus:v5.1.1 ports: - "5601:5601" environment: - ELASTICSEARCH_URL=http://esnode1:9200 container_name: kibana links: - esnode1
Note that the kibana version included in the compose file has a few additional visualizers:
It also adds the following lines to the kibana.yml (tilemap.options.maxZoom: 18
tilemap.url: http://a.tile.openstreetmap.org/{z}/{x}/{y}.png info:here) in order to use openstreet map as online map provider and change the maximum zoom level to 18.
And don’t miss the new tag cloud visualizer from elastic.
Leave a Reply