Created
November 8, 2018 18:53
-
-
Save michaelayoub/be4f55a4adb46f6bd2f116a5f45bebef to your computer and use it in GitHub Desktop.
Logstash output configuration for Azure Event Hubs for Kafka
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| output { | |
| kafka { | |
| id => "kafka-output-syslog-mcas-eventhub" | |
| bootstrap_servers => "<event hub namespace>.servicebus.windows.net:9093" | |
| security_protocol => "SASL_SSL" | |
| sasl_mechanism => "PLAIN" | |
| jaas_path => "/path/to/jaas.config" | |
| codec => "json" | |
| ssl_truststore_location => "/path/to/kafka.client.truststore.jks" | |
| ssl_truststore_password => "XXXXX" | |
| topic_id => ["syslog_mcas"] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment