mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-18 00:14:54 +02:00
git-svn-id: http://www.observium.org/svn/observer/trunk@380 61d68cd4-352d-0410-923a-c4978735b2b8
17 lines
611 B
PHP
17 lines
611 B
PHP
<?php
|
|
echo("
|
|
<div style='float: right; text-align: right;'>
|
|
<a href='".$config['base_url']."/device/" . $device['device_id'] . "/ifgraphs/bits/'>Bits</a> |
|
|
<a href='".$config['base_url']."/device/" . $device['device_id'] . "/ifgraphs/pkts/'>Packets</a> |
|
|
<a href='".$config['base_url']."/device/" . $device['device_id'] . "/ifgraphs/nupkts/'>NU Packets</a> |
|
|
<a href='".$config['base_url']."/device/" . $device['device_id'] . "/ifgraphs/errors/'>Errors</a>
|
|
</div>");
|
|
|
|
$dographs = 1;
|
|
|
|
if($_GET['opta']) { $graph_type = $_GET['opta']; } else { $graph_type = "bits"; }
|
|
|
|
include("pages/device/ifs.inc.php");
|
|
|
|
?>
|