I am developing a kibana drop down filter plugin and I want to get the list of all fields in particular index in client side to list them in drop down menu. How to get them?
Thanks.
I am developing a kibana drop down filter plugin and I want to get the list of all fields in particular index in client side to list them in drop down menu. How to get them?
Thanks.
Option 1: you need to send the next query to elasticsearch:
GET /.kibana/index-pattern/_search
There you will find the definition of all index pattern
Option 2: you need to send the next query to elasticsearch:
GET /myIndex/_mapping