How can I use my own log format like the following found at 

http://tomcat.apache.org/tomcat-5.5-doc/config/valve.html


  | %a - Remote IP address 
  | %A - Local IP address 
  | %b - Bytes sent, excluding HTTP headers, or '-' if zero 
  | %B - Bytes sent, excluding HTTP headers 
  | %h - Remote host name (or IP address if resolveHosts is false) 
  | %H - Request protocol 
  | %l - Remote logical username from identd (always returns '-') 
  | %m - Request method (GET, POST, etc.) 
  | %p - Local port on which this request was received 
  | %q - Query string (prepended with a '?' if it exists) 
  | %r - First line of the request (method and request URI) 
  | %s - HTTP status code of the response 
  | %S - User session ID 
  | %t - Date and time, in Common Log Format 
  | %u - Remote user that was authenticated (if any), else '-' 
  | %U - Requested URL path 
  | %v - Local server name 
  | %D - Time taken to process the request, in millis 
  | %T - Time taken to process the request, in seconds 
  | 

I tried to do the following by replacing pattern="combined" with pattern="%a" 
in server.xml without success


  | 
  |          <Host name="www.my_domain.com" autoDeploy="false" 
deployOnStartup="false" deployXML="false">
  |             <Alias>www.my_domain.com</Alias>
  | 
  |             <Valve 
className="org.apache.catalina.valves.FastCommonAccessLogValve"
  |                 prefix="www.my_domain.com_log." suffix=".log"
  |                 pattern="%a" directory="${jboss.server.home.dir}/log" 
  |                 resolveHosts="false" />
  |          </Host>
  | 

I thought this would simply log the remote ip using the %a, but it seems any 
modification to the pattern attirbute result in reverting to the common format.

Could someone please tell me what I am doing wrong?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952906#3952906

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952906

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to