Hello,
I have some nodes that are polled by Solarwinds Monitoring Software on a timer. Can I poll these nodes in between the time in which the software waits to poll these nodes automatically using Orion SDK. Or should I look at another SDK?
Thanks.
Then I think the operation you want is "PollNow". In PowerShell, that looks like this:
$swis = Connect-Swis -Hostname localhost -Username admin -Password ""
$nodeId = 123
Invoke-SwisVerb $swis Orion.Nodes PollNow @("N:$nodeId")
Could you be more specific about which SolarWinds product(s) you are using?
I believe we are using SAM, NPM, NCM, and DPA
Alirght I'll give this a try. Thanks for the help!
Is there a similar operation for statistics collection for a specific node?