Skip to content

Instantly share code, notes, and snippets.

@s1monw
Created July 13, 2017 19:50
Show Gist options
  • Save s1monw/d2beff8a91e082819486958a15040d11 to your computer and use it in GitHub Desktop.
Save s1monw/d2beff8a91e082819486958a15040d11 to your computer and use it in GitHub Desktop.
get all indices that have a doc older than 3 days
GET /logs-*/_search
{
"size" : 0,
"terminate_after" : 1,
"query" : {
"range: {
"timestamp" : {
"lt" : "now-3d"
}
}
}
"aggs": {
"indices": {
"terms": {
"field": "_index"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment