<html><body><div style="color:#000; background-color:#fff; font-family:times new roman, new york, times, serif;font-size:12pt"><div>We are running xymon 4.2.3 on Solaris 10</div><div> </div><div>I was wondering how to create a custom non-green page!</div><div> </div><div>I have add this script to the cgi-bin directory, but not seeing any on the web page.</div><div>#!/bin/sh<br><br># Pick only hosts on the "windows" page<br>PAGE="windows"<br><br># Get red ones as priority 1<br>xymon 127.0.0.1 \<br>  "xymondboard color=red fields=hostname,testname page=$PAGE" | \<br>  awk '{ print $1 "||||1|||" }' > /tmp/crit_$$.cfg<br># Yellow ones get priority 2<br>xymon 127.0.0.1 \<br>  "xymondboard color=yellow fields=hostname,testname page=$PAGE" | \<br>  awk '{ print $1 "||||2|||" }' >> /tmp/crit_$$.cfg<br><br># Build the webpage<br>. /usr/lib/xymon/server/etc/cgioptions.cfg<br>$XYMONHOME/bin/criticalview.cgi $CGI_CRITVIEW_OPTS
 \<br>    --config=/tmp/crit_$$.cfg<br><br>rm -f /tmp/crit_$$.cfg<br>exit 0<br></div><div>Thanks</div><div> </div><div>-Scott</div></div></body></html>