root/trunk/web/perf/perfsys.php @ 126

Revision 120, 0.6 KB (checked in by andreu, 13 years ago)

first monitoring web site

Line 
1<?php
2include ('./var.php');
3
4print "    <div id=\"contenu\">\n";
5
6print "     <h2>Performances of your system</h2>\n";
7print "     <p>Graphics are updated all 5 minutes. </p>\n";
8
9print "     <h3>CPU Usage</h3>\n";
10print "         <img src=\"$CPUTOTAL\">\n";
11
12print "     <h3>Load average</h3>\n";
13print "         <img src=\"$LOADAVERAGE\">\n";
14
15print "     <h3>CPU Detail</h3>\n";
16print "         <img src=\"$CPU0\" alt=\"$CPU0\">\n";
17print "         <img src=\"$CPU1\">\n";
18print "         <img src=\"$CPU2\" alt=$CPU2>\n";
19print "         <img src=\"$CPU3\">\n";
20
21print "    </div>\n";
22
23?>
Note: See TracBrowser for help on using the browser.