Skip to content

Instantly share code, notes, and snippets.

@andremilk
Created August 18, 2016 23:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andremilk/1869374ed44a1ec60cbffaecd2b7e529 to your computer and use it in GitHub Desktop.
Save andremilk/1869374ed44a1ec60cbffaecd2b7e529 to your computer and use it in GitHub Desktop.
{
"size": 0,
"aggs": {
"users": {
"terms": {
"field": "user",
"size": 100
},
"aggs": {
"unique_date": {
"terms": {
"field": "@timestamp",
"size": 1,
"order": {
"_term": "asc"
}
},
"aggs": {
"earliest_show": {
"date_histogram": {
"field": "@timestamp",
"interval": "day"
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment