Couldn't you use "auto" format? Your sample is a pretty ordinary-looking log record--I'd be surprised if the auto log format didn't detect it properly.
I haven't yet created a custom log format within Urchin, nor have I found a need to create one.
-Jeff
> --
> You received this message because you are subscribed to the Google Groups "Urchin 6"
> group.
> To post to this group, send email to urchin...@googlegroups.com.
> To unsubscribe from this group, send email to urchin-help-
> 6+unsu...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/urchin-help-
> 6?hl=en.
>
I had this issue with Glassfish and their uncommon pattern in the logs, it is missing some key separators (").
To fix this you can change the AccessLogFormat to common or combined.
Some information on this here http://tomcat.apache.org/tomcat-5.5-doc/catalina/docs/api/org/apache/catalina/valves/AccessLogValve.html
To fix the logs I had from before I copied all the logs into a linux machine and ran a sed script on the directory.
for i in *; do sed -e 's/"\([0-9\.]*\)"/\1/g' -e 's/"\([^"]*-0500\)"/[\1]/g' $i > new.$i; Done
This adds all the appropriate missing “
You may need to change the -500 to your timezone
hope this helps :)
Santos Soler
System Administrator
IFAS Information Technology
Server Administration
University of Florida
To unsubscribe from this group, send email to urchin-help-...@googlegroups.com.