Notes

Some random notes about several topics

This project is maintained by jgbarah

My life with Kibana & ElasticSearch

Building a filter for a Kibana4 dashboard

Wnen the field to filter is already in some of the visualizations of the dashboard, that’s rather easy: just click on the corresponding value in any of such visualizations.

But when the field is not in any visualization, other tricks may be used. For example:

Listing indexes, aliases

Get all indexes and all aliases in ElasticSearch:

$ curl -XGET http://localhost:9200/_cat/indices?v
$ curl -XGET http://localhost:9200/_cat/aliases?v

Interesting documents to read:

https://www.elastic.co/blog/performance-considerations-elasticsearch-indexing. This document is from 2015, but still partially relevant. Have a look too at the update for ElasticSearch 2.x, from Nov 2015.