Files
librenms-librenms/includes/html/graphs/application/systemd_load.inc.php
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
335 B
PHP
Raw Normal View History

2022-10-30 12:18:02 -07:00
<?php
require_once 'includes/systemd-shared.inc.php';
$rrdArray = [];
$state_type = 'load';
foreach ($systemd_mapper[$state_type] as $state_status => $rrd_location) {
$rrdArray[$state_type][$state_status] = [
'descr' => $state_status,
'rrd_location' => $rrd_location,
];
2022-10-30 12:18:02 -07:00
}
require 'systemd-common.inc.php';