How To Configuring Urchin 6 Tracking To Analyze Website Logs
This is 3rd and the final installment for Urchin 6 web analytics software series. Once Urchin is installed, you need to configure tracking on your website. You need to install Urchin sensors - a small piece of javascript tracking
code on each of your website's pages. Usually all large site uses some sort of templating (themes) system.
Step # 1: Copy UTM files to webroot
You need to copy or softlink urchin.js and __utm.gif file to webroot from /usr/local/urchin/util/utm directory. If your webroot set at /home/lighttpd/cyberciti.biz/, enter:
# cp -v /usr/local/urchin/util/utm/* /home/lighttpd/cyberciti.biz/
Set appropriate file permissions:
# chown apache:apache /home/lighttpd/cyberciti.biz/urchin.js
# chown apache:apache /home/lighttpd/cyberciti.biz/__utm.gif
Step # 2: Add tracking HTML JS code in the HEAD section
On each page of your website, place the following tracking code right after the any META tags in the HEAD section:
<script src="/urchin.js" type="text/javascript"> </script> <script type="text/javascript"> _userv=0; urchinTracker(); </script>
Also make sure each website or profiles set to Urchin Traffic Monitor (UTM) as the visitor tracking method.
Step # 3: Make sure Apache logs data with cookies
You need to enable cookies in your Apache logging, add following code your httpd.conf file:
LogFormat "%h %v %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" \"%{Cookie}i\"" urchin
Find your domain <VirtualHost> entry for which you wish to enable this new logging format. Deactivate any existing TransferLog or CustomLog entries within a
CustomLog /var/log/httpd/cyberciti.biz/access.log urchin
A note about lighttpd web server
If you are using Lighttpd add following code to you lighttpd.conf file:
accesslog.format = "%h %v %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" \"%{Cookie}i\""
Save and close web server configuration file. Restart the server:
# service httpd restart
OR
# service lighttpd restart
How do I view reports?
Login to your account by visiting urchin admin url:
https://your.server.com:9999/
Click the Go To Report button to the right of each Profile Name to launch the reporting window for that Profile. The reporting window will allow you to view all available reports for the Profile i.e. website. Here is a sample report:
Conclusion
This series has shown you how to install and configure Google Urchin 6 under Red Hat Enterprise Linux 5.x. I suggest reading following section for more information.
Further readings:
- Urchin 6 help pages
- Google Urchin 6 home page
Continue reading rest of the Urchin 6 Web Analytics series.
Contents
- Linux: Install Urchin 6 Web Analytics Software
- Exploring Urchin Web Analytics Software
- How To Configuring Urchin 6 Tracking To Analyze Website Logs
E-mail this to a Friend
Printable Version
You may also be interested in other helpful articles:
- How to Analyzing malicious SSH login attempts and secure the system
- Apache httpd debugging Logs on steroids
- Redhat website gets face lift
- FreeBSD > Displaying System-Specific Messages at Login
- FreeBSD > New website launched
Discussion on This Article:
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!
Tags: apache logging, apache logs, logging format, traffic monitor, urchintracker, web analysis, web analytics software, web analytics tools, web log analysis, web server configuration, web traffic analysis software




Why would I install this application with a price so high? I can live with awstats!
awstats sucks, can just se one month as period.
I guess that access from southern Brazil that appears in image above is mine
Or better yet, use webalizer and don’t put extra silly javascript in your site, incuring more bandwidth costs and slower page loads (fractional to be sure but still there)