mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
16 lines
337 B
PHP
16 lines
337 B
PHP
<?php
|
|
|
|
require_once 'includes/systemd-shared.inc.php';
|
|
|
|
$rrdArray = [];
|
|
$state_type = 'active';
|
|
|
|
foreach ($systemd_mapper[$state_type] as $state_status => $rrd_location) {
|
|
$rrdArray[$state_type][$state_status] = [
|
|
'descr' => $state_status,
|
|
'rrd_location' => $rrd_location,
|
|
];
|
|
}
|
|
|
|
require 'systemd-common.inc.php';
|