mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Rebasing
This commit is contained in:
@ -3,7 +3,12 @@
|
||||
if (is_numeric($vars['id']) && ($auth || application_permitted($vars['id']))) {
|
||||
$app = get_application_by_id($vars['id']);
|
||||
$device = device_by_id_cache($app['device_id']);
|
||||
$title = generate_device_link($device);
|
||||
$title .= $graph_subtype;
|
||||
if ($app['app_type'] != 'proxmox') {
|
||||
$title = generate_device_link($device);
|
||||
$title .= $graph_subtype;
|
||||
}
|
||||
else {
|
||||
$title = $vars['port'].'@'.$vars['hostname'].' on '.generate_device_link($device);
|
||||
}
|
||||
$auth = true;
|
||||
}
|
||||
|
30
html/includes/graphs/application/proxmox_traffic.inc.php
Normal file
30
html/includes/graphs/application/proxmox_traffic.inc.php
Normal file
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* Copyright (C) 2015 Mark Schouten <mark@tuxis.nl>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; version 2 dated June,
|
||||
* 1991.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* See http://www.gnu.org/licenses/gpl.txt for the full license
|
||||
*/
|
||||
|
||||
require 'includes/graphs/common.inc.php';
|
||||
|
||||
$proxmox_rrd = $config['rrd_dir'].'/proxmox/'.$vars['cluster'].'/'.$vars['vmid'].'_netif_'.$vars['port'].'.rrd';
|
||||
|
||||
if (is_file($proxmox_rrd)) {
|
||||
$rrd_filename = $proxmox_rrd;
|
||||
}
|
||||
|
||||
$ds_in = 'INOCTETS';
|
||||
$ds_out = 'OUTOCTETS';
|
||||
|
||||
require 'includes/graphs/generic_data.inc.php';
|
@ -103,3 +103,7 @@ else {
|
||||
}
|
||||
|
||||
$rrd_options .= ' --font-render-mode normal';
|
||||
|
||||
if (isset($_GET['absolute']) && $_GET['absolute'] == "1") {
|
||||
$rrd_options .= ' --full-size-mode';
|
||||
}
|
||||
|
Reference in New Issue
Block a user