Skip to content

Instantly share code, notes, and snippets.

@paulczar
Last active December 19, 2015 11:09
Show Gist options
  • Save paulczar/5945957 to your computer and use it in GitHub Desktop.
Save paulczar/5945957 to your computer and use it in GitHub Desktop.
logstash config file for testing docker
input {
tcp {
port => "514"
type => "syslog"
tags => ["gisticles"]
}
}
filter {
grok {
type => "syslog"
pattern => ["%{SYSLOGBASE}"]
}
}
output {
stdout { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment