mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Fix invalid paths introduced in librenms/librenms#9883 (#11337)
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
$rrd_filename = rrd_name($device['hostname'], 'bigip_system_client_concurrent_connections');
|
$rrd_filename = rrd_name($device['hostname'], 'bigip_system_client_concurrent_connections');
|
||||||
|
|
||||||
require 'includes/graphs/common.inc.php';
|
require 'includes/html/graphs/common.inc.php';
|
||||||
|
|
||||||
$ds = 'ClientCurConns';
|
$ds = 'ClientCurConns';
|
||||||
|
|
||||||
@@ -16,4 +16,4 @@ $graph_min = 0;
|
|||||||
|
|
||||||
$unit_text = 'Active connections';
|
$unit_text = 'Active connections';
|
||||||
|
|
||||||
require 'includes/graphs/generic_simplex.inc.php';
|
require 'includes/html/graphs/generic_simplex.inc.php';
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
$rrd_filename = rrd_name($device['hostname'], 'bigip_system_client_connection_rate');
|
$rrd_filename = rrd_name($device['hostname'], 'bigip_system_client_connection_rate');
|
||||||
|
|
||||||
require 'includes/graphs/common.inc.php';
|
require 'includes/html/graphs/common.inc.php';
|
||||||
|
|
||||||
$ds = 'ClientTotConns';
|
$ds = 'ClientTotConns';
|
||||||
|
|
||||||
@@ -16,4 +16,4 @@ $graph_min = 0;
|
|||||||
|
|
||||||
$unit_text = 'Connection Rate';
|
$unit_text = 'Connection Rate';
|
||||||
|
|
||||||
require 'includes/graphs/generic_simplex.inc.php';
|
require 'includes/html/graphs/generic_simplex.inc.php';
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
$rrd_filename = rrd_name($device['hostname'], 'bigip_system_server_concurrent_connections');
|
$rrd_filename = rrd_name($device['hostname'], 'bigip_system_server_concurrent_connections');
|
||||||
|
|
||||||
require 'includes/graphs/common.inc.php';
|
require 'includes/html/graphs/common.inc.php';
|
||||||
|
|
||||||
$ds = 'ServerCurConns';
|
$ds = 'ServerCurConns';
|
||||||
|
|
||||||
@@ -16,4 +16,4 @@ $graph_min = 0;
|
|||||||
|
|
||||||
$unit_text = 'Active connections';
|
$unit_text = 'Active connections';
|
||||||
|
|
||||||
require 'includes/graphs/generic_simplex.inc.php';
|
require 'includes/html/graphs/generic_simplex.inc.php';
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
$rrd_filename = rrd_name($device['hostname'], 'bigip_system_server_connection_rate');
|
$rrd_filename = rrd_name($device['hostname'], 'bigip_system_server_connection_rate');
|
||||||
|
|
||||||
require 'includes/graphs/common.inc.php';
|
require 'includes/html/graphs/common.inc.php';
|
||||||
|
|
||||||
$ds = 'ServerTotConns';
|
$ds = 'ServerTotConns';
|
||||||
|
|
||||||
@@ -16,4 +16,4 @@ $graph_min = 0;
|
|||||||
|
|
||||||
$unit_text = 'Connection Rate';
|
$unit_text = 'Connection Rate';
|
||||||
|
|
||||||
require 'includes/graphs/generic_simplex.inc.php';
|
require 'includes/html/graphs/generic_simplex.inc.php';
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
|
||||||
require 'includes/graphs/common.inc.php';
|
require 'includes/html/graphs/common.inc.php';
|
||||||
|
|
||||||
$scale_min = '0';
|
$scale_min = '0';
|
||||||
$descr = rrdtool_escape('SSL TPS');
|
$descr = rrdtool_escape('SSL TPS');
|
||||||
|
Reference in New Issue
Block a user