es监控常用查询

GET _search

{

"query": {

"match_all": {}

}

}

GET /_cluster/allocation/explain?pretty

{

"index": ".security",

"shard": 0,

"primary": false

}

GET /_cluster/allocation/explain?pretty

{

}

PUT _cluster/settings

{

"transient" : {

"cluster.routing.allocation.exclude._ip":""

}

}

GET /_cluster/settings

GET /_nodes?pretty

GET /_cat/nodes?v

GET /_cat/allocation?v

GET /_cat/shards

GET /_alias/*ly*

相关推荐
YuMiao1 小时前
gstatic连接问题导致Google Gemini / Studio页面乱码或图标缺失问题
服务器·网络协议
SimonKing1 小时前
OpenCode AI辅助编程,不一样的编程思路,不写一行代码
java·后端·程序员
FastBean1 小时前
Jackson View Extension Spring Boot Starter
java·后端
Seven972 小时前
剑指offer-79、最⻓不含重复字符的⼦字符串
java
皮皮林55112 小时前
Java性能调优黑科技!1行代码实现毫秒级耗时追踪,效率飙升300%!
java
冰_河12 小时前
QPS从300到3100:我靠一行代码让接口性能暴涨10倍,系统性能原地起飞!!
java·后端·性能优化
桦说编程15 小时前
从 ForkJoinPool 的 Compensate 看并发框架的线程补偿思想
java·后端·源码阅读
躺平大鹅17 小时前
Java面向对象入门(类与对象,新手秒懂)
java
初次攀爬者17 小时前
RocketMQ在Spring Boot上的基础使用
java·spring boot·rocketmq