-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kibana incorrectly rounds values larger than 2^53 #7863
Labels
bug
Fixes for quality problems that affect the customer experience
Comments
w33ble
added
bug
Fixes for quality problems that affect the customer experience
Feature:Console
Dev Tools Console Feature
labels
Jul 27, 2016
w33ble
changed the title
Console can't display output values larger than 2^53
Kibana incorrectly rounds values larger than 2^53
Aug 2, 2016
We encountered the same problem, it would be great if this got fixed! |
+1 |
@Bargs yeah, these do in fact look like the same issue. Thanks, closing. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Kibana version: Any
Elasticsearch version: Any
Description of the problem including expected versus actual behavior:
Elasticsearch output is being parsed by Javascript, which has a number limit of 2^53 (9,007,199,254,740,992). Numbers larger than that are cast to doubles, and their value is shown incorrectly.
This is currently caused by the Ace editor parsing the data before displaying it. The solution will need to involve skipping that output parsing somehow.
The text was updated successfully, but these errors were encountered: