Revision 120, 481 bytes
(checked in by andreu, 13 years ago)
|
first monitoring web site
|
Line | |
---|
1 | <?php |
---|
2 | |
---|
3 | print " <div id=\"contenu\">\n"; |
---|
4 | print " <h2>State of your collector</h2>\n"; |
---|
5 | print " <p>Graphics are updated all 5 minutes. </p>\n"; |
---|
6 | print " <h3>Number of flow analysed by your collector (per second)</h3>\n"; |
---|
7 | print " <img src=\"./img_monitoring/RENETCOL_RealflowNb_day.png\">\n"; |
---|
8 | print " <h3>CPU Usage</h3>\n"; |
---|
9 | print " <img src=\"$CPUTOTAL\">\n"; |
---|
10 | print " <h3>Load average</h3>\n"; |
---|
11 | print " <img src=\"$LOADAVERAGE\">\n"; |
---|
12 | |
---|
13 | |
---|
14 | print " </div>\n"; |
---|
15 | |
---|
16 | ?> |
---|