2016-09-07 02:19:10 +10:00
|
|
|
<div class="panel-heading">
|
|
|
|
|
<h3 class="panel-title">Average Latency One Way</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="panel-body">
|
|
|
|
|
<?php
|
|
|
|
|
$graph_array = array();
|
|
|
|
|
$graph_array['device'] = $device['device_id'];
|
|
|
|
|
$graph_array['height'] = '100';
|
|
|
|
|
$graph_array['width'] = '215';
|
2019-06-23 00:29:12 -05:00
|
|
|
$graph_array['to'] = \LibreNMS\Config::get('time.now');
|
2016-09-07 02:19:10 +10:00
|
|
|
$graph_array['type'] = 'device_sla_icmpjitter_latency';
|
|
|
|
|
$graph_array['id'] = $vars['id'];
|
2019-04-11 23:26:42 -05:00
|
|
|
require 'includes/html/print-graphrow.inc.php';
|
2016-09-07 02:19:10 +10:00
|
|
|
?>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="panel-heading">
|
|
|
|
|
<h3 class="panel-title">Average Jitter</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="panel-body">
|
|
|
|
|
<?php
|
|
|
|
|
$graph_array = array();
|
|
|
|
|
$graph_array['device'] = $device['device_id'];
|
|
|
|
|
$graph_array['height'] = '100';
|
|
|
|
|
$graph_array['width'] = '215';
|
2019-06-23 00:29:12 -05:00
|
|
|
$graph_array['to'] = \LibreNMS\Config::get('time.now');
|
2016-09-07 02:19:10 +10:00
|
|
|
$graph_array['type'] = 'device_sla_icmpjitter_jitter';
|
|
|
|
|
$graph_array['id'] = $vars['id'];
|
2019-04-11 23:26:42 -05:00
|
|
|
require 'includes/html/print-graphrow.inc.php';
|
2016-09-07 02:19:10 +10:00
|
|
|
?>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="panel-heading">
|
|
|
|
|
<h3 class="panel-title">Packet Out of Sequence</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="panel-body">
|
|
|
|
|
<?php
|
|
|
|
|
$graph_array = array();
|
|
|
|
|
$graph_array['device'] = $device['device_id'];
|
|
|
|
|
$graph_array['height'] = '100';
|
|
|
|
|
$graph_array['width'] = '215';
|
2019-06-23 00:29:12 -05:00
|
|
|
$graph_array['to'] = \LibreNMS\Config::get('time.now');
|
2016-09-07 02:19:10 +10:00
|
|
|
$graph_array['type'] = 'device_sla_icmpjitter_oos';
|
|
|
|
|
$graph_array['id'] = $vars['id'];
|
2019-04-11 23:26:42 -05:00
|
|
|
require 'includes/html/print-graphrow.inc.php';
|
2016-09-07 02:19:10 +10:00
|
|
|
?>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="panel-heading">
|
|
|
|
|
<h3 class="panel-title">Lost Packets (Loss, Skipped, Late Arrival)</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="panel-body">
|
|
|
|
|
<?php
|
|
|
|
|
$graph_array = array();
|
|
|
|
|
$graph_array['device'] = $device['device_id'];
|
|
|
|
|
$graph_array['height'] = '100';
|
|
|
|
|
$graph_array['width'] = '215';
|
2019-06-23 00:29:12 -05:00
|
|
|
$graph_array['to'] = \LibreNMS\Config::get('time.now');
|
2016-09-07 02:19:10 +10:00
|
|
|
$graph_array['type'] = 'device_sla_icmpjitter_lost';
|
|
|
|
|
$graph_array['id'] = $vars['id'];
|
2019-04-11 23:26:42 -05:00
|
|
|
require 'includes/html/print-graphrow.inc.php';
|
2016-09-07 02:19:10 +10:00
|
|
|
?>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="panel-heading">
|
|
|
|
|
<h3 class="panel-title">Inter-Arrival Jitter (RFC 1889)</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="panel-body">
|
|
|
|
|
<?php
|
|
|
|
|
$graph_array = array();
|
|
|
|
|
$graph_array['device'] = $device['device_id'];
|
|
|
|
|
$graph_array['height'] = '100';
|
|
|
|
|
$graph_array['width'] = '215';
|
2019-06-23 00:29:12 -05:00
|
|
|
$graph_array['to'] = \LibreNMS\Config::get('time.now');
|
2016-09-07 02:19:10 +10:00
|
|
|
$graph_array['type'] = 'device_sla_icmpjitter_iajitter';
|
|
|
|
|
$graph_array['id'] = $vars['id'];
|
2019-04-11 23:26:42 -05:00
|
|
|
require 'includes/html/print-graphrow.inc.php';
|
2016-09-07 02:19:10 +10:00
|
|
|
?>
|
|
|
|
|
</div>
|