2014-09-29 23:03:59 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* LibreNMS
|
|
|
|
*
|
|
|
|
* Copyright (c) 2014 Neil Lathwood <https://github.com/laf/ http://www.lathwood.co.uk/fa>
|
|
|
|
*
|
|
|
|
* 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, either version 3 of the License, or (at your
|
|
|
|
* option) any later version. Please see LICENSE.txt at the top level of
|
|
|
|
* the source code distribution for details.
|
|
|
|
*/
|
|
|
|
|
2024-04-18 09:57:01 -05:00
|
|
|
$filename = Rrd::name($device['hostname'], 'icmp-perf');
|
2020-05-21 21:04:54 -03:00
|
|
|
|
2023-02-28 18:00:13 -06:00
|
|
|
$descr = 'Milliseconds';
|
2024-04-18 09:57:01 -05:00
|
|
|
$ds = 'avg';
|
2023-04-20 22:30:32 -05:00
|
|
|
$scale_min = 0;
|
2014-09-29 23:03:59 +01:00
|
|
|
|
2023-02-28 18:00:13 -06:00
|
|
|
require 'includes/html/graphs/generic_stats.inc.php';
|