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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<?php
require_once 'conf/common.inc.php';
require_once 'inc/functions.inc.php';
require_once 'inc/html.inc.php';
require_once 'inc/collectd.inc.php';
# use width/height from config if nothing is given
if (empty($_GET['x']))
$_GET['x'] = $CONFIG['detail-width'];
if (empty($_GET['y']))
$_GET['y'] = $CONFIG['detail-height'];
$host = validate_get(GET('h'), 'host');
$plugin = validate_get(GET('p'), 'plugin');
$pinstance = validate_get(GET('pi'), 'pinstance');
$category = validate_get(GET('c'), 'category');
$type = validate_get(GET('t'), 'type');
$tinstance = validate_get(GET('ti'), 'tinstance');
$seconds = GET('s');
$selected_plugins = !$plugin ? $CONFIG['overview'] : array($plugin);
html_start();
printf('<fieldset id="%s">', $host);
printf('<legend>%s</legend>', $host);
$plugins = collectd_plugins($host);
if(!$plugins) {
echo "Unknown host\n";
return false;
}
plugins_list($host, $selected_plugins);
echo '<div class="graphs">';
plugin_header($host, $plugin);
$args = $_GET;
print '<ul class="time-range">' . "\n";
foreach($CONFIG['term'] as $key => $s) {
$args['s'] = $s;
$selected = selected_timerange($seconds, $s);
printf('<li><a %s href="%s%s">%s</a></li>'."\n",
$selected, $CONFIG['weburl'], build_url('detail.php', $args), $key);
}
print "</ul>\n";
if ($CONFIG['graph_type'] == 'canvas') {
chdir($CONFIG['webdir']);
include $CONFIG['webdir'].'/plugin/'.$plugin.'.php';
} else {
printf('<img src="%s%s">'."\n", $CONFIG['weburl'], build_url('graph.php', $_GET));
}
echo '</div>';
echo "</fieldset>\n";
html_end();
?>
|