10000 - это timeout, сервер не получил ICMP ECHO reply (или какой-то баг в агенте). Какая система?
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 PostEvent(EVENT_INCORRECT_NETMASK, m_id, "idsaa", pInterface->getId(),
pInterface->getIfIndex(), pInterface->getName(),
pInterface->getIpNetMask(), pSubnet->getIpNetMask());
Quote from: hkusulja on May 08, 2014, 11:36:32 AMQuote from: yshiro on May 08, 2014, 11:14:16 AMHi, thank you for a tip, however as I said, I have already disabled in Event processing policy. The issue is that NetXMS Agents are still generating this Events, and if you look real-time Event monitor, there are lot of them, so I am trying to disable this feature / event log generation for this.
Hi, you can disable it on "Configuration\Event processing Policy" just look for "Generate alarm when incorrect network mask detected on interface" and disable this policy.
Thank you
if (int($node->logMatchCount) > 3) {
$node->logMatchCount = 0;
return true;
}
$node->logMatchCount = int($node->logMatchCount) + 1;
return false;now = time();
if (now - int($node->logLastMatch) > 600 || int($node->logMatchCount) > 3) {
$node->logLastMatch = now;
$node->logMatchCount = 0;
return true;
}
$node->logLastMatch = now;
$node->logMatchCount = int($node->logMatchCount);
return false;