You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this leads to an error when using graylog as logstash destination:
[12]: index [graylog2_17], type [message], id [e6449a00-ae49-11e6-bf3c-5e4abd8a540e], message [MapperParsingException[failed to parse]; nested: IllegalArgumentException[mapper [beat_response_jsonBody_snapshot_values] of different type, current_type [long], merged_type [double]];]
* [Output format of response body is now defined via output_format parameter](#8). Default is 'string'
Bugfixes
* [Missing es2x template](#13)
* [Correct parsing of large numbers in JSON output](#12)
endpoint provides:
"values":[265381,276756,16476547,42900243,44762036, ...
httpbeat pushes:
"values": [
265381,
276756,
1.6476547e+07,
4.2900243e+07,
4.4762036e+07,
this leads to an error when using graylog as logstash destination:
[12]: index [graylog2_17], type [message], id [e6449a00-ae49-11e6-bf3c-5e4abd8a540e], message [MapperParsingException[failed to parse]; nested: IllegalArgumentException[mapper [beat_response_jsonBody_snapshot_values] of different type, current_type [long], merged_type [double]];]
potential solution in:
http://stackoverflow.com/questions/22343083/json-marshaling-with-long-numbers-in-golang-gives-floating-point-number
The text was updated successfully, but these errors were encountered: