Comments
-
Hi there modot Have you tried adding the dependency yourself? Go to Settings and then Manage Dependencies (http://<Orion server>/Orion/Admin/DependenciesView.aspx) and click the button. The parent will be your switch, the child your GPS unit. This will, when the switch is uncontactable (either its link is down or it is),…
-
Add an alert action, such as Execute an external program. Windows servers should be too hard, PowerShell has service control commandlets, start with Get-Service, Start-Service and possibly Invoke-Command. You'll need to create local script, on your Orion server that can access the remote server and start the service. On…
-
Hi uaggarwal Create a locally executed PowerShell monitor, that runs something like: -------------------------------------------------------------------------------------------------------------------------------------------------------------- # Get local users accounts, for SolarWinds PowerShell monitor # Verison 0.1 #…
-
Happy days! More toys to play with! Service Now and CMDBs jump to mind initially, but after I have had a play, I am sure I can come up with some more. @dave@entwistle.cc the idea of simplified forms, for all users, like it!
-
Hi jmp99, In your report open the add content window ans search for Availability Statistics and select the Node Detail Reports one: It opens a node selection tool afterwards, where you can chose the nodes of interest. And you will have the same chart you see on your device's detail view, in your report. Hope it helps,…
-
Hi, It is generally more acceptable to read the manuals, then get stuck, then post on Thwack for these kind of questions.... But I am feeling nice today! Have you looked in the Manage Groups view? http://<your solarwinds>/Orion/Admin/Containers/Default.aspx And then maybe have a look at the Orion manuals, perhaps this one…
-
You need to look at the Nodes (view) firstly, here you will find the device IP addresses, names, statuses and any custom properties (Groups). You then need to find the active alerts and match them up, I found that the AlertMessages from the AlertStatusView worked quite nicely (you may need to ensure that the text matches…
-
Yup
-
Have you checked out the upgrade advisor? Product Upgrade Advisor | SolarWinds Customer Portal
-
tdanner, perfect!
-
Try creating a report, that will allow you to see this information. I created one based of the following SQL: SELECT n.Caption, ae.AccountID, n.UnManageFrom, n.UnManageUntil, ae.AuditEventMessage FROM AuditingEvents ae INNER JOIN Nodes n ON n.NodeID = ae.NetworkNode WHERE ae.AuditEventMessage LIKE '%UnMan%' AND…