mad_min
(Sukrit Dasgupta)
February 26, 2016, 7:21pm
1
Hi team,
How can one create mappings for numbers such that large numbers are represented as K (for 1000), M(Million) etc?
How does one create custom mappings? (Such as bit rate: bps, or other ways of representation)
I have a feeling this needs to be done at ES. Any examples? Can this be done after the index is created?
Thanks in advance
warkolm
(Mark Walkom)
February 26, 2016, 7:28pm
2
Can be done with field formatters - https://www.elastic.co/guide/en/kibana/current/managing-fields.html
Maybe with the same thing, depends what you want to do really.
You could do it in ES as well, but you'd need to reindex existing data.
mad_min
(Sukrit Dasgupta)
February 29, 2016, 9:42pm
3
Perfect!! This helped a lot. Also, I used the 'docs' link in the mapping section of Kibana to understand what all can be achieved.
Thanks @warkolm