Parameter:
HTTPLogAccessExcludeShort description: List of URL paths or patterns that should not appear in the HTTP access log – e.g. health-check / monitoring URLs.
Profile
Parameter | HTTPLogAccessExclude |
Category | HTTP / Web |
Component | Server |
Available since | 9.0.1 |
Supported versions | 9.0.1, 10.0, 11.0, 12.0, 14.0, 14.5, 14.5.1 |
GUI equivalent | Configuration document |
Possible values | Comma-separated list of URL prefixes / paths, optionally with the wildcard * |
Description
Many Domino servers are queried at a high frequency by load balancers, monitoring agents, or reverse proxies against health-check URLs (e.g.
/healthcheck, /api/version). These entries inflate the access log without providing functional value. HTTPLogAccessExclude defines patterns that the HTTP task excludes from the access log (both domlog.nsf and text log). The actual processing of the requests remains unaffected.Example configuration
HTTPLogAccessExclude=/healthcheck,/api/ping,/icons/*
Notes & pitfalls
- Pattern matching is case-insensitive and always starts at the beginning of the path.
- Do not exclude audit / compliance-relevant URLs.
- Takes effect after an HTTP restart (
tell http restart).
- Pairs well with
HTTPLog_QueueDepth(queue) and the chosen log target configuration.