Автоматическое обнаружение в такой ситуации будет работать только если создать отдельную зону и указать агент как прокси этой зоны.
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
$node->enableRoutingTablePolling(false);
SeverityFilter = 0x012
SeverityFilter = Warning,Error
result = new Table();
result->addColumn("sysName", DCI::STRING, "System Name", true);
result->addColumn("description", DCI::STRING, "Description", true);
result->addColumn("value", DCI::FLOAT, "Value");
for (node : GetAllNodes())
{
for(dci : FindAllDCIs(node, null, "*latency*"))
{
value = GetDCIValue(node, dci->id);
if (value != null)
{
row = result->addRow();
result->set(row, 0, node->snmpSysName);
result->set(row, 1, dci->description);
result->set(row, 2, value);
}
}
}
return result;
t = localtime($event->timestamp);
return t->hour >= 0 and t->hour < 8;