Skip to content

Example: Syslog Splunk

Lorenzo Mangani edited this page Sep 7, 2017 · 2 revisions

Syslog to Splunk

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
  }
}
Clone this wiki locally