kibana常用聚合查询DSL语句记录
-------- GET winlogbeat-2017.11.*/_search { "query": { "bool": { "must": [ { "term": { "Appname": { "value": "FTP" } } }, { "range": { "@timestamp": { "gte": "2017-11-26T00:00:00.000+08:00", "lte": "2017-11-26T23:59:59.000+08:00" } } } ], "should": [ { "term": { "action": { "value": "LIST" } } }, { "term": { "action": { "value": "RETR" } } }, { "term": { "action": { "value": "STOR" } } }, { "term": { "action": { "value": "DELE" } } } ], "minimum_number_should_match": 1, "must_not": [ { "term": { "filedir": { "value": "/%{[filesub][1]}" } } },{ "term": { "filedir": { "value": "-" } } },{ "match": { "message": ".ok" } } ] } } } GET winlogbeat-2017.11.*/_search { "query": { "bool": { "must": [ { "term": { "Appname": { "value": "FTP" } } }, { "terms": { "action": [ "RETR" ] } }, { "range": { "@timestamp": { "gte": "2017-11-26T00:00:00.000+08:00", "lte": "2017-11-26T23:59:59.000+08:00" } } } ], "must_not": [ { "term": { "filedir": { "value": "/%{[filesub][1]}" } } },{ "term": { "filedir": { "value": "-" } } },{ "match": { "message": ".ok" } } ] } } } ------ GET winlogbeat-2017.11.25,winlogbeat-2017.11.26/_search { "query": { "bool": { "must": [ { "term": { "Appname": { "value": "FTP" } } }, { "terms": { "action": [ "LIST", "DELE", "RETR", "STOR" ] } }, { "range": { "@timestamp": { "gte": "2017-11-26T00:00:00.000+08:00", "lte": "2017-11-26T23:59:59.000+08:00" } } } ], "must_not": [ { "term": { "filedir": { "value": "/%{[filesub][1]}" } } },{ "term": { "filedir": { "value": "-" } } },{ "match": { "message": ".ok" } } ] } }, "size": 0, "aggs": { "ff": { "terms": { "field": "filedir", "size": 100 } } } } ------ GET winlogbeat-*/_search { "size": 0, "query" : { "bool" : { "must" : [ { "range" : { "@timestamp" : { "from" : 1511654400000, "to" : 1511740800000, "include_lower" : true, "include_upper" : true, "boost" : 1.0 } } }, { "term" : { "Appname" : { "value" : "FTP", "boost" : 1.0 } } }, { "terms" : { "action" : [ "LIST", "STOR", "DELE", "RETR" ], "boost" : 1.0 } } ], "must_not" : [ { "match" : { "message" : { "query" : ".ok", "operator" : "OR", "prefix_length" : 0, "max_expansions" : 50, "fuzzy_transpositions" : true, "lenient" : false, "zero_terms_query" : "NONE", "boost" : 1.0 } } }, { "term" : { "filedir" : { "value" : "-", "boost" : 1.0 } } }, { "match" : { "filedir" : { "query" : "/%{[filesub][1]}", "operator" : "OR", "prefix_length" : 0, "max_expansions" : 50, "fuzzy_transpositions" : true, "lenient" : false, "zero_terms_query" : "NONE", "boost" : 1.0 } } } ], "disable_coord" : false, "adjust_pure_negative" : true, "boost" : 1.0 } }, "aggregations" : { "filedir_count" : { "terms" : { "field" : "filedir", "size" : 10, "shard_size" : -1, "min_doc_count" : 1, "shard_min_doc_count" : 0, "show_term_doc_count_error" : false, "order" : [ { "_count" : "desc" }, { "_term" : "asc" } ] } } }, "ext" : { } } --------- RPT_C001_20171125.txt GET winlogbeat-2017.11.25,winlogbeat-2017.11.26/_search { "size": 0, "query" : { "bool" : { "must" : [ { "range" : { "@timestamp" : { "from" : "2017-11-26T00:00:00.000+08:00", "to" : "2017-11-26T23:59:59.000+08:00", "include_lower" : true, "include_upper" : true, "boost" : 1.0 } } }, { "term" : { "Appname" : { "value" : "FTP", "boost" : 1.0 } } }, { "terms" : { "action" : [ "LIST", "STOR", "DELE", "RETR" ], "boost" : 1.0 } } ], "must_not" : [ { "match" : { "message" : { "query" : ".ok", "operator" : "OR", "prefix_length" : 0, "max_expansions" : 50, "fuzzy_transpositions" : true, "lenient" : false, "zero_terms_query" : "NONE", "boost" : 1.0 } } }, { "term" : { "filedir" : { "value" : "-", "boost" : 1.0 } } }, { "match" : { "filedir" : { "query" : "/%{[filesub][1]}", "operator" : "OR", "prefix_length" : 0, "max_expansions" : 50, "fuzzy_transpositions" : true, "lenient" : false, "zero_terms_query" : "NONE", "boost" : 1.0 } } } ], "disable_coord" : false, "adjust_pure_negative" : true, "boost" : 1.0 } }, "aggregations" : { "aggTop" : { "terms" : { "field" : "filedir", "size" : 50, "shard_size" : -1, "min_doc_count" : 1, "shard_min_doc_count" : 0, "show_term_doc_count_error" : false, "order" : [ { "_count" : "desc" }, { "_term" : "asc" } ] } } }, "ext" : { } } GET winlogbeat-2017.11.25,winlogbeat-2017.11.26/_search { "query": { "bool": { "must": [ { "term": { "Appname": { "value": "FTP" } } }, { "terms": { "action": [ "LIST", "DELE", "RETR", "STOR" ] } }, { "range": { "@timestamp": { "gte": "2017-11-26T00:00:00.000+08:00", "lte": "2017-11-26T23:59:59.000+08:00" } } } ], "must_not": [ { "term": { "filedir": { "value": "/%{[filesub][1]}" } } },{ "term": { "filedir": { "value": "-" } } },{ "match": { "message": ".ok" } } ] } }, "size": 0, "aggs": { "ff": { "terms": { "field": "filedir", "size": 100 } } } } GET winlogbeat-2017.11.*/_search { "query": { "bool": { "must": [ { "term": { "Appname": { "value": "FTP" } } }, { "term": { "filedir": { "value": "/SJPT" } } }, { "terms": { "action": [ "LIST", "DELE", "RETR", "STOR" ] } }, { "range": { "@timestamp": { "gte": "2017-11-26T00:00:00.000+08:00", "lte": "2017-11-26T23:59:59.000+08:00" } } } ], "must_not": [ { "term": { "filedir": { "value": "/%{[filesub][1]}" } } },{ "term": { "filedir": { "value": "-" } } },{ "match": { "message": ".ok" } } ] } } } ------ GET winlogbeat-2017.11.*/_search { "size": 0, "query" : { "bool" : { "must" : [ { "range" : { "@timestamp" : { "from" : "2017-11-26T00:00:00.000+08:00", "to" : "2017-11-26T23:59:59.000+08:00", "include_lower" : true, "include_upper" : true, "boost" : 1.0 } } }, { "term" : { "Appname" : { "value" : "FTP", "boost" : 1.0 } } }, { "term" : { "action" : { "value" : "LIST", "boost" : 1.0 } } } ], "must_not" : [ { "match" : { "message" : { "query" : ".ok", "operator" : "OR", "prefix_length" : 0, "max_expansions" : 50, "fuzzy_transpositions" : true, "lenient" : false, "zero_terms_query" : "NONE", "boost" : 1.0 } } }, { "term" : { "filedir" : { "value" : "-", "boost" : 1.0 } } }, { "match" : { "filedir" : { "query" : "/%{[filesub][1]}", "operator" : "OR", "prefix_length" : 0, "max_expansions" : 50, "fuzzy_transpositions" : true, "lenient" : false, "zero_terms_query" : "NONE", "boost" : 1.0 } } } ], "disable_coord" : false, "adjust_pure_negative" : true, "boost" : 1.0 } }, "aggregations" : { "aggTop" : { "terms" : { "field" : "filedir", "size" : 50, "shard_size" : -1, "min_doc_count" : 1, "shard_min_doc_count" : 0, "show_term_doc_count_error" : false, "order" : [ { "_count" : "desc" }, { "_term" : "asc" } ] } }, "aggList" : { "terms" : { "field" : "account", "size" : 50, "shard_size" : -1, "min_doc_count" : 1, "shard_min_doc_count" : 0, "show_term_doc_count_error" : false, "order" : [ { "_count" : "desc" }, { "_term" : "asc" } ] } } }, "ext" : { } } GET winlogbeat-2017.11.*/_search { "query": { "bool": { "must": [ { "term": { "Appname": { "value": "FTP" } } }, { "term": { "account": { "value": "ICCCUAT\\uatjc06400" } } }, { "terms": { "action": [ "LIST" ] } }, { "range": { "@timestamp": { "gte": "2017-11-26T00:00:00.000+08:00", "lte": "2017-11-26T23:59:59.000+08:00" } } } ], "must_not": [ { "term": { "filedir": { "value": "/%{[filesub][1]}" } } },{ "term": { "filedir": { "value": "-" } } },{ "match": { "message": ".ok" } } ] } } }
kibana常用聚合查询DSL语句记录的更多相关文章
- ElasticSearch 常用的查询过滤语句
query 和 filter 的区别请看: http://www.cnblogs.com/ghj1976/p/5292740.html Filter DSL term 过滤 term主要用于精确匹配 ...
- [转] ElasticSearch 常用的查询过滤语句
备忘remark https://www.cnblogs.com/ghj1976/p/5293250.html query 和 filter 的区别请看: http://www.cnblogs.co ...
- 软件测试最常用的 SQL 命令 | 掌握基本查询、条件查询、聚合查询
1.DML核心CRUD增删改查 缩写全称和对应 SQL: * DML 数据操纵语言:Data Manipulation Language * Create 增加:insert * Retrieve 查 ...
- Mongoose中的关联表查询 && 聚合查询
注:阅读此篇文章,需要有一定的Mongo基础.基本的不会再重复介绍. 例: 有两张表,一张是博客列表,另外一张是博客的标签表.现在我们要做两张表的插入和关联查询. 创建两张表的Schema 主表bl ...
- {django模型层(二)多表操作}一 创建模型 二 添加表记录 三 基于对象的跨表查询 四 基于双下划线的跨表查询 五 聚合查询、分组查询、F查询和Q查询
Django基础五之django模型层(二)多表操作 本节目录 一 创建模型 二 添加表记录 三 基于对象的跨表查询 四 基于双下划线的跨表查询 五 聚合查询.分组查询.F查询和Q查询 六 xxx 七 ...
- 数据库基本查询语句(SQL常用增删改查语句 简单复习 mark)
SQL常用增删改查语句 1增 1.1[插入单行]insert [into] <表名> (列名) values (列值)例:insert into Strdents (姓名,性别,出生日期) ...
- orm分组,聚合查询,执行原生sql语句
from django.db.models import Avg from app01 import models annotate:(聚合查询) ret=models.Article.objects ...
- 微擎查询SQL语句常用
pdo_fetch:根据SQL语句,查询一条记录 array | boolean pdo_fetch($sql, $params = array()); // :uid 是参数的一个点位符,没有使用引 ...
- [转] 常用SQL查询语句
sunada 的原文地址 常用SQL查询语句 一.简单查询语句 1. 查看表结构 SQL>DESC emp; 2. 查询所有列 SQL>SELECT * FROM emp; 3. 查询指 ...
随机推荐
- Servlet--HttpSessionBindingListener接口,HttpSessionBindingEvent类
HttpSessionBindingListener 接口 定义 public interface HttpSessionBindingListener 这个对象被加入到 HTTP 的 session ...
- Makefile 的使用
第一篇: OBJS = ./persion.o all : persion @echo "version 03" persion : $(OBJS) g++ -o $@ $^ ./ ...
- 【Java SE】如何用Java实现插入排序
摘要:前面三期分别写了三篇简单排序的算法,今天来讲一点稍微难一点的排序算法-----插入排序. 基本思想: 设n个数据已经按照顺序排列好(假定从小排到大). 输入一个数据x,将其放在恰当的位置,使其顺 ...
- ajax请求获取实时数据
<!DOCTYPE html> <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> ...
- 创建分模块的maven项目
折腾了我2天的maven,整理一下,以后做个参考 一.什么是maven项目: Maven是基于项目对象模型(POM),可以通过一小段描述信息来管理项目的构建,报告和文档的软件项目管理工具. Maven ...
- nodejs建立websocket通信
依赖模块 nodejs-websocket 服务端 const ws = require('nodejs-websocket'); console.log('开始建立连接...'); const se ...
- Linux 下编译安装xCache命令速记
注意要先确保/path-to-php/bin/php-config存在下载链接: http://pan.baidu.com/s/1hqh5pDM #解压xcache源代码tar -zvxf xcach ...
- JavaBean命名规范
———————————————————————————————————————————————————————— 属性名/类型 | ...
- 洛谷 P3674 小清新人渣的本愿 [莫队 bitset]
传送门 题意: 给你一个序列a,长度为n,有Q次操作,每次询问一个区间是否可以选出两个数它们的差为x,或者询问一个区间是否可以选出两个数它们的和为x,或者询问一个区间是否可以选出两个数它们的乘积为x ...
- BZOJ 2083: [Poi2010]Intelligence test [vector+二分]
2083: [Poi2010]Intelligence test Time Limit: 10 Sec Memory Limit: 259 MBSubmit: 469 Solved: 227[Su ...