Logstash Capture http response from http output plugin
问题 I have wrote a logstash program to post some message to URL. there is no error from logstash but i wanted to know is there a way to capture response from the url what we post using http output plugin ? output { stdout { codec => json_lines } http{ url => "Rest URl" http_method => "post" format => "json" headers => {"Authorization" => "%{pass}"} } } I had gone through the documentation but i didnot find anything realted to it. Forgive me if it is dumb question. 回答1: There are no dumb questions