GET filebeat-*/_search
{
"query": {
"bool": {
"must": [
{
"query_string": {
"analyze_wildcard": true,
"query": "message:>1000,
"fuzzy_max_expansions": 50
}
},
{
"range": {
"@timestamp": {
"gte": "now-5m",
"lte": "now",
"format": "epoch_millis"
}
}
}
]
}
}
}
I want bigger than 1000,but reslut 500 is out too.