-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
64bit integers are not properly handled #1274
Comments
I see. What would be the best workaround until a solution is in place? |
Storing datumlop as a string would help. Simply start sending them to Elasticsearch in quotes and when midnight rolls over logstash will create a new index with them as strings. The downside is that it will be sorted as a string as well. |
This issue likely still exists in Kibana 4 for the same reasons it existed in Kibana 3. |
I'm being bitten by the same issue on 5.0.0-alpha3. I assume there are no good solutions for this except storing these big long values as strings... |
+1 for this issue, kibana-5.4.3 |
+1 for this issue. |
+1 for this issue |
1 similar comment
+1 for this issue |
Given that Kibana's console has become the de facto tool to interact with Elasticsearch and create bug recreations, we have got quite a number of bug reports that often looked like data corruption (not the best kind of bugs) but that actually boiled down to this issue. A fix or a way to more easily identify numbers that haven't been displayed with full precision would be greatly appreciated. |
For the record, I was thinking about something like |
+1 for this issue, kibana-6.3.0 |
for a workaround you can use the
|
+1 for this issue, Kibana-6.6.0 |
Not having full precision timestamps in Kibana makes it display log lines in undefined order: if multiple lines have the same millisecond, Kibana, when sorting by timestamp, doesn't respect the ordering of those messages. It makes Kibana a poor system for displaying logs. |
A detailed explanation of why 64 bit numbers cause problems, and a list what's working to what extend and what not, can be found in #40183. |
+1 for this issue, kibana6.0.0 |
Since this is not a bug per-se, we're going to close this in favor of the meta issue tracking the overall challenges with 64-bit integer support in Kibana: #40183 |
ℹ️ You can find an explanation why this is not working and what is and what isn't working around 64 bit numbers in Kibana in the following issue: #40183
The following screenshot shows some events in a standard table panel. Notice the values for the column "datumlop".
Using the query genererated by the inspect tool I get the following json data from Elasticsearch:
As you can see the values in the field "datumlop" does not correspond to what is presented i Kibana.
I'm using Kibana 3.1.0 downloaded from elasticsearch.org i Firefox 26.0 running on Linux.
The text was updated successfully, but these errors were encountered: