es常用接口请求方式

集群状态查询

可以看到整个集群的索引数、分片数、文档数、内存使用等等信息。

http://localhost:9200/_cluster/stats
http://localhost:9200/_cat/nodes
http://localhost:9200/_cat/indices
http://localhost:9200/_cluster/state
http://localhost:9200/_cat/aliases

GET _nodes/_all/stats/fs?pretty=true

健康状况

http://localhost:9200/_cat/health?v

空间使用

查询每个节点的空间使用情况,预估数据大小

http://localhost:9200/_cat/allocation?v

分片分布

http://localhost:9200/_cat/shards

索引状态

可以看到索引的数据条数、磁盘大小、分片个数【可以使用别名】。

http://localhost:9200/索引名/_stats

集群配置信息

http://localhost:9200/_cluster/settings?pretty

 

开发工具执行(kibana开发工具)

POST /你的索引/_delete_by_query
{
  "query": {
    "range": {
      "@timestamp": {
        "lt": "now-15d",
        "format": "epoch_millis"
      }
    }
  }
}

清空指定索引里面的所有数据

POST /your_index_name/_delete_by_query
{
  "query": {
    "match_all": {}
  }
}

 

posted @ 2024-06-17 16:23  智杰  阅读(26)  评论(0编辑  收藏  举报
marquee
当你的才华还撑不起你的野心的时候,你就应该静下心来学习。当你的能力还驾驭不了你的目标的时候,你就应该沉下心来历练。问问自己,想要怎样的人生