fluent / fluent-logger-node

A structured logger for Fluentd (Node.js)
Apache License 2.0
259 stars 83 forks source link

big integer value becomes to float value #148

Closed HugeLeaf closed 4 years ago

HugeLeaf commented 5 years ago

when emit data include a big interger(greater than 2147483647) value, big interger value becomes to float value after data sent.

logger.emit('debug', {test: 21234567890});

fluentd revice {"test": 21234567890.0}

okkez commented 5 years ago

Possibly, it is the limitation of JavaScript.

okkez commented 4 years ago

no response.