Files
librenms-librenms/includes/html/graphs/application/zfs_l2_errors.inc.php
Zane C. Bowers-Hadley 3190bdb8b2 add ZFS L2 support (#15095)
* add alerts for ZFS

* add initial l2 bits to the poller for zfs

* more minor tweaks to the ZFS poller

* more zfs bits

* add new ZFS graphs

* begin adding L2 stuff

* add linux_zfs-v3 bits

* update zfs app page

* style fix

* update the data for the zfs legacy test

* test update for zfs v1

* fix some zfs tests

* more zfs v3 test cleanup

* another zfs v3 test data fix

* more zfs v3 test data cleanup

* more test tweaks
2023-06-11 16:32:28 +02:00

16 lines
356 B
PHP

<?php
$name = 'zfs';
$unit_text = 'Errors/Second';
$colours = 'psychedelic';
$descr = 'L2 Errors';
$ds = 'l2_errors';
$filename = Rrd::name($device['hostname'], ['app', $name, $app->app_id, '_____group2']);
if (! Rrd::checkRrdExists($filename)) {
d_echo('RRD "' . $filename . '" not found');
}
require 'includes/html/graphs/generic_stats.inc.php';