Files
docker-log-centralizer/logstash/shipper/pipeline/beat_kafka.conf
2017-03-17 12:34:00 +01:00

15 lines
182 B
Plaintext

input {
beats {
port => 5044
}
}
output {
kafka {
codec => json
bootstrap_servers => "kafka:9092"
topic_id => "%{type}"
}
stdout {
codec => rubydebug
}
}