Xymon Mailing List Archive search

Tables in hobbit

2 messages in this thread

list Josh Krause · Tue, 29 Jan 2008 08:12:06 -0500 ·
I am trying to find out how to get hobbit to display tables in my test
column.  I have a script I am throwing together and I am trying to find
out how I would need to start off building the script to show tables.  I
would have probably around 8 -10 tables with 4 rows and 4 columns and I
didn't know how to put that into my script in order for it to display it
in hobbit.

 
Thanks in advance,

 
Josh

This E-mail and any of its attachments may contain Time Warner
Cable proprietary information, which is privileged, confidential,
or subject to copyright belonging to Time Warner Cable. This E-mail
is intended solely for the use of the individual or entity to which
it is addressed. If you are not the intended recipient of this
E-mail, you are hereby notified that any dissemination,
distribution, copying, or action taken in relation to the contents
of and attachments to this E-mail is strictly prohibited and may be
unlawful. If you have received this E-mail in error, please notify
the sender immediately and permanently delete the original and any
copy of this E-mail and any printout.
list Henrik Størner · Tue, 29 Jan 2008 15:53:06 +0100 ·
quoted from Josh Krause
On Tue, Jan 29, 2008 at 08:12:06AM -0500, Krause, Josh wrote:
I am trying to find out how to get hobbit to display tables in my test
column.  I have a script I am throwing together and I am trying to find
out how I would need to start off building the script to show tables.
Embed the HTML for your table in the status message. E.g.

$BB $BBDISP "status $MACHINE.mytest green `date`

<table border=1>
<tr><th>Heading 1</th><th>Heading 2</th></tr>
<tr><td>Value 1</td><td>Value 2</td></tr>
<tr><td>Line 2-1</td><td>Line 2-2</td></tr>
</table>
"


Henrik