ES常用聚合查询

GET /user_request_record/_search
{
  "size": 1,
  "query": {
    "match_all": {}
  },
  "aggs": {
    "recordCount":{
      "value_count": {
        "field": "userId"
      }
    },
    "distinctUserId": {
      "cardinality": {
        "field": "userId"
      }
    },
    "groupByUserId": {
      "terms": {
        "field": "userId",
        "size": 100
      },
      "aggs": {
        "countBetween": {
          "bucket_selector": {
            "buckets_path": {
              "view_count": "_count"
            },
            "script": "params.view_count >5000"
          }
        }
      }
    },
    "sumGroupByUserId": {
      "sum_bucket": {
        "buckets_path": "groupByUserId>_count"
      }
    },
     
    "filterByUserId": {
      "filter": {
        "term": {
          "userId": "4"
        }
      },
      "aggs": {
        "filterByMethod": {
          "filters": {
            "filters": {
              "GETmethod": {
                "term": {
                  "method": "GET"
                }
              },
              "POSTmethod": {
                "term": {
                  "method": "POST"
                }
              }
            }
          }
        },
        "groupByMethod": {
          "terms": {
            "field": "method",
            "size": 10
          },
          "aggs": {
            "filterByDate": {
              "filter": {
                "range": {
                  "requestTime": {
                    "gte": "2021-02-22 15:14:05",
                    "lte": "2021-02-22 15:14:05"
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

返回结果大概如下,

{
  "took" : 39,
  "timed_out" : false,
  "_shards" : {
    "total" : 120,
    "successful" : 120,
    "skipped" : 0,
    "failed" : 0
  },
  "hits" : {
    "total" : 59832,
    "max_score" : 0.0,
    "hits" : [ ]
  },
  "aggregations" : {
    "groupByUserId" : {
      "doc_count_error_upper_bound" : 0,
      "sum_other_doc_count" : 0,
      "buckets" : [
        {
          "key" : 4,
          "doc_count" : 17560
        },
        {
          "key" : 15,
          "doc_count" : 9565
        },
        {
          "key" : 5,
          "doc_count" : 8614
        }
      ]
    },
    "filterByUserId" : {
      "meta" : { },
      "doc_count" : 17560,
      "filterByMethod" : {
        "buckets" : {
          "GETmethod" : {
            "doc_count" : 2803
          },
          "POSTmethod" : {
            "doc_count" : 14757
          }
        }
      },
      "groupByMethod" : {
        "meta" : { },
        "doc_count_error_upper_bound" : 0,
        "sum_other_doc_count" : 0,
        "buckets" : [
          {
            "key" : "POST",
            "doc_count" : 14757,
            "filterByDate" : {
              "doc_count" : 0
            }
          },
          {
            "key" : "GET",
            "doc_count" : 2803,
            "filterByDate" : {
              "doc_count" : 1
            }
          }
        ]
      }
    },
    "recordCount" : {
      "value" : 59832
    },
    "distinctUserId" : {
      "value" : 24
    },
    "sumGroupByUserId" : {
      "value" : 35739.0
    }
  }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值