Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Akintola/93452a6ee8ecb99f67fa6fc43b211c37 to your computer and use it in GitHub Desktop.
Save Akintola/93452a6ee8ecb99f67fa6fc43b211c37 to your computer and use it in GitHub Desktop.
curl -XGET -H "Content-Type: application/json" "127.0.0.1:9200/calls_details_2021/_search?size=0&pretty" -d '
{
"aggs": {
"calls_per_caller_name": {
"terms": {
"field": "caller_name"
},
"aggs": {
"duration_sum": {
"sum": {
"field": "duration"
}
}
}
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment