Created
May 22, 2013 14:10
-
-
Save Tombar/5627807 to your computer and use it in GitHub Desktop.
Logstash lumberjack input filter example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input { | |
lumberjack { | |
# The port to listen on | |
port => 1234 | |
# The paths to your ssl cert and key | |
ssl_certificate => "/path/to/server.crt" | |
ssl_key => "/path/to/server.key" | |
# Set this to whatever you want. | |
type => "nginx" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment