<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On 11 September 2014 01:50, Tres Finocchiaro <span dir="ltr"><<a href="mailto:tres.finocchiaro@gmail.com" target="_blank">tres.finocchiaro@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Fantastic, that gets me further.  So it appears to be breaking on my Perl-compatible percent-asterisk (%*) in the alert.cfg.  Apparently my wildcard is invalid.</div></blockquote><div><br></div><div>That's because "%*" is invalid.  The "%" means what follows is a perl-compatible regular expression (PCRE).  An asterisk in a PCRE means "zero or more of the preceding symbol".  If there's no preceding symbol, then the PCRE is invalid.  What you probably mean is "%.*", where the dot means "any character" and so ".*" means "zero or more of any character".</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>I change the line from <b>HOST=%*</b> to <b>HOST=*</b> and alerts are working great.</div></div></blockquote><div><br></div><div>This works because you're no longer using an RE, but are matching due to a special case in the host-matching code, where an asterisk means to match everything.  But the effect is the same as if you did "%.*".</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>Should I use <b>HOST=*</b>, is this the recommended method?  I would assume the alert.cfg to have a basic example for "all hosts" but the best I could find was the Perl example.<br></div></div></blockquote></div><div class="gmail_extra"><br></div>Given that "HOST=*" is an undocumented feature, and that it looks like a glob pattern but isn't, I would recommend you use "HOST=%.*".<br><br></div><div class="gmail_extra">J</div><div class="gmail_extra"><br></div></div>