GET filebeat-*/_search
{
"query": {
"bool": {
"must": [
{
"query_string": {
"analyze_wildcard": true,
"query": "message:(Exception)"
}
},
{
"range": {
"@timestamp": {
"gte": "now-1d",
"lte": "now",
"format": "epoch_millis"
}
}
}
]
}
}
}
result
GET filebeat-*/_search
{
"query": {
"bool": {
"must": [
{
"query_string": {
"analyze_wildcard": true,
"query": "message:(ArrayIndexOutOfBoundsException)"
}
},
{
"range": {
"@timestamp": {
"gte": "now-1d",
"lte": "now",
"format": "epoch_millis"
}
}
}
]
}
}
}
why ArrayIndexOutOfBoundsException didn't hits?