简体   繁体   English

如何按降序对kibana索引进行排序?

[英]How to sort kibana indices by descending size?

I tried this first: GET _cat/indices which gave me all of my indices.我首先尝试了这个: GET _cat/indices它给了我所有的索引。

I added GET _cat/indices?v to get the column names so I would be able to sort by column name like this GET _cat/indices?v&s=store.size我添加了GET _cat/indices?v来获取列名,这样我就可以像这样按列名排序GET _cat/indices?v&s=store.size

Now, I just want to swap the sort order.现在,我只想交换排序顺序。

ElasticSearch guide had no information regarding this. ElasticSearch 指南没有关于此的信息。

You can use the suffix :desc like this to get there:您可以像这样使用后缀:desc来到达那里:

http://localhost:9200/_cat/indices/?s=store.size:desc

health status index                    uuid                   pri rep docs.count docs.deleted store.size pri.store.size
yellow open   tmdb                     DVLEul7bT4yGyiq34h4nCQ   1   1      27760            0    119.8mb        119.8mb
green  open   .kibana_2                6WJ3UFpOSj2O8zi-iLuw6w   1   0         10            0     35.3kb         35.3kb
green  open   .kibana_task_manager_1   WSwYXmMOSpyQOQ8ZIRniwg   1   0          2            0     31.6kb         31.6kb
green  open   .tasks                   _SsI5VWNSwO5Yfps3K12Qg   1   0          1            0      6.3kb          6.3kb
green  open   .kibana_1                MukHGTHfTkKS1HcYodfNqA   1   0          1            0        4kb            4kb
yellow open   my_index                 7FgIWDJOSQesKbJI-HKRoA   1   1          1            0      3.8kb          3.8kb
green  open   .ltrstore                -Xh6WnJYSsWIoPGP8fhgGw   1   0          0            0       283b           283b
green  open   .apm-agent-configuration 6FUF8T5oTDGcLBqcU7ymJg   1   0          0            0       283b           283b

This ability is mildly-buried/described-briefly in this section of the docs.在文档的这一部分中,这种能力被温和地隐藏/描述了。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM