Hi All,
I have an issue with Orion NPM that is giving me headaches for a few weeks (I am using v10SP1, issue was the same with v9.5).
I have defined status polling interval to 60s for all my nodes, but I keep getting only one response time value every 3mn in the database.
This is what I get when I do a request in the DB for a random node :
SELECT PollInterval FROM Nodes where NodeID = 3100;
60
Select top 5 datetime from ResponseTime_Detail where NodeID = 3100 order by datetime desc;
2010-12-29 23:03:31.997
2010-12-29 23:00:31.997
2010-12-29 22:57:17.000
2010-12-29 22:54:15.000
2010-12-29 22:51:18.000
I can see in the database how it happens, but I cant explain it :
1) At t=0, a poll is done. The "NextPoll" value for that node is changed to t+1mn.
2) At t+1mn nothing happens.
3) At t+2mn still nothing, but the "NextPoll" value is changed again to one minute in the future (so t+3mn)
4) At t+3mn, the poll is done (and so on).
Processor use on polling engine never go above 25%, and disk queue on DB server stays ridiculously low. Polling completion is over 99%.
I have 6k6 "pollable" items (nodes, volumes, interfaces), which would require 6600/60=110 polls per second, and i use 186 pps (recommended values of pps tuner tool).
I dont know what to do anymore, I totally ran out of ideas... please help 
Yann