We have a live help on our server that generates an insane amount of access logs as you can imagine. Currently they're appended to all of the other access logs for the site they run on. This makes it difficult to sort through the error logs. Is there a way I can specify that anything within /livehelp go into a different log file?
|
feedback
|
| |||||||||
feedback
|
|
If you move /livehelp to its own VirtualHost (which requires its own HostName) you can customize the logs to keep them separate. You would use the CustomLog and ErrorLog directives to specify the location for those logs.
| |||
|
feedback
|
|
You could use the piped log [1] feature of apache. Create a shell script like
(untested and needs improvement) now add
and
to the apache config you can add some more filtering here if you need | |||
|
feedback
|