"Simon R Jones" <[EMAIL PROTECTED]> wrote: > is it possible to combine exclude commands at all? ie. I can use this to > ignore all requests from a specific IP: REFEXCLUDE 255.255.255.255 > > and I can use this to exclude requests from a specific browser: BROWEXCLUDE > Mozilla/3.01 (compatible;) > > my query is can I combine these to ignore requests from a specific browser > on a specific IP, but not other requests on that IP or from that browser?? > Only when they happen together? I'm fairly certain that you can't do that under normal circumstances. But you might be able to achieve something with custom logformats. For example, if your normal logformat was something like this: LOGFORMAT (%S - %u [%d/%M/%Y:%h:%n:%j %j] "%j %r %j" %c %b %B) you could include 2 LOGFORMAT lines: LOGFORMAT (%u - %j [%d/%M/%Y:%h:%n:%j %j] "%j %r %j" %c %b Special+Browser) LOGFORMAT (%S - %u [%d/%M/%Y:%h:%n:%j %j] "%j %r %j" %c %b %B) and then do a USEREXCLUDE 12.34.56.78 - the only lines where the User field are in IP address format will be those matching your target browser string. If this works (I don't honestly know!) it will mess up you Host and Domain reports, but your request report should be fine. The other alternative would be a fairly simple preprocessor for your logfiles. Aengus +------------------------------------------------------------------------ | This is the analog-help mailing list. To unsubscribe from this | mailing list, go to | http://lists.isite.net/listgate/analog-help/unsubscribe.html | | List archives are available at | http://www.mail-archive.com/[email protected]/ | http://lists.isite.net/listgate/analog-help/archives/ | http://www.tallylist.com/archives/index.cfm/mlist.7 +------------------------------------------------------------------------
