We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When Fluent Bit processes JSON data, floating-point precision can be lost due to automatic rounding.
For example, data before parsing might look like: {"points":[1046.8333333333335, 1119.0714285714287]}
But after parsing, it may become: {"points":[1046.833333333333, 1119.071428571429]}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When Fluent Bit processes JSON data, floating-point precision can be lost due to automatic rounding.
For example, data before parsing might look like:
{"points":[1046.8333333333335, 1119.0714285714287]}
But after parsing, it may become:
{"points":[1046.833333333333, 1119.071428571429]}
The text was updated successfully, but these errors were encountered: