Hello!
I was trying to make a simple request to elasticsearch.
But what i get is the data with nonzero measurements.FailurePorbability.
I can’t imagine why might it happen.
This field “measurements” has type keyword(). In the query inspector I see the following
{"query_string":{"analyze_wildcard":true,"query":"id_: ....(some id_)... AND measurements.FailureProbability: 0"}}]}}
In the JSON file i can see
{
"config": {
"filterable": true
},
"name": "measurements",
"type": "other",
"values": [
[
{
"FailureProbability": 0.00014286
}
]
],
"state": {
"displayName": "measurements"
}
},
The id_ does not matter. There is only one result with this particular id_. If i delete condition FailurePorbability:0 i will get exactly the same results. If i try FailurePorbability: 0.00014286 it does not find anything.
I am using Grafana v8.3.2 on Ubuntu.
Does anyone one why can it work in this strange way and how to handle it?