Elasticsearch bucket script aggregation in Kibana

1.5k Views Asked by At

I am trying to create the visualization in Kibana, to show the number of orders whose average api time is less than 60 Sec. I am able to write the Elasticsearch query with bucket script aggregation.

ES index documents:

order_id    time    api
1           50.0    /login
1           43.1    /XXXXX
1           41.5    /XXXXX
1           48.7    /XXXXX
2           31.2    /XXXXX  
2           54.6    /XXXXX  
3           84.0    /XXXXX  
3           41.0    /XXXXX  
3           109.32  /XXXXX  

Elasticsearch query to find the count of orders whose average api times are less than 60 seconds.

GET my-index-0000001/_search
{
  "size": 0, 
  "aggs": {
    "average_by_id": {
      "terms": {
        "field": "order_id.keyword",
        "size": 1000
      },
      "aggs": {
        "avg_api_time": {
          "avg": {
            "field": "time"
          }
        },
        "order_bucket_filter": {
          "bucket_selector": {
            "buckets_path": {
              "avgApiTime": "avg_api_time"
            },
            "script": "params.avgApiTime < 60"
          }
        }
      }
    },
    "mybucketcount":{
      "stats_bucket": {
        "buckets_path":"average_by_id._count"
      }
    }
  }
}

Please help me how the visualization ( Metric) can be created showing the count of orders in Kibana. Thanks!

0

There are 0 best solutions below