logstash-springboot.conf 164 B

12345678910
  1. input {
  2. tcp {
  3. port => 4560
  4. codec => json_lines
  5. }
  6. }
  7. output{
  8. elasticsearch { hosts => ["localhost:9200"] }
  9. stdout { codec => rubydebug }
  10. }