logstash.conf 169 B

123456789101112
  1. input {
  2. syslog { port => 51415 }
  3. }
  4. output {
  5. elasticsearch {
  6. hosts => ["elasticsearch:9200"]
  7. }
  8. # Remove in production
  9. # stdout {
  10. # codec => rubydebug
  11. # }
  12. }