Comments
-
It appears to be a new feature introduced by SolarWinds with their “hotfix.”
-
The same issue is happening in some other environments we upgraded to 2025.4.1.
-
We experienced the same issue, and after consulting with support, this is the way to resolve it: RDP into the Main Polling Engine Open the SolarWinds Database Manager Click on the "Add Orion Server" button Locate your SolarWinds Database (the highlighted DB) Right-click on it and select "New Query…" Run a query on the…
-
Hey, For what I see in your query is it because you are mixing "and" && "or" conditions. SELECT COUNT (STATUS) as Down FROM Orion.Nodes Where Status = 2 and ( IP_Address Like (x.x.x.x) or IP_Address Like (x.x.x.x) ) You have to group the IP_Address with brakets for example. And if you want to use Group you should use a…
-
Hey, I think that is not possible. But what you can do is change the Poller from ICMP to Agent once they became nodes. Here you have a guide to perform those actions using API https://thwack.solarwinds.com/products/the-solarwinds-platform/f/orion-sdk/92133/managing-node-pollers-via-api. If you want to try it using SQL you…