mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
git-svn-id: http://www.observium.org/svn/observer/trunk@2340 61d68cd4-352d-0410-923a-c4978735b2b8
63 lines
2.3 KiB
PHP
63 lines
2.3 KiB
PHP
<?php
|
|
|
|
if ($ports['total'])
|
|
{
|
|
echo('<div style="background-color: #eeeeee; margin: 5px; padding: 5px;">');
|
|
|
|
$graph_array['height'] = "100";
|
|
$graph_array['width'] = "490";
|
|
$graph_array['to'] = $now;
|
|
$graph_array['id'] = $device['device_id'];
|
|
$graph_array['type'] = "device_bits";
|
|
$graph_array['from'] = $day;
|
|
$graph_array['legend'] = "no";
|
|
$graph = generate_graph_tag($graph_array);
|
|
|
|
$content = "<div class=list-large>".$device['hostname']." - Device Traffic</div>";
|
|
$content .= "<div style=\'width: 850px\'>";
|
|
$graph_array['legend'] = "yes";
|
|
$graph_array['width'] = "340";
|
|
$graph_array['from'] = $config['time']['day'];
|
|
$content .= generate_graph_tag($graph_array);
|
|
$graph_array['from'] = $config['time']['week'];
|
|
$content .= generate_graph_tag($graph_array);
|
|
$graph_array['from'] = $config['time']['month'];
|
|
$content .= generate_graph_tag($graph_array);
|
|
$graph_array['from'] = $config['time']['year'];
|
|
$content .= generate_graph_tag($graph_array);
|
|
$content .= "</div>";
|
|
|
|
$link = $config['base_url'] . "/graphs/" . $graph_array['id'] . "/" . $graph_array['type'] . "/" . $day . "/" . $config['now'] . "/";
|
|
|
|
echo(overlib_link($link, $graph, $content, NULL));
|
|
|
|
echo(' <div style="height: 5px;"></div>');
|
|
|
|
echo(' <table class="tablehead" cellpadding="2" cellspacing="0" width="100%">
|
|
<tr bgcolor="' . $ports_colour . '" align="center"><td></td>
|
|
<td width="25%"><img src="images/16/connect.png" align="absmiddle"> ' . $ports['total'] . '</td>
|
|
<td width="25%" class="green"><img src="images/16/if-connect.png" align="absmiddle"> ' . $ports['up'] . '</td>
|
|
<td width="25%" class="red"><img src="images/16/if-disconnect.png" align="absmiddle"> ' . $ports['down'] . '</td>
|
|
<td width="25%" class="grey"><img src="images/16/if-disable.png" align="absmiddle"> ' . $ports['disabled'] . '</td>
|
|
</tr>
|
|
</table>');
|
|
|
|
echo(' <div style="margin: 8px; font-size: 11px; font-weight: bold;">');
|
|
|
|
$ifsep = "";
|
|
|
|
foreach (dbFetchRows("SELECT * FROM `ports` WHERE device_id = ? AND `deleted` != '1'", array($device['device_id'])) as $data)
|
|
{
|
|
$data = ifNameDescr($data);
|
|
$data = array_merge($data, $device);
|
|
echo("$ifsep" . generate_port_link($data, makeshortif(strtolower($data['label']))));
|
|
$ifsep = ", ";
|
|
}
|
|
|
|
unset($ifsep);
|
|
echo(" </div>");
|
|
echo("</div>");
|
|
}
|
|
|
|
?>
|