logstash/conf.d/test_radius_notification.conf
2025-02-18 16:02:34 +03:00

14 lines
253 B
Plaintext

# intake.conf
input { pipeline { address => "testradius" } }
output{
if "notification" in [tags] {
kafka {
bootstrap_servers => "10.12.174.50:9092"
topic_id => "testnotification"
}
}
stdout { codec => rubydebug }
}