Skip to content

Example: Syslog Kafka

Lorenzo Mangani edited this page Oct 24, 2017 · 3 revisions

Syslog to Splunk

Basic Syslog to Splunk Cloud exporter:

input {
  udp {
    host => 0.0.0.0
    port => 1514
    type => "custom"
  }
}

filter {}

output {
  kafka{
    topic => "hepic"
    kafkaHost => "some_url_here"
    debug => true
  }
}
Clone this wiki locally