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
{{ message }}
This repository was archived by the owner on Mar 21, 2020. It is now read-only.
There's a bug in the code where if the actual chunk size > batch_size_limit then the code tries to send an array of objects instead of concatenated json objects. This results in an error like this..
2018-07-11 23:23:02 +0000 [debug]: #0 Pushing 2,067 events (1,042,549 bytes) to Splunk.
2018-07-11 23:23:02 +0000 [warn]: #0 Fluentd is attempting to push 1,042,549 bytes in a single push to Splunk. The configured limit is 1,041,076 bytes.
2018-07-11 23:23:03 +0000 [debug]: #0 POST XXX/collector/event
2018-07-11 23:23:03 +0000 [debug]: #0 =>(1/1) 400 (Bad Request)
2018-07-11 23:23:03 +0000 [error]: #0 XXX/collector/event: 400 (Bad Request)
{"text":"Invalid data format","code":6,"invalid-event-number":0}
There's a bug in the code where if the actual chunk size > batch_size_limit then the code tries to send an array of objects instead of concatenated json objects. This results in an error like this..
2018-07-11 23:23:02 +0000 [debug]: #0 Pushing 2,067 events (1,042,549 bytes) to Splunk.
2018-07-11 23:23:02 +0000 [warn]: #0 Fluentd is attempting to push 1,042,549 bytes in a single push to Splunk. The configured limit is 1,041,076 bytes.
2018-07-11 23:23:03 +0000 [debug]: #0 POST XXX/collector/event
2018-07-11 23:23:03 +0000 [debug]: #0 =>(1/1) 400 (Bad Request)
2018-07-11 23:23:03 +0000 [error]: #0 XXX/collector/event: 400 (Bad Request)
{"text":"Invalid data format","code":6,"invalid-event-number":0}
Here's the config i used