"Host.storage.logicalDisks where ((host.os.type = "Windows") AND (totalSpace > 512))"
"totalSpace" being the metric to scope out small drives
Workaround
Apply the following code in the rule condition queries (depending on the number of active severities)
def totalSpace = ...;
if (totalSpace < 512) {
return false;
}
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center