Hi,
bellow query runs fine in older version of kibana 7.10.1, however same query does not work in 8.1.3,
can any one please tell me what i need to change to make it work ?
Thanks for the help
GET _search
{
"query": {
"bool": {
"must": [
{
"match": {
"log.file.path": "/root/wildfly-11.0.0.Final/standalone/log/CONCOX.log"
}
},{ "term": { "YUMA-GPS-LOG.COMMAND": { "value": "HEARTBEAT" } } }, { "term": { "YUMA-GPS-LOG.IMEI": { "value": "0353701093130496" } } } ], "filter": { "range": { "@timestamp": { "gte": "now-1440m" } } } }
}
}