I am running a JBOSS server with a custom application on it. I have a
number of logs that are rolled over daily that are very large. The fill
has every GET and POST Request
Here is a snippet
CLIENTIPADDRESS - - [02/Sep/2006:04:02:15 +0000] "GET
/EDS/HTML/app/en/Images/Masthead/user_guide_tier1.gif HTTP/1.1" 304 0
"http://THEIPADDRESS:8080/EDS/DisplayMailList" "Mozilla/4.0
(compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)"
CLIENTIPADDRESS - - [02/Sep/2006:04:02:15 +0000] "GET
/EDS/HTML/app/en/Images/Masthead/support_tier1.gif HTTP/1.1" 304 0
"http://THEIPADDRESS:8080/EDS/DisplayMailList" "Mozilla/4.0
(compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)"
CLIENTIPADDRESS - - [02/Sep/2006:04:02:15 +0000] "GET
/EDS/HTML/app/en/Images/Masthead/log_off_tier1.gif HTTP/1.1" 304 0
"http://THEIPADDRESS:8080/EDS/DisplayMailList" "Mozilla/4.0
(compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)"
CLIENTIPADDRESS - - [02/Sep/2006:04:02:15 +0000] "GET
/EDS/HTML/app/en/Images/Masthead/netdelivery.gif HTTP/1.1" 304 0
"http://THEIPADDRESS:8080/EDS/DisplayMailList" "Mozilla/4.0
(compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)"
CLIENTIPADDRESS - - [02/Sep/2006:04:02:15 +0000] "GET
/EDS/HTML/app/en/Images/Masthead/delivery_center_on.gif HTTP/1.1" 304 0
"http://THEIPADDRESS:8080/EDS/DisplayMailList" "Mozilla/4.0
(compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)"
CLIENTIPADDRESS - - [02/Sep/2006:04:02:15 +0000] "GET
/EDS/HTML/app/en/Images/Masthead/forms_library_off.gif HTTP/1.1" 304 0
"http://THEIPADDRESS:8080/EDS/DisplayMailList" "Mozilla/4.0
(compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)"
CLIENTIPADDRESS - - [02/Sep/2006:04:02:15 +0000] "GET
/EDS/HTML/app/en/Images/Masthead/my_profile_off.gif HTTP/1.1" 304 0
"http://THEIPADDRESS:8080/EDS/DisplayMailList" "Mozilla/4.0
(compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)"
CLIENTIPADDRESS - - [02/Sep/2006:04:02:15 +0000] "GET
/EDS/HTML/app/en/Images/Masthead/my_options_off.gif HTTP/1.1" 304 0
"http://THEIPADDRESS:8080/EDS/DisplayMailList" "Mozilla/4.0
(compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)"
I assume this is a log4j setting but I cannot seem to find.
Thanks!
Arne Vajhøj - 02 Sep 2006 20:55 GMT
> I am running a JBOSS server with a custom application on it. I have a
> number of logs that are rolled over daily that are very large. The fill
> has every GET and POST Request
> I assume this is a log4j setting but I cannot seem to find.
My
C:\jboss-4.0.4.GA\server\default\deploy\jbossweb-tomcat55.sar\server.xml
has a
<!-- Access logger -->
<!--
<Valve
className="org.apache.catalina.valves.FastCommonAccessLogValve"
prefix="localhost_access_log." suffix=".log"
pattern="common" directory="${jboss.server.home.dir}/log"
resolveHosts="false" />
-->
Try see how yours equivalent looks like.
Arne