<div class="mb cb"><div id="mb_3">Okay, next plan.<br><br>BoxA
runs Nag .. BoxB run NRPE and does a check_logs .. is there a way for
me to execute a shell script on BoxB if check_logs is triggered into
warning?<br><br><a href="http://sysunconfig.net/unixtips/wgrep.txt" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
http://sysunconfig.net/unixtips/wgrep.txt</a> is a damn fine tool which will allow me to grab the lines I want as well as lines above and below those found in the regex.<br><br></div></div>the
way I have wgrep working, it returns 8 lines per match .. a divider,
one line above the regex, the regex line, and three lines after it ..<br><br>if the check_logs.pl triggers, it returns the number of matches found in the logfile .. lets say it 4 matches .. 
<br><br>what I want to do, is to be able to use tail -l (8 * number of matches found) so it only outputs the faults found ..<br><br>then, send an email from the script which sends this output<br><br>so what i need, is a method to trap the number of fails from check_logs.pl ... and pass this to a script that can wgrep and send the output to an email address.
<br><br>This would provide a simple and workable addon to check_logs, which I'm sure can be used by many on the list :)<br>