Logging Restrictions to a Specific IP
We have a F5 BigIP load balancer and Sun one webserver 6. The load Balancer does a health check on the webserver every 5 seconds and logs it in access.log. Is there any setting on the load balancer or Web Server where I can avoid those logging messages? I still want the health check to be performed do not want them to be logged in access.log. Any help will be truly appreciated.
Thanks,
Sarvesh
[415 byte] By [
sarvesh230] at [2007-11-26 11:56:57]

# 1
It is possible to suppress access logging for a particular IP address.
In the obj.conf configuration file, you should find a line like the following:AddLog fn="flex-log" name="access"You can make this AddLog directive conditional using the Client tag as follows:<Client ip="*~192.168.1.1">
AddLog fn="flex-log" name="access"
</Client>In my example, 192.168.1.1 is the IP address that shouldn't appear in the access log.