Hi,
the issue with current alert is that it is evaluated separatelly for each router. Each of them has probably number less than 6000, so the alert is triggered.
I would recommend to create 3 separate UnDPs pollers for this OID for each router. Assign each of them only to single router. (For example cEigrpNbrCountNameOfRouter1, cEigrpNbrCountNameOfRouter2, cEigrpNbrCountNameOfRouter3)
- Than create transformed poller(Transform result) that will sumarize these 3 pollers into one. (For example cEigrpNbrCountSUM)
- Make sure that polling interval for transformed poller is the same as for all 3 pollers.
- Forumula for transformation will look like
{cEigrpNbrCountNameOfRouter1}+{cEigrpNbrCountNameOfRouter2}+{cEigrpNbrCountNameOfRouter3}
- Assign transformed poller to all 3 nodes together.
Finally create alert for transformed poller (cEigrpNbrCountSUM). And you may also create graph for this sumarized poller.
Roman