check_centreon_snmp_remote_storage大硬盘返回负数修复方法

参考  http://forge.centreon.com/issues/1223

编辑check_centreon_snmp_remote_storage的perl文件。
查找

$tot = $Size * $AllocationUnits;

在这行的上面添加

if ($Size < 0){$Size += 2**32;}

查找

$used = $Used * $AllocationUnits;

在这行的上面添加

if ($Used < 0){$Used += 2**32;}

如图

你可能感兴趣的:(remote)