Last active
April 4, 2016 20:21
-
-
Save iversond/133608d6e085573bf0e83776a9ae6dd4 to your computer and use it in GitHub Desktop.
Custom grok pattern for WebLogic's Extended HTTP Access Log. "c-ip cs-username date time cs-method cs-uri sc-status bytes s-ip cs(user-agent) time-taken"
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
WL_EXTENDED %{IPORHOST:clientip}\t%{USER:auth}\t%{WL_TIMESTAMP:timestamp}\t%{WORD:verb}\t%{NOTSPACE:request}\t%{NUMBER:response}\t%{NUMBER:bytes}\t%{WL_WEB_SERVER:webserver}\t%{QS:useragent}\t%{NUMBER:duration} | |
WL_TIMESTAMP %{YEAR}-%{MONTHNUM}-%{MONTHDAY}\t%{TIME} | |
WL_WEB_SERVER %{IPORHOST:server}\:%{NUMBER:port} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment