Skip to content

Instantly share code, notes, and snippets.

@ram-devsecops
Created April 15, 2015 20:15
Show Gist options
  • Save ram-devsecops/666cb0e842799edcceb5 to your computer and use it in GitHub Desktop.
Save ram-devsecops/666cb0e842799edcceb5 to your computer and use it in GitHub Desktop.
logstash config file without filter
input {
courier {
port => 6379
ssl_certificate => "/opt/logstash/ssl/logstash-forwarder.crt"
ssl_key => "/opt/logstash/ssl/logstash-forwarder.key"
}
}
output {
#Only exporting files that parsed properly.
if "_grokparsefailure" not in [tags] {
elasticsearch {
host => "localhost"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment