Revision 120, 1.0 KB
(checked in by andreu, 13 years ago)
|
first monitoring web site
|
Rev | Line | |
---|
[120] | 1 | <?php |
---|
| 2 | |
---|
| 3 | print " <div id=\"contenu\">\n"; |
---|
| 4 | print " <h2>RENETCOL Performances</h2>\n"; |
---|
| 5 | print " <p>Each graphic is updated all 5 minutes. </p>\n"; |
---|
| 6 | print " <h3>Graphics from RRD files</h3>\n"; |
---|
| 7 | |
---|
| 8 | print "<p>Number of flow analysed by your collector (per second):</p>\n"; |
---|
| 9 | print " <img src=\"./img_monitoring/RENETCOL_RealflowNb_day.png\">\n"; |
---|
| 10 | print "<p>Number of flow not decoded or dropped by your collector (per second):</p>\n"; |
---|
| 11 | print " <img src=\"./img_monitoring/RENETCOL_DropFlow_day.png\">\n"; |
---|
| 12 | print "<p>Number of IP packet recieved by your collector (per second):</p>\n"; |
---|
| 13 | print " <img src=\"./img_monitoring/RENETCOL_ipPacketNb_day.png\">\n"; |
---|
| 14 | print "<p>Number of NetFlow Data exported in v9 format (per second). In one v9 contener we have about 28 flows:</p>\n"; |
---|
| 15 | print " <img src=\"./img_monitoring/RENETCOL_v9PacketNb_day.png\">\n"; |
---|
| 16 | print "<p>Number of desequencement observed in NetFlow Data Export (NDE):</p>\n"; |
---|
| 17 | print " <img src=\"./img_monitoring/RENETCOL_v9UnSeqNb_day.png\">\n"; |
---|
| 18 | |
---|
| 19 | print " </div>\n"; |
---|
| 20 | |
---|
| 21 | ?> |
---|