ElasticSearch查询指定时间内出现的次数/2秒内出现的次数

  1. 查询指定时间内出现的次数
json 复制代码
POST process-log/_search
{
    "size": 0,
    "query": {
        "bool": {
            "filter": [
                {
                    "range": {
                        "requestTime": {
                            "from": 1722470400000,
                            "to": 1722556800000
                        }
                    }
                }
            ]
        }
    },
    "aggs": {
        "server_request": {
            "terms": {
                "script": {
                    "source": "if (doc['serverName.keyword'].size() > 0 && doc['requestUri.keyword'].size() > 0) { return doc['serverName.keyword'].value + ' ' + doc['requestUri.keyword'].value; } else { return 'N/A'; }",
                    "lang": "painless"
                },
                "size": 10,
                "order": {
                    "_count": "desc"
                }
            }
        }
    }
}
  1. Elasticsearch 插叙2秒内出现的次数
java 复制代码
POST process-log/_search
{
  "size": 0,
  "query": {
    "bool": {
      "filter": {
        "range": {
          "requestTime": {
            "from": 1721692800000,
            "to": 1721952000000
          }
        }
      }
    }
  },
  "aggs": {
    "uri_over_time": {
      "composite": {
        "size": 100, 
        "sources": [
          {
            "requestTime": {
              "date_histogram": {
                "field": "requestTime",
                "fixed_interval": "2s"
              }
            }
          },
          {
            "requestUri": {
              "terms": {
                "field": "requestUri.keyword"
              }
            }
          },
          {
            "serverName": {
              "terms": {
                "field": "serverName.keyword"
              }
            }
          }
        ]
      }
    }
  }
}
相关推荐
武子康1 小时前
大数据-169 Elasticsearch 入门到可用:索引/文档 CRUD 与搜索最小示例
大数据·后端·elasticsearch
v***91301 小时前
PostgreSQL 中进行数据导入和导出
大数据·数据库·postgresql
千里念行客2403 小时前
国产射频芯片“小巨人”昂瑞微今日招股 拟于12月5日进行申购
大数据·前端·人工智能·科技
一水鉴天3 小时前
整体设计 定稿 之15 chat分类的专题讨论(codebuddy)
大数据·分类·数据挖掘
7***u21614 小时前
显卡(Graphics Processing Unit,GPU)架构详细解读
大数据·网络·架构
star_111217 小时前
Jenkins部署后端springboot微服务项目
spring boot·微服务·jenkins
Qzkj66617 小时前
从规则到智能:企业数据分类分级的先进实践与自动化转型
大数据·人工智能·自动化
乐韵天城18 小时前
SpringBoot3.x下如何使用es进行数据查询
elasticsearch
q***474319 小时前
PostgreSQL 中进行数据导入和导出
大数据·数据库·postgresql
寰宇视讯19 小时前
奇兵到家九周年再进阶,获36氪“WISE2025商业之王 年度最具商业潜力企业”
大数据