mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
9 lines
208 B
PHP
9 lines
208 B
PHP
<?php
|
|
|
|
if (is_file($config['rrd_dir'].'/'.$device['hostname'].'/ucd_mem.rrd')) {
|
|
$graph_title = 'Memory Utilisation';
|
|
$graph_type = 'device_memory';
|
|
|
|
include 'includes/print-device-graph.php';
|
|
}
|