beat_kafka.conf 288 B

1234567891011121314151617181920
  1. input {
  2. beats {
  3. port => 5044
  4. }
  5. lumberjack {
  6. port => 5043
  7. ssl_key => "/ssl/selfsigned.key"
  8. ssl_certificate => "/ssl/selfsigned.crt"
  9. }
  10. }
  11. output {
  12. kafka {
  13. codec => json
  14. bootstrap_servers => "kafka:9092"
  15. topic_id => "%{type}"
  16. }
  17. stdout {
  18. codec => rubydebug
  19. }
  20. }