<div dir="ltr">Agege<div><br></div><div>Most column names created by built-it tests cannot be changed.  There are a few exceptions, such as these (undocumented):</div><div><br></div><div>a) The "conn" (ie ping) test can be changed by having xymonnet launched with "--ping=<colname>"</div><div>b) The "ssl" certificate test column can be changed with "--ssl=<colname>"</div><div>c) Similarly for content checks for web pages, "--content=<colname>"</div><div>You can also ignore columns from the display, by having xymongen run with "--ignorecolumns=test1,test2,..."</div><div><br></div><div>Of course any test scripts that you write yourself can be made to report to any column name you wish.</div><div><br></div><div>You could write a client-side script that reports the status of IPv6.  Details on writing your own scripts are in the "Tips and Tricks" notes: <a href="http://xymon.sourceforge.net/xymon/help/xymon-tips.html#scripts">http://xymon.sourceforge.net/xymon/help/xymon-tips.html#scripts</a></div><div><br></div><div>For IPv6 you could check for an "inet6" entry in the output of "ifconfig -a", and report accordingly.  Something like this:</div><div><br></div><div>#!/bin/sh</div><div>if /sbin/ifconfig -a | grep inet6 >/dev/null; then</div><div>  COL=red; MSG="IPv6 detected"</div><div>else</div><div>  COL=green; MSG="IPv6 not detected"</div><div>fi</div><div>$XYMON $XYMSRV "status $MACHINE.ipv6 $COL `date`</div><div><br></div><div>$MSG</div><div>"</div><div><br></div><div>Now, just arrange for this to be run on the Xymon client in the Xymon environment, such as from an entry in clientlaunch.cfg, and it should report the IPv6 state for you.</div><div><br></div><div>Cheers</div><div>Jeremy</div><div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr">On Fri, Mar 4, 2016 at 12:50 AM Agege Information Systems, Inc. <<a href="mailto:cs@agege.com">cs@agege.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Greetings,<br>
<br>
I am new to Xymon and I need your help in the following areas.<br>
<br>
                1. How can I modify Xymon column headers in the Dashboard. ( i.e  ssh cpu men).<br>
                2. I am looking for ways to get alerts when ever ipv6 is enable on the servers.<br>
<br>
Thank you for your considerations.<br>
<br>
Best regards,<br>
Agege<br>
_______________________________________________<br>
Xymon mailing list<br>
<a href="mailto:Xymon@xymon.com" target="_blank">Xymon@xymon.com</a><br>
<a href="http://lists.xymon.com/mailman/listinfo/xymon" rel="noreferrer" target="_blank">http://lists.xymon.com/mailman/listinfo/xymon</a><br>
</blockquote></div>