Undertow WildFly Subsystem Configuration - access-log: Difference between revisions
Jump to navigation
Jump to search
Line 68: | Line 68: | ||
"<tt>common</tt>": <tt>%h %l %u %t "%r" %s %b</tt> | "<tt>common</tt>": <tt>%h %l %u %t "%r" %s %b</tt> | ||
"<tt> combined </tt>": <tt> %h %l %u %t "%r" %s %b "%{i,Referer}" "%{i,User-Agent}"</tt> | "<tt>combined</tt>": <tt> %h %l %u %t "%r" %s %b "%{i,Referer}" "%{i,User-Agent}"</tt> |
Revision as of 18:57, 20 January 2016
Internal
Overview
This page documents the configuration of the Undertow AccessLogHandler. The handler generates log entries for each request. The handler can log any attributed that is provided with the ExchangeAttribute mechanism. The most common are presented below in the Log Patterns section.
<subsystem xmlns="urn:jboss:domain:undertow:3.0"> ... <server name="default-server"> ... <host name="default-host" alias="localhost"> <location name="/" .../> <access-log/> ... </host> </server> <servlet-container .../> ... </subsystem>
Configurable Attributes
pattern
The default value is "common".
worker
The default value is "default".
directory
The default value is "${jboss.server.log.dir}"
relative-to
The default value is "access_log"
suffix
The default value is ".log"
rotate
The default value is "true"
use-server-log
The default value is "false"
extended
The default value is "false"
predicate
Log Patterns
"common": %h %l %u %t "%r" %s %b
"combined": %h %l %u %t "%r" %s %b "%{i,Referer}" "%{i,User-Agent}"