Logstash disable Stdout

Hi

I'm having below code in output section

{ 
              hosts => ["localhost:9200"]
              document_id => "%{authsid}"
              index =>  "dashboard_write"
              action => "delete"
           }
        stdout { codec => line {format => "Deleted Event Successfully"}}  
        stdout { codec => rubydebug }

I wish to disable above stdout through logstash.yml. Is it possible??

Regards
Ram

No, you cannot disable outputs that are in the configuration through logstash.yml

so only way is to remove these lines from files?? Without stopping logstash, is there anyway to stop these lines??

Yes.

Can I print log/event messages in input/filter/output plugin without stdout? so that I can control that using yaml log level

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.