Hello,
I'm trying to use json_batch in http output, how I can set the buffer size and time to flush?
My sample pipeline:
logstash -e 'input{stdin {}} filter{ mutate { add_field => { "level" => "info" "mrId" => "mrTest" "creationDate" => 0}}} output {http {format => "json_batch" http_method => "post" headers => ["api-key", "YWRtaW46cGFzc3dvcmQxMjM"] url => "http://0.0.0.0:8082/v1/ns/example.ns/logs"}}'
Thanks in advanced.