mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* 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
16 lines
356 B
PHP
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';
|