Skip to content

Instantly share code, notes, and snippets.

@agrohe21
Created June 3, 2016 14:22
Show Gist options
  • Save agrohe21/ebd6e7df3760d290158ad9100661aa9e to your computer and use it in GitHub Desktop.
Save agrohe21/ebd6e7df3760d290158ad9100661aa9e to your computer and use it in GitHub Desktop.
<!-- 4.x -->
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="http_access." suffix=".log" pattern="%t|%a|%m|%p|%U|%q|%s|%S|%u|%D|%T|%B|%{User-agent}i|%{Referer}i|%A|%{Content-Type}o|%{SECURITY_PRINCIPAL}s" resolveHosts="false"/>
<!-- 5.0 with user -->
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="http_access" suffix=".log" pattern="%t|%a|%m|%p|%U|%q|%s|%S|%u|%D|%T|%B|%{User-agent}i|%{Referer}i|%A|%{Content-Type}o|%{SPRING_SECURITY_LAST_USERNAME}s" resolveHosts="false"/>
<!-- 5.0 without user -->
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" prefix="http_access." suffix=".log" pattern="%t|%a|%m|%p|%U|%q|%s|%S|%u|%D|%T|%B|%{User-agent}i|%{Referer}i|%A|%{Content-Type}o" resolveHosts="false"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment