Definitely upgrade to 2.0.2.
There were many fixes between 2.0-RC2 and 2.0.2.
If the problem still persists on 2.0.2, let us know
There were many fixes between 2.0-RC2 and 2.0.2.
If the problem still persists on 2.0.2, let us know
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
storageSize = AgentReadParameter($node, "FileSystem.Total(" . $dci->instance . ")");
if (storageSize == null)
return false;
if (storageSize < 1099511627776) {
// for storageSize under 1TB
if (storageSize < 1073741824) {
// for storageSize under 1GB, 80%
usageThreshold = 80;
} else {
// for storageSize between 1GB and 1TB, 90%
usageThreshold = 90;
}
} else {
// for storageSize above 1TB, 95% threshold
usageThreshold = 95;
}
if ($1 > usageThreshold)
return true;
return false;
return $1/10;

FindObject - Class of node object: 4535 is Node
Type of node object: 2
*** FINISHED ***
// this is a Container
println(classof(FindObject(125)));
// this is a Node
println(classof(FindObject(4528)));
// this is a Container
try {
println(classof(FindNodeObject(null, 125)));
} catch {
println("This error should be displayed, since we are calling classoff(null)");
}
// this is a Node
println(classof(FindNodeObject(null, 4528)));
NetObj
Node
This error should be displayed, since we are calling classoff(null)
Node
*** FINISHED ***