Skip to content

Instantly share code, notes, and snippets.

@sandcastle
Created April 18, 2016 00:02
Show Gist options
  • Select an option

  • Save sandcastle/d1ce101d8cf7d1425b2b6b707effadf1 to your computer and use it in GitHub Desktop.

Select an option

Save sandcastle/d1ce101d8cf7d1425b2b6b707effadf1 to your computer and use it in GitHub Desktop.
Logstash Syslog to Elasticsearch configuration via docker
input {
syslog {
port => 12345
type => "docker"
}
}
output {
elasticsearch {
hosts => [ "elasticsearch" ]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment