GET log*/_search?size=10000
{
"query": {
"bool": {
"must": [
{
"match": {
"status": "bounced"
}
},
{
"range": {
"timestamp": {
"format": "yyyy-MM-dd HH:mm:ss",
"gte": "2018-05-23 13:20:02"
}
}
}
]
}
}
}