mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Use data_update instead of rrd_update/rrd_create and influx_update Centralize rrd file check so we can check against a remote rrdcached server too Use rrd_name() to generate rrd file names
6 lines
136 B
PHP
6 lines
136 B
PHP
<?php
|
|
$rrd = rrd_name($device['hostname'], array('app', 'memcached', $app['app_id']));
|
|
if (is_file($rrd)) {
|
|
$rrd_filename = $rrd;
|
|
}
|