-
-
Notifications
You must be signed in to change notification settings - Fork 28
Example: Syslog Splunk
Lorenzo Mangani edited this page Sep 7, 2017
·
2 revisions
Basic Syslog to Splunk Cloud exporter:
input {
udp {
host => 0.0.0.0
port => 1514
type => "custom"
}
}
filter {}
output {
splunk {
token => "your-token-here"
splunk_url => "https://input-xxx.cloud.splunk.com:8088/services/collector/event"
batchInterval => 1000
maxBatchCount => 10
maxBatchSize => 1024
}
}