Hi,
I am having a problem getting decimal numbers in the ES
as shown below:

I have an "ASR" that is 0.9, but when I use the following query:
GET filebeat-*/log/_search
{
"query": {
"bool":{
"must": [
{ "match": { "ASR": "0.9"}}
]
}
}
}
I get:
> {
> "took": 1,
> "timed_out": false,
> "_shards": {
> "total": 2,
> "successful": 2,
> "failed": 0
> },
> "hits": {
> "total": 0,
> "max_score": null,
> "hits": []
> }
> }
The log its self is as following:
"{"eventTimestamp":1505760179999,"asrFrom":1505759776499,"ASR":0.9}"
Help will be great I am gravely under pressure on this subject.
