Hi I have the following data:
and when I make a visualization of this info I get nothing:
Many thanks!
This is because it doesnt show me decimal figures
Hi,
Yes you are right, it is more inherent
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}"
Maybe you can help me understand this I will also ask this in ES not only kibana
If ASR is a number data type field, I think your query should use "ASR": 0.9 (without double-quotes around the 0.9). Can you see if that changes your result?
I also just did some searches in Kibana Discover query bar for decimal results and then looked at the query it uses.
When I searched for system.load.norm.15:0.155 (got 12 hits) the query Kibana used was;
"query": {
"bool": {
"must": [
{
"query_string": {
"query": "system.load.norm.15:0.155",
"analyze_wildcard": true
}
},
But I'm not an expert on Elasticsearch querying, and there's often multiple ways to get the results.
© 2020. All Rights Reserved - Elasticsearch
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant logo are trademarks of the Apache Software Foundation in the United States and/or other countries.