Open ivancea opened 1 month ago
-0.0 values shown by Kibana are shown as 0.0 instead, which gives false information.
Can be reproduced with:
PUT test POST test/_mapping { "properties": { "double": { "type": "double" } } } POST /test/_doc { "double": -0.0 } POST /test/_doc { "double": -0.0 } # Agg GET /test/_search { "size": 0, "aggs": { "terms": { "terms": { "field": "double" } } } } # Search GET /test/_search { "query": { "term": { "double": { "value": -0.0 } } } }
ES explicitly documents -0.0 values as possible values, so Kibana should probably show them too
Pinging @elastic/kibana-visualizations (Team:Visualizations)
-0.0 values shown by Kibana are shown as 0.0 instead, which gives false information.
Can be reproduced with:
ES explicitly documents -0.0 values as possible values, so Kibana should probably show them too