Reputation: 519
My DSL query is shown below. For some reason when I run it in Kibana CLI, it tells me:
GET elastic-search-app-log*/_search
{
"size": 42,
"query": {
"range": {
"dateRanges": {
"gte": "2021-05-20T10:15:00",
"lte": "2021-05-18T14:58:00"
}
},
"match": {
"level": "Error"
}
}
}
I checked to see if maybe its the alignment of the braces but they look fine. Is there something causing this message?
Upvotes: 0
Views: 1320