Hi,
I've added additional level mask 256 to match critical events.
Best regards,
Victor
I've added additional level mask 256 to match critical events.
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
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;