1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<META NAME="Title" CONTENT="SMS Server Tools 3">
<META NAME="Robots" CONTENT="INDEX,FOLLOW">
<META NAME="Language" CONTENT="English">
<title>SMS Server Tools 3</title>
<STYLE type="text/css">
h3 {
background-color: #DCDCFE;
}
blockquote {
background-color: #FFD;
font-size: 90%;
padding:5pt;
padding-top:1pt;
margin-bottom:5pt;
border-style: outset;
border-color: #aaaa99;
border-width: 0.05pt 2pt 2pt 0.05pt;
}
blockquote p:first-letter {
font-size: 110%;
font-weight: bold;
color: red;
}
</STYLE>
</head>
<body>
<h2><font color=blue>SMS Server Tools 3</font></h2>
<a href="index.html">Home</a>
<h3>Status monitor</h3>
<!-- START --><p>
This function is disabled by default. You need to install the <a href="http://www.ossp.org/" target="_blank">OSSP mm Shared Memory Library</a>, also called mm or libmm. Then you need to enable statistics in src/Makefile and recompile the source code.
<p>
The status monitor is a text that smsd writes every second to stdout. This is normally your console but you can redirect it
to any device or file.
<p>
The status monitor shows you what your modems are actually doing.
Each character represents one modem. The first one is the first
modem in your config file.
<p>
The status may be:
<p>
s = sending<br>
r = receiving (or checking received SM)<br>
i = idle<br>
b = blocked (after multiple errors)<br>
- = not configured<br>
<p>
Example:
<p>
<font face="Courier New, Courier, monospace">
iiiriisssisss---<br>
iiiriisssisss---<br>
rriiiiissisis---<br>
rriiiiiiiiiii---<br>
iiiiiiiiiiiir---<br>
</font>
<p>
Run smsd with the option -s if you want the status monitor. This works only if you run the program in a
shell window. Do not use -s if you run the program in background.
<blockquote><p>
The <a href="book.html" target="_blank">book</a> describes, how to add a status monitor when the program runs in background and
how to create a beautiful coloured statusmonitor that you can watch in a webbrowser.
</p></blockquote>
</body>
</html>
|