Created
October 23, 2014 18:48
-
-
Save fedesilva/948dc4c8bf9776d66c89 to your computer and use it in GitHub Desktop.
usuarios por fecha
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
POST /logstash-batanga-*/_search?search_type=count | |
{ | |
"query": { | |
"filtered": { | |
"query": { | |
"match_all": {} | |
}, | |
"filter": { | |
"and": { | |
"filters": [ | |
{ | |
"exists": { | |
"field": "btng.elapsedtime" | |
} | |
}, | |
{ | |
"exists": { | |
"field": "btng.listenerdjid" | |
} | |
}, | |
{ | |
"range": { | |
"@timestamp": { | |
"gte": "2014-10-18", | |
"lte": "2014-10-23" | |
} | |
} | |
} | |
] | |
} | |
} | |
} | |
}, | |
"aggs": { | |
"users_by_day": { | |
"date_histogram": { | |
"field": "@timestamp", | |
"interval": "1d" | |
}, | |
"aggs": { | |
"user_count_by_day": { | |
"cardinality": { | |
"field": "btng.listenerdjid" | |
} | |
}, | |
"users_by_hours": { | |
"date_histogram": { | |
"field": "@timestamp", | |
"interval": "1h" | |
}, | |
"aggs": { | |
"user_count": { | |
"cardinality": { | |
"field": "btng.listenerdjid" | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment