How do I configure Urchin to process multiple log files for a site?

Specify each log file in a TransferLog directive. For example:

<Report>
ReportName:     site1.com
ReportDirectory:     /www/site1/urchin/
TransferLog:     /www/site1/logs/access1.log
TransferLog:     /www/site1/logs/access2.log
TransferLog:     /www/site1/logs/access3.log

ErrorLog:     /www/site1/logs/error.log
</Report>
You may also use Urchin’s Command Line Options to process your built-up logs. Here’s the format:

./urchin -R reportname -r /path/to/reportdir -l /path/to/logs/*.log

“-R” = report name (ex. site1.com)
“-r” = report directory location
“-l” = location of log file(s)
Note that all global configuration directives, such as the SystemReport, are still read from the config file.

Your rating: None