2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-13 18:00:38 +00:00
Files
xcat-core/xCAT-rmc/resources/sn/IBM.Condition/AnyNodeRealMemFree.pm
linggao a765de7482 more conditons for monitoring
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@8189 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
2010-11-17 18:45:47 +00:00

14 lines
531 B
Perl

#!/usr/bin/perl
$RES::Condition{'AnyNodeRealMemFree'} = {
Name => q(AnyNodeRealMemFree),
ResourceClass => q(IBM.Host),
EventExpression => q(PctRealMemFree < 5),
EventDescription => q(An event is generated when the percentage of real memory that are free falls below 5 percent.),
RearmExpression => q(PctRealMemFree > 10),
RearmDescription => q(The event will be rearmed to be generated again after the percentage of the real free memory exceeds 10 percent.),
ManagementScope => q(4),
Severity => q(1),
};
1;