Comments
-
Did it resolve itself after the daily rediscovery ran or did it stay in the same status?
-
You will need to make the Component Name in the Where statement match whatever you called your SAM template component name in your environment It should return data similar to this
-
Possibly try this: SELECT Caption, ErrorMessage, NodeID, ComponentName, ComponentType, ComponentAvailability, ComponentPortNumber, ComponentStatisticData FROM Orion.APM.CurrentStatistics cp INNER JOIN Orion.nodes nd on cp.NodeID = nd.NodeID Where ComponentName LIKE 'SSL Certificate Expiration Date Monitor' --AND…
-
In addition to the technical questions I always ask a lot of people or team questions. Trying to gauge how they interact with others, if they like to work as part of a team and get along with others. I have worked with people with incredible technical skills and minimal people skills and people with incredible people…
-
The example above shows the node name in the Modern Dashboard and when you click on it the link takes you directly to the node detail page. You can change that link to be anything you want via the query and what you chose in the column properties.
-
Try looking here:
-
You may have some nodes that are not in an up or down state in your grand total. There can also be unmanaged, external...
-
Here is a code sample of how to put in a URL. Look at how AlertEdit_URL is set up in the code. SELECT COUNT([History].AlertHistoryID) AS [Alert Count] , [History].AlertObjects.AlertConfigurations.Name AS [AlertName] , [History].AlertObjects.AlertConfigurations.Severity AS [AlertSeverity] , CONCAT(…
-
We left the database settings default for storing the configs in the DB, however you can also store older copies in a config archive which is outlined below. This archive only requires space on a disk drive. We had an additional drive added and write the files there. It would be a good practice to copy those over to your…
-
You can via Iframe widget but you need to allow some security exceptions in order for it to work. I tested it in my test environment with the security exceptions in place and this does work. Create a Custom HTML widget then use the code below, replacing the Netpath URL in the code below. <html> <body> <embed src="YOURURL"…
-
Fantastic @"vinay.by"
-
Try looking at this NetPath Endpoint Latency Thresholds in NPM (solarwinds.com) to set up the Warning and Critical for the probe, then I believe you can set up an alert similar to this:
-
possibly this in the alert email body ${N=SwisEntity;M=ComponentAlert.ComponentName}
-
Have you looked around in the Content Exchange ? There are a lot to choose from there.
-
Installing in my Test system today.
-
We had a workstation running in our NOC that I had Kiwi Syslog Server runnning in the background receiving Syslog messages that were sent to it. As an alert action in the Kiwi we used execute a program which executed rules to trigger a USB relay that had lights attached to it. The PC could trigger different relays…
-
Go back to Main Menu under My Dashboards then Netflow then Conversations The click the >> arrows here and the filters will expand to the right.
-
That metric is probably from Netflow Traffic Analyzer. Could be under the Main Menu under My Dashboards then Netflow then NTA Summary. If you own those products and they are configured.
-
Below is a start if you want to create your own. Add this SWQL as Custom Query widget. SELECT NodeName AS [Node Name], '/Orion/images/StatusIcons/Small-' + StatusIcon AS [_IconFor_Node Name], DetailsUrl AS [_LinkFor_Node Name], --MAX(DOWNEVENT.EVENTTIME) AS [DOWN TIME] MAX(tolocal(DOWNEVENT.EVENTTIME)) AS [DOWN TIME] FROM…
-
Could you share the SWQL query? I'm thinking you would the query the values for all three volumes then sum up the total value.
-
Yes we have the same automation for retiring servers. Most of the time someone will unmanage the nodes to keep them from alerting when they get shut down. The automation to delete the node runs days later. If the node is unmanaged the automation fails with an error similar to 'can't perform action' when we looked into it…
-
Once you get that figured out the next thing you will run into is you can't delete unmanaged nodes via the API and you will need to put in a line to remanage it prior to deleting it.
-
When mine lose database connectivity, they post an event 4001 in the event logs. Take a look for those events and if you are seeing then there is some network issue with the connection between the poller and the SQL server.
-
Thanks for posting this. I made my team aware as we will be performing the same upgrade soon.
-
There is much more info in the Nodes table but here is a very basic one SELECT IPAddress, Caption FROM Orion.Nodes
-
If it is at the very end of the install or in the middle somewhere? I have received this error at the very end several times and just ignored it and the install worked fine. It was on the very last step each time of the config wizard. If you could supply a screenshot it may help.
-
Below is an older post that has the SWQL query in it you could use for a start (+) Serial numbers for Cisco switches / Stack Switches - Orion SDK - The SolarWinds Platform - THWACK
-
Order By aa.TriggeredDateTime DESC
-
Ours are very similar. The two fields that have always had a lot of importance are the Severity of the alerts as well as the Group field which is the Assignment Group within our ticketing system for that device. Have used three different ticketing systems and these are always parameters needed to passed on to the ticketing…
-
It sounds to me they are wanting to know how much bandwidth SolarWinds using across the network. Do you have the Netflow product installed? If not you could use wireshark to get the full count. SolarWinds is going to use more than ICMP. It will use ICMP for node up/down but it is also going to query a lot of info via…