Comments
-
NPM 10.7.
-
Nice, I'm looking forward to seeing other users contributions and submitting my own samples for python. I think having this on Github will definitely spark more interaction and involvement within the Solarwinds community.
-
I may have been too vague in my post, but I'm not trying to get more detailed monitoring. The issue is that any nodes added via this script are not being polled at all. There are no ICMP statistics being collected, and it appears to be because only the specific nodes that are added via script are showing as "Disabled" in…
-
I felt like my variation was inadequate because I needed a try/catch statement in order for it to work properly. Using for x in xrange(10000) fails once the index is out of range, so your solution seems much better. Thank you!
-
That thread was definitely insightful, but I'm still not sure if I can accomplish what I need. Do you have an example using the python swis api to invoke the node discovery and list resources and return the resources found? From there I think I can filter what I need and add the appropriate pollers.
-
I actually figured it out, it was much simpler than I was thinking. Initially I was trying to do something like swis.update(uri + "/Polling", StatCollection = 1). I didn't realize that only the custom properties needed something appended to the URI, and that you can change all other node properties using only the URI. I…