Comments
-
Thank you for the clarification mesverrum
-
Thank you for the detailed explanation. This makes more sense. All those node are indeed scattered across multiple different polling engines. I guess the solution would be to put all these nodes on the same polling engine?
-
You were close! i took yours and came up with this: SELECT IPAM_GroupReportView.FriendlyName, IPAM_GroupReportView.GroupId FROM IPAM_GroupReportView INNER JOIN IPAM_Group g ON IPAM_GroupReportView.GroupID = g.GroupId INNER JOIN IPAM_Node n ON n.SubnetId = g.GroupId WHERE g.CIDR = 25 GROUP BY g.FriendlyName, g.CIDR,…
-
jrouviere I figured it out. I had to follow the steps in the document you posted for resolution 2 for the polling engine i set up in the discovery. At first i did it just on the main poller. Thank you so much!
-
jrouviere I tried both resolutions in that document and neither of them worked. Got any other ideas?
-
I'll dig into this and report back. Thank you,
-
Just checked. We do have some IPs in the ignore list, but none of them are in that list of 100...
-
mesverrum Are you referring to "Detailed Statistics Retention"? it's currently 15 days... Is that the retention setting for availability? i thought the Daily Statistics Retention held node availability.
-
i ended up making the PS script monitor. thank you sir!
-
figured it out! this is what i was after: SELECT e.EntityCaption, a.IncidentNumber, a.LastTriggerTime, a.State, a.Assignee, a.AssignmentGroup, a.Description from Orion.ServiceNow.AlertIncident a join Orion.AlertObjects e on a.AlertObjectID = e.AlertObjectID join Orion.Nodes o on o.Caption = e.EntityCaption WHERE o.NodeID =…
-
I use this custom SWQL Query for the Disks on my VMs (just edit the WHERE statement to pull in the exact nodes you want): SELECT top 10 n.caption as [Node] , v.Caption as [Volume] , tostring((round(v.VolumePercentUsed,1))) + '%' as [Space Used] ,round(v.volumespaceavailable/1073741824,1) as [Free GB] ,case when…
-
Can you ping or snmp walk to the devices that are showing down from the orion server? also make sure all the SW services are running by pulling up "service control manager" on the orion server. Let me know.
-
I wonder if it doesn't like the float values.
-
@"Barshasree" you can read up on Slack Webhooks here: https://api.slack.com/messaging/webhooks Once you have your webhook URL, select the "Send a GET Or POST Request To A Web Server" alert trigger action: Paste in your URL, Select POST, and paste in your JSON payload: The above JSON payload would be a simple example for a…
-
Have you thought about just using Webhooks? that's how we setup our solarwinds/slack integration and it's much easier than using curl IMO.
-
@"dbradley1" It needs to be an AND not an OR. Maybe try "Instance". you will be able to search for specific nodes by clicking "Select objects", like this:
-
@"the_ben_keen" i'm on the latest version of everything and i just got it working.
-
I monitor and alert on about 2,000 APs. I use the option #2 you described and just monitor each AP as an individual node. My alert is set up like this: we have a custom property called "TimeZone" applied to each node so we aren't receiving alerts at 7AM EST (when our NOC opens) for a store on the West Coast where it's 4AM…
-
You'll need to use Universal Device Poller. This article will help get you started: https://support.solarwinds.com/SuccessCenter/s/article/Create-a-Universal-Device-Poller-UnDP
-
Is there an expiration on the SCP voucher?
-
Is it possible to use the varbinds as a variable anywhere? you could do that in Trap Viewer.
-
Have you tried executing this with PostMan? I've gotten this error when I was using a variable that Orion did not like. Also, double check that JSON
-
I like to wait a week or two after the product has been officially released to see how it went for other people.
-
I would recommend opening a case with support. They're usually pretty helpful. SolarWinds Contact Us
-
I'm having the same issue. I would like to take out bits of my trap messages to make the alert more meaningful. the trap i want to alert on contains a lot of not-so-helpful information, there's only 3-5 lines/values i would like to extract out of the message. I remember in trap viewer you could user varbinds like…
-
Looks like it's been added back.
-
i've had similar issues where i didn't realize i was logged out of my domain (admin) account, but i was actually logged in as "DirectLink" which is kind of like a "guest" account. check the top right hand corner, are they logged in with their domain?
-
You can upload the MIBs to SolarWinds Support. They'll work some magic on their end and then send you back your updated MIBs.cfg file. More info here: https://customerportal.solarwinds.com/info/MIB-Database
-
you could try to filter your nodes using some basic SWQL:
-
SNI_AlertIncidents is the table you're looking for. I use this query to grab the incident number: SELECT IncidentNumber FROM [dbo].[SNI_AlertIncidents] WHERE AlertObjectID = ${N=Alerting;M=AlertObjectID} ORDER BY IncidentNumber DESC And this one to grab the URL: SELECT IncidentUrl FROM [dbo].[SNI_AlertIncidents] WHERE…