介绍kibana经常使用的功能

 

查询:

# 查询内容不为空的数据,并返回总数量
GET mp_article/_search?rest_total_hits_as_int=true
{
  "query": {
    "bool": {
      "must":[
         {
           "wildcard": {"content": "*"}
         }
        ]
    } 
  }
}

 

设置:

GET mp_account/_settings


GET mp_article/_settings



PUT mp_article/_settings
{
  "max_result_window": 100000
}

 

相关文章:

  • 2021-08-10
  • 2021-08-27
  • 2021-11-16
  • 2022-01-01
  • 2021-09-09
猜你喜欢
  • 2021-09-03
  • 2021-11-25
  • 2022-12-23
  • 2021-09-05
  • 2022-01-13
  • 2022-12-23
相关资源
相似解决方案