Comments
-
Hello, Could you please tell us what polling method is used to monitor the affected hosts? Were these hosts being monitored via the SolarWinds agent at the time of the issue? Thanks
-
Check if you can access to the TCP/17774 port of your main poller engine. Then you test with the following URL (update LOCALHOST value as needed): # localhost:17774/.../Query To get your full data, the query below should work:…
-
${N=SWQL;M=SELECT TOP 1 a.AlertObjects.EntityCaption FROM Orion.AlertActive a WHERE a.AlertObjects.EntityType = 'Orion.NPM.CustomPollerStatusOnNodeTabular'}
-
We have the same version and that's work. Try as below: SWQL_Query = """ SELECT IPAddress, DnsBackward FROM IPAM.IPNode WHERE DnsBackward LIKE 'WC-%' """ payload = { } headers = {'Content-Type': 'application/json'} url = "https://{}:17778/SolarWinds/InformationService/v3/Json/Query?query={}".format(SW_SRV,SWQL_Query)…
-
Thank you so much Tony.
-
Thank you for this share, nice job.
-
SELECT L.Region, L.Country, L.Site ,ToString(ARRAYVALUEAT(SPLITSTRINGTOARRAY(REPLACE(N.IPAddress,'.','|§|§|')),0)) +'.'+ToString(ARRAYVALUEAT(SPLITSTRINGTOARRAY(REPLACE(N.IPAddress,'.','|§|§|')),1)) +'.'+ToString(ARRAYVALUEAT(SPLITSTRINGTOARRAY(REPLACE(N.IPAddress,'.','|§|§|')),2)+'.0') AS [Subnet] FROM Orion.Nodes N JOIN…
-
Hello, If IPAM is connected to ActiveDirectory, you must provide the domain name in your login such as "domain \ username" to connect through OrionSDK and see all entries. I hope this will help you. I encountered the same problem.
-
Hi, Please see my below example to create a supernet in a hierarchyGroup. if i[0] == 'Net_Type' and i[1] == 'Supernet': #~# Checking or Creating Subnet if not already exists subnetcheck = IPAMSubnetUri_Query(SWIS_Dict['Address'], SWIS_Dict['CIDR']) if str(subnetcheck['results']) != '[]': print('The Supernet [',…