Remove c3kxbar (#16304)

it is very old and there is no test data for it
Could be easily added back if someone still uses it
This commit is contained in:
Tony Murray
2024-08-20 09:01:07 -05:00
committed by GitHub
parent 39ca9eb25c
commit 343a979f5c
6 changed files with 0 additions and 189 deletions

View File

@@ -1,14 +0,0 @@
<?php
require 'includes/html/graphs/device/auth.inc.php';
if ($auth && is_numeric($vars['mod']) && is_numeric($vars['chan'])) {
$entity = dbFetchRow('SELECT * FROM entPhysical WHERE device_id = ? AND entPhysicalIndex = ?', [$device['device_id'], $vars['mod']]);
$title .= ' :: ' . $entity['entPhysicalName'];
$title .= ' :: Fabric ' . $vars['chan'];
$graph_title = DeviceCache::get($device['device_id'])->shortDisplayName() . '::' . $entity['entPhysicalName'] . '::Fabric' . $vars['chan'];
$rrd_filename = Rrd::name($device['hostname'], ['c6kxbar', $vars['mod'], $vars['chan']]);
}

View File

@@ -1,17 +0,0 @@
<?php
$ds_in = 'inutil';
$ds_out = 'oututil';
$colour_area_in = 'AA66AA';
$colour_line_in = '330033';
$colour_area_out = 'FFDD88';
$colour_line_out = 'FF6600';
$colour_area_in_max = 'cc88cc';
$colour_area_out_max = 'FFefaa';
$graph_max = 1;
$unit_text = 'Percent';
require 'includes/html/graphs/generic_duplex.inc.php';