hi all! Maybe a stupid question, but I couldn't figure it out myself. inaccurate search in Kibana through the search bar in Discovery does not return anything ... if you search by fields, then the pots query works
I got a search query from Inspect, checked it through DevTools - there are no matches (although there should be a lot of them)
here is part of that search query:
“query": {
bool: {
"must": [],
"filter": [
{
range: {
"@timestamp": {
"format": "strict_date_optional_time",
"gte": "2022-09-02T15:06:52.521Z",
lte: "2022-09-02T15:21:52.521Z"
}
}
},
{
"match_phrase": {
"agent": "mozilla"
}
}
],
"should": [],
"must_not": []
}
},
I have something with indexing? Or is it due to the lack of a data stream?




