Created
July 28, 2014 10:36
-
-
Save danslimmon/30fb83811f91495dc54a to your computer and use it in GitHub Desktop.
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
filter { | |
if [type] == "nginx_access" { | |
clone { clones => [ "nginx_mini" ] } | |
} | |
if [type] == "nginx_mini" { | |
# Nothing ever gets here! | |
mutate { add_tag => "test" } | |
prune { whitelist_names => [ "agent", "clientip", "timestamp" ] } | |
} | |
} | |
output { | |
if [type] == "nginx_mini" { | |
sqs { ... } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment