Hi,
I have an http input configured to receive http bulk requests in application/x-ndjson
format. However, logs are not flowing. The input config looks like this:
input {
http {
codec => "json"
additional_codecs => { "application/x-ndjson" => "json"}
max_pending_requests => 400
host => "0.0.0.0"
port => 8080
}
}
If I disable bulk transmit from the upstream and change additional_codecs
to application/json
then it works. So, how should I configure this input to accept bulk payloads?
Thx
D