forked from proche-rainmaker/phplicensewatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
monitor.php
30 lines (24 loc) · 873 Bytes
/
monitor.php
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
<?php
require_once("common.php");
print_header("License Monitor Graphs");
?>
</head><body>
<h1>License monitoring</h1>
<p class="a_centre"><a href="admin.php"><img src="back.jpg" alt="up page"/></a></p>
<hr/>
<p>Following links will show the license usage for different tools. Data is being collected every <?php echo($collection_interval); ?> minutes.</p>
<p>Features (click on link to show past usage):</p>
<ul>
<?php
#############################################################
# Print out the list of tools we are showing statistics
#############################################################
for ( $i = 0 ; $i < sizeof($monitor_license); $i++ ) {
echo ('<li><a href="feature_monitor.php?feature=' . $monitor_license[$i]["feature"] . '">' . $monitor_license[$i]["description"] . '</a></li>');
}
?>
</ul>
<?php
include_once('./version.php');
?>
</body></html>