(Almost everything is in my question): We have that nice/awesome Fogbugz tools that is running on our production server. The problem is that this server handles more than 400 domain names and more than 20 real websites. The logs are already pretty heavy, and since we've installed Fogbugz, there's a very nice process called heartbeat that is called every 15 seconds. Every 15 seconds!! Just imagine the size of our logs now... polluted with tons of lines like:

GET /fogbugz/heartbeat.asp HTTP/1.1" 302 223 "-" "FogBugz Maintenance Service 7.1"

(see http://fogbugz.stackexchange.com/questions/794/what-does-the-fogbugz-maintenance-service-actually-do)

So my question, to be more generic, could be:

We're running the latest Apache httpd server version. Is there any way to ignore just this specific request, and not to log it? There may be something about mod_log_config ( http://httpd.apache.org/docs/2.0/mod/mod_log_config.html ) but I didn't find a good answer.

Any help would be greatly appreciated!

Thanks a lot!

link|improve this question

75% accept rate
feedback

3 Answers

up vote 3 down vote accepted

I've not tested this, but, if you set an environment variable you should be able to switch which file it logs to:

SetEnvIf Request_URI "/fogbugz/heartbeat\.asp$" is_heartbeat_request=1
CustomLog /var/log/httpd/heartbeat_log combined env=is_heartbeat_request
CustomLog /var/log/httpd/access_log combined env=!is_heartbeat_request
link|improve this answer
It did the trick thanks a lot! – Olivier Pons Dec 19 '10 at 11:41
feedback

I don't have time to dig up the configs I used to do something like this in the past, but my memory is that you can use the File directive to turn logging off for just one file. I think it would look something like this

<Directory /path/to/dir/holding/file>
  <Files heartbeat.asp>
    CustomLog/dev/null
  </Files>
</Directory>

It might be worth looking at the logging module to see if there's a command to turn off logging instead of logging to /dev/null...

link|improve this answer
Maybe this directive: "TransferLog /dev/null" ? ? – Olivier Pons Dec 17 '10 at 14:58
feedback

Look at this section from the link you provided. You can follow the log file name by a pipe and program name to receive the log requests before logging them. So, you can use grep -v heartbeat.asp to filter the matched requests

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.