Kibana常用语法

Posted baiyuer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Kibana常用语法相关的知识,希望对你有一定的参考价值。

GET brand201811_v2/_search
方法一:查询数据源,及相关url的文章
{
  "query": {
    "bool": {
      "must": [
        {
          "term": {
            "dSource": {
              "value": "news/sogou"
            }
          }
        },
        {
          "term": {
            "url": {
              "value": "http://www.scgdj.com/new/include/news_view.php?NDLzv3qGY.xml="
            }
          }
        }
      ]
    }
  },
  "size": 10,
  "sort": [
    {
      "pDate": {
        "order": "desc"
      }
    }
  ]
}

方法二:查询数据源,包含某个字段的文章 GET brand201812_v2/_search { "query": { "bool": { "must": [ { "term": { "dSource": { "value": "news/pttweb" } } }, { "match_phrase": { "content": "选举" } } ] } }, "size": 10, "sort": [ { "pDate": { "order": "desc" } } ] }

  

以上是关于Kibana常用语法的主要内容,如果未能解决你的问题,请参考以下文章

运维-kibana常用查询使用

MorkDown 常用语法总结

Kibana 搜索语法

Lucene/kibana查询 语法

Kibana 查询语法 --- 2022-04-03

在下面的代码片段中的剩余 ='passthrough' 处的代码中出现语法错误