I wrote my own external Hobbit script to provide a more detailed SMS output, but is still shorter than the regular email alerts.  It's really short, so I've copy/pasted it below:<br><br><SCRIPT><br>#!/bin/bash
<br><br>msg=`echo "${BBALPHAMSG}" | egrep "&yellow|&red"`<br>msg="\n${msg}"<br><br># CODE:<br>#=======<br>subject="!HB ${ACKCODE}"<br>alert="${BBHOSTSVC} ${BBCOLORLEVEL}"
<br>message="\n${alert}${msg}"<br><br>echo -e "${message}" | mail -s "${subject}" $RCPT<br></SCRIPT><br><br>To use this, you replace <br>MAIL [recipients] [flags]<br>with<br>SCRIPT [hobbit home]/server/ext/oursms [recipients] [flags]
<br><br>where "[hobbit home]" is the Hobbit home directory, and "oursms" is the name of the script above.  You can of course name it whatever you want.<br><br>Essentially, this does what FORMAT=SMS does, except that it also displays the items that are red.  Also, if you use the above script, make sure you don't include FORMAT=SMS.
<br><br><br><div><span class="gmail_quote"></span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hello,<br><br>I am rolling my monitoring over to sending email text messages to cell
<br>phones using the SMS format option.<br>This works great :-)<br><br>but.......<br>Some of the users would like some more information in the message, how<br>can I include some additional parameters...<br>Specifically, when i am using DEVMON and the if_stat monitor status. It
<br>comes in the normal email formatting, but not in SMS.<br><br>thanks, michael<br><br><br>--<br><br>Michael A. Price<br>Performance Network Engineering<br>NASA/GSFC Code 440.8/LMB<br>Greenbelt, Maryland 20770<br>            Phone:  240-684-1356
<br>            Cell:   410-507-7476<br>            e-mail: <a href="mailto:mprice@hst.nasa.gov">mprice@hst.nasa.gov</a><br>----------------------------------------------<br><br><br>To unsubscribe from the hobbit list, send an e-mail to
<br><a href="mailto:hobbit-unsubscribe@hswn.dk">hobbit-unsubscribe@hswn.dk</a><br><br><br></blockquote></div><br>