Comments
-
Would probably have to write some custom scripts for this. I'm most comfortable in python and think you could set up a schedule to run the below once a day with some modifications orionsdk-python/unmanage_node.py at master · solarwinds/orionsdk-python · GitHub EDIT: Might want to check this but here is a SWQL query that…
-
It sounds like you are on the right track with what you are wanting to do. Windows Script monitor is what has been used in the past where I am now to do exactly what you are wanting to do using vbscript. Still working just fine too. It's hard to give much advice without more information but starting with the Windows Script…
-
I can see there is a report to get each alert per node but not sure how I can get it for all nodes. In reports you should see built in "All Alerts this Object can trigger". Not sure how to get it to work for all nodes or if that is even possible. I do think a report like this could be useful. EDIT: I found this thread that…
-
That KB article is no longer valid. Any chance there is a new URL for it?
-
I'm not sure if there is anyway to fix this but yes the spacing on mine in my emails comes out pretty ugly most of the time as well.
-
Hard to help without knowing some background. OS and version? It would be cool if you could have the alert send an email and fix your issue at the same time. Wonder if you could have the trigger action log the account back on or restart the service responsible.
-
tfoster2501 any chance you figured out what the issue was?
-
I would check this out: NPM poll down nodes - SolarWinds Worldwide, LLC. Help and Support I found this on this thread: How does NPM determine node down Hope this helps you find what you're looking for.
-
So I'm looking at the query here: SELECT n.displayname, p.CurrentValue FROM Orion.NPM.CustomPollerAssignmentOnNode AS p, Orion.Nodes AS n, Orion.NodesCustomProperties AS c WHERE c.UPS_TEMP_PROBE = 'TRUE' AND p.CustomPollerName='RoomTempCelsius' AND n.displayname LIKE '%UPS%'; I'm not seeing a join there. So I generated a…
-
Not sure if this will help you out but might want to check it out SWJobEngineWorker2.exe crash on event viewer - System.IndexOutOfRangeException - SolarWinds Worldwide, LLC. Help and Sup…
-
I think you want to change the filter to VolumeType = 'Fixed Disk' AND VolumePercentUsed >=85 AND Volumes.Caption like 'C%'
-
Thought I would reply and say that I have just recently begun working with Solarwinds and monitoring metaswitch. It appears that it mostly is custom pollers being used. Although we also have some of our Media gateways as actual nodes in Solarwinds. I actually just decided to search metaswitch to find any resources I could.…
-
I think I was making this harder than it needed to be. Looking at dbo.CustomPollerAssignmentView it looks like that view only has the latest poll so if I use that instead of using dbo.CustomPollerStatistics I should be good to go.. Hopefully
-
I'm not sure if we are on the same version but if you tried a custom query with this from, inner join and where you could probably grab the columns you want: FROM [dbo].[NCM_TransferResults] NT inner join dbo.NCM_Nodes NCN on NCN.NodeID = NT.NodeID where NCN.MachineType = 'Cisco Catalyst 4510R+E' and NT.RequestedScript =…
-
I'm not sure if this is helpful but it sounds to me like you are wanting the node name in the message? I opened up one of the messages and looked at what I have to pull from. Let me know if this is on the right track?
-
Have you tried turning on the debug log for this application monitor and checking the log there? Turn on application debugging for SAM - SolarWinds Worldwide, LLC. Help and Support That's normally where I start when a monitor isn't working as expected.
-
Have you checked out the Network Discovery? It looks like you could use IP Ranges, Subnets, IP addresses, and Active Directory. I inherited my set up so I haven't done any bulk nodes but I think that would probably be your best bet.
-
Here is a SWQL query that I think should get you want. SELECT NodeID, ObjectSubType, IPAddress, IPAddressType, DynamicIP, Caption, StatCollection, External, Community, RWCommunity FROM Orion.Nodes Here is a resource to get the SWQL studio: Where can I find the SWQL Studio for download? Edit: Here is an SQL query that…
-
Edit: read below, my screenshot is from a different place than OP is talking about. It looks like if you edit the action you can change it at the bottom of the pop up window.
-
Found it in the SWQL Orion.AuditingEvents Table where actionID = 29 and by I found it I mean my coworker found it in his old notes.
-
Still not sure how small-testing.gif was there but this is no longer an issue. 1. Uncheck it hit submit 2. Go back into list resources and Force refresh 3. Should show the proper status of the interface, check it and click submit again.
-
I'm curious about how this works too. I was able to find this: WMI Network Interface monitoring does not collect and report statistics in instances where NIC teaming is enabled - Sola… This second support article might actually have a fix for you but im not sure. Interfaces are not displayed in List Resources of a WMI node…
-
I tried making this query with swql. I think it has the tables you would need and would have the conditions you are looking for. Wasn't able to test this at all so definitely test it to see if this gets what you are looking for. Edit: Changed From: SELECT ncp.Department, n.Status as nodeStatus, ap.WirelessTypeDescription,…
-
I think this post may be able to help you achieve what you are wanting: Creating alerts for statistic data collected by windows script
-
I haven't been able to find a way to do exactly that. It looks like you can create an alert based on the rollup status of the group. Set the group status based on the status of the group members
-
I'm not sure if it is just because I am on an older version but if I go to the nodes page, find the sensor there, click on a single sensor, it brings me to a page where I can export to XLS which gives me a report that I think you are looking for. On the nodes page find the current Hardware Health Resource Click on the Temp…
-
I really recommend checking out the SolarWinds Lab It really helped get me up to speed with not just Solarwinds but also monitoring in general. Was great for helping make sense of the documentation that I was reading before I was able to get my hands on the installation we have here.
-
I think the function you are looking for is round(n, p) I found this on the wiki SWQL Functions · solarwinds/OrionSDK Wiki · GitHub Let me know if that is what you are looking for.
-
This might be worth opening a support ticket for because I have not come up with anywhere to look from manually looking and some light googling.
-
Here is a swql query that has the column you want "Object Sub Type" SELECT TOP Caption, ObjectSubType, IPAddress FROM Orion.Nodes you can make a report out of that. Here is the guide to use that query within the web gui. Create a report using SWQL