0
点赞
收藏
分享

微信扫一扫

Kibana之基本使用

罗蓁蓁 2022-05-30 阅读 194

Kibana之基本使用_数据

  介绍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
}

 


举报

相关推荐

0 条评论