Hi,
try to upgrade to 2.0-M4 which is just released.
Best regards,
Victor
try to upgrade to 2.0-M4 which is just released.
Best regards,
Victor
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
snmp = CreateSNMPTransport($node);
if (snmp == null)
return 0;
varbinds = SNMPWalk(snmp, ".1.3.6.1.2.1.25.3.3.1.2");
if (varbinds == null)
return 0;
count = 0;
total = 0;
foreach(v : varbinds)
{
total += v->value;
count++;
}
return (count > 0) ? total / count : 0;
if ($1 =~ "[:/]") {
value = AgentReadParameter($node, "FileSystem.Total(" . $1 . ")")
return (value > 5*1024*1024*1024 && value < 1*1024*1024*1024*1024);
}
return false;
if ($1 ~= "[:/]") {
value = AgentReadParameter($node, "FileSystem.Total(" . $1 . ")");
return (value > 5*1024*1024*1024 && value < 1*1024*1024*1024*1024);
}
return false;