blob: 18d83139be2c1e26212a5cc27958b8590104c92f (
plain)
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
|
<?php
include_once 'conf/common.inc.php';
include_once 'inc/collectd.inc.php';
require_once 'inc/html.inc.php';
html_start();
$h = array();
# show all categorized hosts
if (is_array($CONFIG['cat'])) {
foreach($CONFIG['cat'] as $cat => $hosts) {
printf("<h2>%s</h2>\n", $cat);
host_summary($hosts);
$h = array_merge($h, $hosts);
}
}
# search for uncategorized hosts
if(!$chosts = collectd_hosts())
printf('<p class="warn">Error: No Collectd hosts found in <em>%s</em></p>', $CONFIG['datadir']);
$uhosts = array_diff($chosts, $h);
# show all uncategorized hosts
if ($uhosts) {
echo "<h2>uncategorized</h2>\n";
host_summary($uhosts);
}
html_end();
?>
|