mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
3190bdb8b2
* 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
30 lines
686 B
PHP
30 lines
686 B
PHP
<?php
|
|
|
|
$name = 'zfs';
|
|
$unit_text = 'Bytes';
|
|
$colours = 'psychedelic';
|
|
$dostack = 0;
|
|
$printtotal = 0;
|
|
$addarea = 1;
|
|
$transparency = 15;
|
|
|
|
$rrd_filename = Rrd::name($device['hostname'], ['app', $name, $app->app_id, '_____group2']);
|
|
|
|
$rrd_list = [];
|
|
if (Rrd::checkRrdExists($rrd_filename)) {
|
|
$rrd_list[] = [
|
|
'filename' => $rrd_filename,
|
|
'descr' => 'L2 Write',
|
|
'ds' => 'l2_write_bytes',
|
|
];
|
|
$rrd_list[] = [
|
|
'filename' => $rrd_filename,
|
|
'descr' => 'L2 Read',
|
|
'ds' => 'l2_read_bytes',
|
|
];
|
|
} else {
|
|
d_echo('RRD "' . $rrd_filename . '" not found');
|
|
}
|
|
|
|
require 'includes/html/graphs/generic_multi_line.inc.php';
|