|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.catalina.util.LifecycleBase org.apache.catalina.util.LifecycleMBeanBase org.apache.catalina.valves.ValveBase org.apache.catalina.valves.AccessLogValve
public class AccessLogValve
Implementation of the Valve interface that generates a web server
access log with the detailed line contents matching a configurable pattern.
The syntax of the available patterns is similar to that supported by the
Apache HTTP Server
mod_log_config
module. As an additional feature,
automatic rollover of log files when the date changes is also supported.
Patterns for the logged message may include constant text or any of the following replacement strings, for which the corresponding information from the specified Response is substituted:
enableLookups
for the connector is false)
In addition, the caller can specify one of the following aliases for commonly utilized patterns:
%h %l %u %t "%r" %s %b
%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-Agent}i"
There is also support to write information from the cookie, incoming
header, the Session or something else in the ServletRequest.
It is modeled after the
Apache HTTP Server log configuration
syntax:
%{xxx}i
for incoming headers
%{xxx}o
for outgoing response headers
%{xxx}c
for a specific cookie
%{xxx}r
xxx is an attribute in the ServletRequest
%{xxx}s
xxx is an attribute in the HttpSession
Log rotation can be on or off. This is dictated by the
rotatable
property.
For UNIX users, another field called checkExists
is also
available. If set to true, the log file's existence will be checked before
each logging. This way an external log rotator can move the file
somewhere and Tomcat will start with a new file.
For JMX junkies, a public method called rotate
has
been made available to allow you to tell this instance to move
the existing log file to somewhere else and start writing a new log file.
Conditional logging is also supported. This can be done with the
conditionUnless
and conditionIf
properties.
If the value returned from ServletRequest.getAttribute(conditionUnless)
yields a non-null value, the logging will be skipped.
If the value returned from ServletRequest.getAttribute(conditionIf)
yields the null value, the logging will be skipped.
The condition
attribute is synonym for
conditionUnless
and is provided for backwards compatibility.
For extended attributes coming from a getAttribute() call, it is you responsibility to ensure there are no newline or control characters.
Nested Class Summary | |
---|---|
protected static interface |
AccessLogValve.AccessLogElement
AccessLogElement writes the partial message into the buffer. |
protected static class |
AccessLogValve.ByteSentElement
write bytes sent, excluding HTTP headers - %b, %B |
protected static class |
AccessLogValve.CookieElement
write a specific cookie - %{xxx}c |
protected class |
AccessLogValve.DateAndTimeElement
write date and time, in configurable format (default CLF) - %t or %t{format} |
protected static class |
AccessLogValve.ElapsedTimeElement
write time taken to process the request - %D, %T |
protected static class |
AccessLogValve.HeaderElement
write incoming headers - %{xxx}i |
protected class |
AccessLogValve.HostElement
write remote host name - %h |
protected static class |
AccessLogValve.HttpStatusCodeElement
write HTTP status code of the response - %s |
protected static class |
AccessLogValve.LocalAddrElement
write local IP address - %A |
protected class |
AccessLogValve.LocalPortElement
write local port on which this request was received - %p |
protected static class |
AccessLogValve.LocalServerNameElement
write local server name - %v |
protected static class |
AccessLogValve.LogicalUserNameElement
write remote logical username from identd (always returns '-') - %l |
protected static class |
AccessLogValve.MethodElement
write request method (GET, POST, etc.) - %m |
protected class |
AccessLogValve.ProtocolElement
write request protocol - %H |
protected static class |
AccessLogValve.QueryElement
write Query string (prepended with a '?' |
protected class |
AccessLogValve.RemoteAddrElement
write remote IP address - %a |
protected static class |
AccessLogValve.RequestAttributeElement
write an attribute in the ServletRequest - %{xxx}r |
protected static class |
AccessLogValve.RequestElement
write first line of the request (method and request URI) - %r |
protected static class |
AccessLogValve.RequestURIElement
write requested URL path - %U |
protected static class |
AccessLogValve.ResponseHeaderElement
write a specific response header - %{xxx}o |
protected static class |
AccessLogValve.SessionAttributeElement
write an attribute in the HttpSession - %{xxx}s |
protected static class |
AccessLogValve.SessionIdElement
write user session ID - %S |
protected static class |
AccessLogValve.StringElement
write any string |
protected static class |
AccessLogValve.ThreadNameElement
write thread name - %I |
protected static class |
AccessLogValve.UserElement
write remote user that was authenticated (if any), else '-' - %u |
Field Summary | |
---|---|
protected String |
condition
Are we doing conditional logging. default null. |
protected String |
conditionIf
Are we doing conditional logging. default null. |
protected File |
currentLogFile
The current log file we are writing to. |
protected boolean |
enabled
enabled this component |
protected String |
encoding
Character set used by the log file. |
protected String |
fileDateFormat
Date format to place in log file name. |
protected SimpleDateFormat |
fileDateFormatter
A date formatter to format a Date into a date in the format "yyyy-MM-dd". |
protected static String |
info
The descriptive information about this implementation. |
protected Locale |
locale
Locale used to format timestamps in log entries and in log file name suffix. |
protected String |
localeName
Name of locale used to format timestamps in log entries and in log file name suffix. |
protected AccessLogValve.AccessLogElement[] |
logElements
Array of AccessLogElement, they will be used to make log message. |
protected String |
pattern
The pattern used to format our access log lines. |
protected String |
prefix
The prefix that is added to log file filenames. |
protected boolean |
requestAttributesEnabled
|
protected boolean |
rotatable
Should we rotate our log file? |
protected String |
suffix
The suffix that is added to log file filenames. |
protected PrintWriter |
writer
The PrintWriter to which we are currently logging, if any. |
Fields inherited from class org.apache.catalina.valves.ValveBase |
---|
asyncSupported, container, containerLog, next, sm |
Fields inherited from class org.apache.catalina.util.LifecycleMBeanBase |
---|
mserver |
Fields inherited from interface org.apache.catalina.AccessLog |
---|
PROTOCOL_ATTRIBUTE, REMOTE_ADDR_ATTRIBUTE, REMOTE_HOST_ATTRIBUTE, SERVER_PORT_ATTRIBUTE |
Fields inherited from interface org.apache.catalina.Lifecycle |
---|
AFTER_DESTROY_EVENT, AFTER_INIT_EVENT, AFTER_START_EVENT, AFTER_STOP_EVENT, BEFORE_DESTROY_EVENT, BEFORE_INIT_EVENT, BEFORE_START_EVENT, BEFORE_STOP_EVENT, CONFIGURE_START_EVENT, CONFIGURE_STOP_EVENT, PERIODIC_EVENT, START_EVENT, STOP_EVENT |
Constructor Summary | |
---|---|
AccessLogValve()
|
Method Summary | |
---|---|
void |
backgroundProcess()
Execute a periodic task, such as reloading, etc. |
protected AccessLogValve.AccessLogElement |
createAccessLogElement(char pattern)
create an AccessLogElement implementation |
protected AccessLogValve.AccessLogElement |
createAccessLogElement(String header,
char pattern)
create an AccessLogElement implementation which needs header string |
protected AccessLogValve.AccessLogElement[] |
createLogElements()
parse pattern string and create the array of AccessLogElement |
protected static Locale |
findLocale(String name,
Locale fallback)
Find a locale by name |
String |
getCondition()
Return whether the attribute name to look for when performing conditional logging. |
String |
getConditionIf()
Return whether the attribute name to look for when performing conditional logging. |
String |
getConditionUnless()
Return whether the attribute name to look for when performing conditional logging. |
String |
getDirectory()
Return the directory in which we create log files. |
boolean |
getEnabled()
|
String |
getEncoding()
Return the character set name that is used to write the log file. |
String |
getFileDateFormat()
Return the date format date based log rotation. |
String |
getInfo()
Return descriptive information about this implementation. |
String |
getLocale()
Return the locale used to format timestamps in log entries and in log file name suffix. |
String |
getPattern()
Return the format pattern. |
String |
getPrefix()
Return the log file prefix. |
boolean |
getRequestAttributesEnabled()
|
String |
getSuffix()
Return the log file suffix. |
void |
invoke(Request request,
Response response)
Log a message summarizing the specified request and response, according to the format specified by the pattern property. |
boolean |
isBuffered()
Is the logging buffered |
boolean |
isCheckExists()
Check for file existence before logging. |
boolean |
isResolveHosts()
Get the value of the resolve hosts flag. |
boolean |
isRotatable()
Should we rotate the logs |
void |
log(Request request,
Response response,
long time)
Add the request/response to the access log using the specified processing time. |
void |
log(String message)
Log the specified message to the log file, switching files if the date has changed since the previous log call. |
protected void |
open()
Open the new log file for the date specified by dateStamp . |
boolean |
rotate(String newFileName)
Rename the existing log file to something else. |
void |
setBuffered(boolean buffered)
Set the value if the logging should be buffered |
void |
setCheckExists(boolean checkExists)
Set whether to check for log file existence before logging. |
void |
setCondition(String condition)
Set the ServletRequest.attribute to look for to perform conditional logging. |
void |
setConditionIf(String condition)
Set the ServletRequest.attribute to look for to perform conditional logging. |
void |
setConditionUnless(String condition)
Set the ServletRequest.attribute to look for to perform conditional logging. |
void |
setDirectory(String directory)
Set the directory in which we create log files. |
void |
setEnabled(boolean enabled)
|
void |
setEncoding(String encoding)
Set the character set that is used to write the log file. |
void |
setFileDateFormat(String fileDateFormat)
Set the date format date based log rotation. |
void |
setLocale(String localeName)
Set the locale used to format timestamps in log entries and in log file name suffix. |
void |
setPattern(String pattern)
Set the format pattern, first translating any recognized alias. |
void |
setPrefix(String prefix)
Set the log file prefix. |
void |
setRequestAttributesEnabled(boolean requestAttributesEnabled)
Should this valve set request attributes for IP address, Hostname, protocol and port used for the request? |
void |
setResolveHosts(boolean resolveHosts)
Set the resolve hosts flag. |
void |
setRotatable(boolean rotatable)
Set the value is we should we rotate the logs |
void |
setSuffix(String suffix)
Set the log file suffix. |
protected void |
startInternal()
Start this component and implement the requirements of LifecycleBase.startInternal() . |
protected void |
stopInternal()
Stop this component and implement the requirements of LifecycleBase.stopInternal() . |
Methods inherited from class org.apache.catalina.valves.ValveBase |
---|
event, getContainer, getDomainInternal, getNext, getObjectNameKeyProperties, initInternal, isAsyncSupported, setAsyncSupported, setContainer, setNext, toString |
Methods inherited from class org.apache.catalina.util.LifecycleMBeanBase |
---|
destroyInternal, getDomain, getObjectName, postDeregister, postRegister, preDeregister, preRegister, register, setDomain, unregister |
Methods inherited from class org.apache.catalina.util.LifecycleBase |
---|
addLifecycleListener, destroy, findLifecycleListeners, fireLifecycleEvent, getState, getStateName, init, removeLifecycleListener, setState, setState, start, stop |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected static final String info
protected boolean enabled
protected String pattern
protected String prefix
protected boolean rotatable
protected String suffix
protected PrintWriter writer
protected SimpleDateFormat fileDateFormatter
protected File currentLogFile
protected String condition
conditionUnless
property.
protected String conditionIf
conditionIf
property.
protected String fileDateFormat
protected String localeName
protected Locale locale
protected String encoding
null
, the
system default character set will be used. An empty string will be
treated as null
when this property is assigned.
protected AccessLogValve.AccessLogElement[] logElements
protected boolean requestAttributesEnabled
setRequestAttributesEnabled(boolean)
Constructor Detail |
---|
public AccessLogValve()
Method Detail |
---|
public boolean getEnabled()
public void setRequestAttributesEnabled(boolean requestAttributesEnabled)
AccessLogValve
which will otherwise log the original values.
Default is true
.
The attributes set are:
setRequestAttributesEnabled
in interface AccessLog
requestAttributesEnabled
- true
causes the attributes
to be set, false
disables
the setting of the attributes.public boolean getRequestAttributesEnabled()
getRequestAttributesEnabled
in interface AccessLog
true
if the attributes will be logged, otherwise
false
AccessLog.setRequestAttributesEnabled(boolean)
public void setEnabled(boolean enabled)
enabled
- The enabled to set.public String getDirectory()
public void setDirectory(String directory)
directory
- The new log file directorypublic String getInfo()
getInfo
in interface Valve
getInfo
in class ValveBase
public String getPattern()
public void setPattern(String pattern)
pattern
- The new patternpublic boolean isCheckExists()
public void setCheckExists(boolean checkExists)
checkExists
- true meaning to check for file existence.public String getPrefix()
public void setPrefix(String prefix)
prefix
- The new log file prefixpublic boolean isRotatable()
public void setRotatable(boolean rotatable)
rotatable
- true is we should rotate.public boolean isBuffered()
public void setBuffered(boolean buffered)
buffered
- true if buffered.public String getSuffix()
public void setSuffix(String suffix)
suffix
- The new log file suffixpublic void setResolveHosts(boolean resolveHosts)
resolveHosts
- The new resolve hosts valuepublic boolean isResolveHosts()
public String getCondition()
public void setCondition(String condition)
condition
- Set to null to log everythingpublic String getConditionUnless()
public void setConditionUnless(String condition)
condition
- Set to null to log everythingpublic String getConditionIf()
public void setConditionIf(String condition)
condition
- Set to null to log everythingpublic String getFileDateFormat()
public void setFileDateFormat(String fileDateFormat)
public String getLocale()
public void setLocale(String localeName)
localeName
- The locale to use.public String getEncoding()
null
if the system default
character set is used.public void setEncoding(String encoding)
encoding
- The name of the character set.public void backgroundProcess()
backgroundProcess
in interface Valve
backgroundProcess
in class ValveBase
public void invoke(Request request, Response response) throws IOException, ServletException
pattern
property.
invoke
in interface Valve
invoke
in class ValveBase
request
- Request being processedresponse
- Response being processed
IOException
- if an input/output error has occurred
ServletException
- if a servlet error has occurredpublic void log(Request request, Response response, long time)
AccessLog
log
in interface AccessLog
request
- Request (associated with the response) to logresponse
- Response (associated with the request) to logtime
- Time taken to process the request/response in
milliseconds (use 0 if not known)public boolean rotate(String newFileName)
newFileName
- The file name to move the log file entry to
public void log(String message)
message
- Message to be loggedprotected void open()
dateStamp
.
protected static Locale findLocale(String name, Locale fallback)
protected void startInternal() throws LifecycleException
LifecycleBase.startInternal()
.
startInternal
in class ValveBase
LifecycleException
- if this component detects a fatal error
that prevents this component from being usedprotected void stopInternal() throws LifecycleException
LifecycleBase.stopInternal()
.
stopInternal
in class ValveBase
LifecycleException
- if this component detects a fatal error
that prevents this component from being usedprotected AccessLogValve.AccessLogElement[] createLogElements()
protected AccessLogValve.AccessLogElement createAccessLogElement(String header, char pattern)
protected AccessLogValve.AccessLogElement createAccessLogElement(char pattern)
|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |