We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9402f7d commit 8b538cfCopy full SHA for 8b538cf
server/mods-available/monitor_core_module.inc.php
@@ -469,7 +469,7 @@ function monitorDiskUsage() {
469
$usePercent = floatval($data[$i]['percent']);
470
471
//* We dont want to check the cdrom drive as a cd / dvd is always 100% full
472
- if($data[$i]['type'] != 'iso9660' && $data[$i]['type'] != 'cramfs' && $data[$i]['type'] != 'udf') {
+ if($data[$i]['type'] != 'iso9660' && $data[$i]['type'] != 'cramfs' && $data[$i]['type'] != 'udf' && $data[$i]['type'] != 'tmpfs' && $data[$i]['type'] != 'devtmpfs') {
473
if ($usePercent > 75) $state = $this->_setState($state, 'info');
474
if ($usePercent > 80) $state = $this->_setState($state, 'warning');
475
if ($usePercent > 90) $state = $this->_setState($state, 'critical');
0 commit comments