Created
August 9, 2014 11:34
-
-
Save saurzcode/da3b31f0496b5feba8c9 to your computer and use it in GitHub Desktop.
LogStash Grok Configuration
This file contains 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 { | |
file { | |
path => ["var/log/apache.log"] | |
type => "saurzcode_apache_logs" | |
} | |
} | |
filter { | |
grok { | |
match => ["message","%{COMBINEDAPACHELOG}"] | |
} | |
} | |
output{ | |
stdout{} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment