Created
October 9, 2020 21:04
-
-
Save tuckner/cf3e3e4a631421dd78b090bf6b8bcca1 to your computer and use it in GitHub Desktop.
SentinelOne Cloudfunnel Logstash Input
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
input { | |
kafka { | |
bootstrap_servers => "" #configurable | |
group_id => "" #configurable | |
auto_offset_reset => "" #configurable | |
security_protocol => "SASL_SSL" | |
sasl_mechanism => "SCRAM-SHA-512" | |
sasl_jaas_config => "org.apache.kafka.common.security.scram.ScramLoginModule required username='' password='';" | |
ssl_endpoint_identification_algorithm => "" | |
topics => [""] #configurable | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment