Xymon Mailing List Archive search

disk IGNORE rule in DEFAULT section

list Charles Jones
Fri, 30 Mar 2007 11:24:02 -0700
Message-Id: <user-c732b64b8c55@xymon.invalid>

Gary Baluha wrote:
DEFAULT
   <other non-related DISK IGNORE rules>
   DISK    %^/archive[0-9]* IGNORE
   DISK    * 90 95

I know technically the "DISK *" should probably be "DISK .*", but I 
thought that's how it was by default.
Am I just wrong with my PCRE?
Try this:
DISK   %^\/archive[0-9]   IGNORE

Note that will also ignore things like /archive10, /archive30, etc. so 
if you want to ONLY ignore 0-9, you need to use this (assuming paths 
like /archiveXX):
DISK   %^\/archive[0-9]$   IGNORE

P.S. Your main problem was not escaping the /

-Charles