Comments
-
Here is a start on creating one. Use Interface as your trigger condition The next section will be filtering it to specific nodes or interfaces, you fill that part out... Then use this logic for the Error portion
-
There is one of the healthchecks that will complain, and you will probably get another complaint during upgrades but I have been running a mixed OS environment for the past three years with no issue. I just upgraded all of my APE's to Windows 2022 but my MPE is still Windows 2016, changing that soon. Before this I had a…
-
I still have not found a resolution but here is the query I was using to troubleshoot. None of the pollers that get pulled up show unknown, they all are showing valid data. SELECT n.NodeID, n.Caption AS NodeName, n.StatusDescription AS StatusMessage, cpa.CustomPollerAssignmentID, cpa.AssignmentName AS PollerName,…
-
I got this from Thwack somewhere. It lists the alerts and actions. SELECT TOLOCAL ([AH].TimeStamp) as Timestamp , [AH].AlertObjects.AlertConfigurations.Name AS [Alert Name] , [AH].AlertObjects.EntityCaption AS [Element] , [A].ActionTypeID AS [Action] , [A].Description AS [Details] , [AH].Message AS [Results] FROM…
-
I use a Custom Query resource to get to those tables, below is an example. Change the Where to fit your needs. SELECT Caption, ErrorMessage, NodeID, ComponentName, ComponentType, ComponentAvailability, ComponentPortNumber, ComponentStatisticData FROM Orion.APM.CurrentStatistics cp INNER JOIN Orion.nodes nd on cp.NodeID =…
-
You can send the SMS by using Send Mail as an alert action. Google 'sending SMS messages from email' and it will explain how it works. You will need to determine the carriers you are sending to and add the carriers gateway such as PhoneNumber@vtext.com for Verizon
-
A quick Google of this returns: Email systems do not allow infinitely long subject lines. Like most software there are limitations on how much information can be input. For most email the technical limitation on subject line length is 988 characters. That includes spaces between words.
-
That is the general idea. You can use values from your script and use those as your threshold in your template.
-
Did you use Statistic in your script? The above screenshot shows it returned a 0 (or nothing). An example below. $cpuUsage = Get-WmiObject Win32_Processor | Measure-Object -Property LoadPercentage -Average | Select-Object -ExpandProperty Average Write-Host "Statistic.CPUUsage: $cpuUsage" Here is an older post with an…
-
It is still occurring. We just added 12 new polling engines and even after the nodes were moved to the new engines the problem still persists.
-
We suffer from the same thing. Our alerts go through a couple other systems before hitting SNow. SNow will acknowledge the alert but the alerting systems in the middle don't pass the info back to SolarWinds because they are both SaaS external vendors and they don't have any way to get messages from the cloud back to us.…
-
A couple of things we do is put WAN LINK on them so in the alert we can use logic such as contains WAN LINK = YES in our interface alerts. Another item is we will tag both ends of a circuit to determine is both links is up and the routing neighbors are both up in our alerts. Other than that we don't use the interface ones…
-
I would suggest reading the NCM release notes as well. There are 2 bugs. We cancelled our upgrade because we need to backup the cisco configurations to a network share. SolarWinds Platform release notes aggregator Known issues Unable to save files to a network share After an upgrade to NCM or SolarWinds Observability…
-
This should get you started. Change the Where to whatever you need, this is for Cisco. This will at least identify them for you. SELECT -- CREDENTIALS c.ID AS CredentialID, c.Name as [Credential name], -- NODES n.Caption as [Node caption], n.Vendor, [N].CustomProperties._Region, [N].CustomProperties.SNMP_Cred, n.NodeID,…
-
This started happening to me in 2024.0 just recently. Did you ever get it resolved?
-
Completed the survey, thanks for allowing the input.
-
Thank you @"vinay.by" that is the exact problem I am seeing :)
-
Ok, I'm kind of rusty on this method as I use another tool for this @"chad.every" could you please chime in as well? If you were to use SolarWinds Event Log Forwarder for Windows and forwarded that specific event to Log Analyzer and then set up a rule in Log Analyzer to great a ticket, email or whatever it should do one…
-
Best of luck, that is on my radar soon as well. Just waiting for someone else to jump into the pool first.
-
There is an SNMPWALK tool on your SolarWinds main poller, possibly try walking the MIB on the controller and see what it returns? Looks like a feature request if it's not currently supported out of the box. I had to do a bunch of that to monitor our Cisco Contact Center devices as there wasn't anything out of the box to do…
-
Try co-pilot, it's a good start. I wish I had VIctorOps to help out but don't have an instance to try for you. To send alerts from SolarWinds Orion (SWO) to VictorOps (now known as Splunk On-Call), you can follow these general steps: * Set Up an Alert in SolarWinds Orion: * Go to the Alerts & Activity tab in SolarWinds…
-
There are some SAM templates you can use as well Shared Application Monitor Templates on thwack I have these running. I think I modified them a bit on mine but its a good start. If you have HCO you can always run these on your free Test environment against Prod as a 'second opinion' as well. Otherwise just pull up the…
-
I was under the impression that the wireless controller provided an snmp gateway function that allowed that type of communication itself. Have not tried it personally but google search resulted in this "To retrieve the temperature of specific SNMP access points behind a Cisco WLC 9800-L controller, you need to access the…
-
Use the powershell Get-Service command and place the output into a .CSV file.
-
SWQL Functions · solarwinds/OrionSDK Wiki · GitHub
-
SolarWinds Orion NPM Integration Guide - VictorOps | Splunk On-Call Software
-
I agree with @"HerrDoktor" simply add the nodes as ICMP nodes. I had the same situation where the Engineers could not get the Wireless controllers to be set up correctly but the WAP's were in the database tables so I have a powershell (somewhere) that I used to add all of them. Once done initially I just set up network…
-
Honestly, I only know how to do the post to Splunk Enterprise. I am positive it can be done with your tool as well. Below is a possible example. Possibly look to one of the Solarwinds Value Add Vendors and they can get the exact setup you need working.
-
If you search 'how to get messages from solarwinds to victorops stand alone' in CoPilot it looks like you just need to add an API endpoint and then use the HTTP Post alert action. There is more information here from SolarWinds AppOptics | VictorOps
-
Assuming you are trying to write your own query, all of the tables can be viewed via SWQL Studio available here GitHub - solarwinds/OrionSDK: SDK for the SolarWinds Orion platform, including tools, documentation, and samples in PowerShell, C#, Go, Perl, and Java.