Hi, I'm new to ELKstack and I'm trying to get from an Index Lifecycle Policies "logstash-pro" all the indexes that are in it, and also about this to return me the space occupied by each index.
For example, I use the statement:
GET _ilm/policy/logstash-pro
To obtain all the indexes of that sentence, but it doesn't tell me how much space occupies each one of them, for that I have obtained it using:
GET /_cat/indices/logstash-pro-oracle-*?h=index,docs.count,store.size
But it is possible that not all indexes
"logstash-pro-oracle-*" belong to the policy "logstash-pro"-
How can I get all this information in one statement using the kibana dev tools?
Could you help me. Thank you very much.