Files
librenms-librenms/html/pages/device/graphs/hrstorage.inc.php
T
Adam Amstrong afdf4fbfc3 replace old hrStorage poller with generic storage poller and hrStorage plugin
*** OLD RRDFILES ARE USELESS NOW***
remove a load of old processor and storage stuff add more % bars to things


git-svn-id: http://www.observium.org/svn/observer/trunk@936 61d68cd4-352d-0410-923a-c4978735b2b8
2010-02-24 02:16:56 +00:00

10 lines
284 B
PHP

<?php
if(mysql_result(mysql_query("SELECT count(storage_id) FROM storage WHERE device_id = '" . $device['device_id'] . "'"),0)) {
$graph_title = "Storage";
$graph_type = "device_hrstorage";
include ("includes/print-device-graph.php");
}
?>