Created
April 2, 2013 16:11
-
-
Save timconradinc/5293479 to your computer and use it in GitHub Desktop.
dnslookups
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
mutate { | |
type => "PaloAltoTestTrafficLog" | |
add_field => ["SourceAddressFQDN", ""] | |
add_field => ["DestinationAddressFQDN", ""] | |
} | |
mutate { | |
type => "PaloAltoTestTrafficLog" | |
replace => [ "SourceAddressFQDN", "%{SourceAddress}" ] | |
replace => [ "DestinationAddressFQDN", "%{DestinationAddress}" ] | |
} | |
dns { | |
type => "PaloAltoTestTrafficLog" | |
reverse => [ "SourceAddressFQDN","DestinationAddressFQDN" ] | |
action => "replace" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment