Comments
-
I have a comment/suggestion that I don't see in this thread, haven't seen elsewhere and was not possible in Network Atlas either. I have NPM Groups that show "All Nodes" for a particular office, just Network Nodes, just Server Nodes, etc. Would be great to have a map view of those on the Group Details page. However when…
-
Still something I would like to have as well. But 5 years later and only 32 votes, seems like a tough sell. Maybe @bumpsquad will help.
-
And AIX LPARs...
-
That would be helpful although I have thresholds set on many fields of a Component and needing to have a chart for each, and for the user to need to jump around to various charts to get what they need, seems like more work than is needed. Here is how I have mine displaying for the Components Resoruce: Also, I did try to…
-
That did work. Thanks aLTeReGo
-
Bump
-
I agree with both the posting subject and comment replied to here. We really need to have detailed auditing on changes made to accounts and I have voted Up here. While Windsors is doing a better job of providing more granularity to user/group accounts, I also agree that more could be done.
-
Although from aLTeReGo's list above, I think I already know the answer to my question, I will ask anyway in case I am wrong. Having the ability to use the threshold values in a script by referencing the associated variables is great. However if you don't know the equation term (ie: greater than, equal to, etc.) then you…
-
I thought I would update this thread with what we ended up doing in the meantime until SolarWinds natively supports iDRAC. In addition to NPM, we also have SAM and several other Orion modules. Using a SAM Application Monitor, which gets assigned to the Dell Server Node, I collect the Hardware Health data through the iDRAC.…
-
I am trying to use ${Threshold.Warning} and ${Threshold.Critical} in a Perl scripts to that I can use the current threshold values in my evaluation of the component on the node itself. While I believe this is possible, I cannot seem to get it to work. I do know from the documentation that the actual variables to use would…
-
Hi serena!! Knew this one was already on your list as we discussed it back then. Adding my vote to bump it up as I am still feeling the pain almost daily. Would appreciate any relief bhodi can provide!!
-
jaguarbrad So is there some reason that further search ability could not be added for those that need it while providing the ability for the IPAM Admin to throw a switch turning the functionality on or off? The current search limitation could even be the default as long as we have a way around the limitation. I mean…
-
OK... I did figure this out and will provide the answer here for anyone else looking. The Thresholds table 'InstanceId' contains the Volumes table 'VolumeID'. I was just reading things wrong here. Great news as this makes my query easy to create. Here is a basic SQL query that only collects the threshold values and not the…
-
I still could really use some help with this one. Any ideas on what could be causing this? Interestingly, I can add a Custom Query widget, say to the NPM Summary page, add the query into that and get the results I am expecting. I tried the same with Custom Table and it fails just like inside a Report.
-
Does anyone have any ideas on this issue? Help would be greatly appreciated. THANKS Mike
-
Thanks @"KMSigma.SWI" I have studied this to a greater extent and posted a new article at SWQL & SQL query versions NOT working in Report. As the title infers, I can't get the results I am looking for using either an SWQL or SQL query. Maybe the additional information provided in that post can help you help me. BTW: I am…
-
Let me add... It was not ComponentID from the Components table that I was trying to get like you have in your example. In fact, in my SWQL the table is actually Component and not Components (plural). Instead I was trying to get ComponentID from the ComponentSetting table. I did just try this with SWQL from the…
-
Kevin, SQL Queries is what I am more familiar with and have used for the past 11 years in Reports. The option is still available to use them so why are you saying we should avoid them? (((Sorry... I do see now why you said we should avoid SQL Queries.))) My Orion environment is on 2023.2.1. Mike
-
I get the same error when running the SQL query within the Report whether I include "SolarWindsOrion.dbo." or not:
-
I think you mean add an extra Section. That would not be needed if the "Alert can be triggered if" feature worked as you and I both expect it should but it does not. If the number in that option is set to 1, so the option reads "Alert can be triggered if more or equal 1..." the Alert does not trigger if 1 Node is down and…
-
As for this, it is interesting that your view says "greater than or equal to". As you can see in my screenshot, that only option for me says "more or equal", or maybe you just cleaned it up to what it should say. The whole sentence is very oddly worded and, between this and only one option in that dropdown, hence my…
-
That doesn't fit with the requirements provided by that Team. They want 1 Warning Alert that triggers if 1 or more but not all are not responding and a Critical Alert (separate Alert Definition) if all are not responding. But thanks for that feedback.
-
The goal is that any or multiple Nodes meet the condition but not all Nodes meet the condition, trigger the Alert. I have a different Alert Definition if all Nodes meet the condition. I realize that I can build an Alert Definition for every possible scenario but it seems to me like the "Alert can trigger if" feature was…
-
Here is the updated link to the above support.solarwinds.com/.../Monitor-alert-and-restart-a-Windows-service-from-SAM
-
With PSCredential, I got it to work: $XmAlrtRespdr = '' $UsrNam = '' $Psswd = ConvertTo-SecureString "" -AsPlainText -Force $SwisCreds = New-Object -TypeName System.Management.Automation.PSCredential ($UsrNam, $Psswd ) $Headers = @{ 'Content-Type' = 'application/json'; 'X-SolarWinds-Impersonate' = $XmAlrtRespdr } $Body =…
-
@"KMSigma.SWI", Decided to give this a try tonight... I did try the code you provided replacing the Impersonate name, ObjectId, Note, UserName, Password and URL with information for our environment. This is the same information that works with cURL from Postman. The setting of $SwisCreds from your code completes without…
-
Just saw @"KMSigma.SWI" post and then yours. I have now tried that. That helped. I built the cURL in Postman and executed it with the result being that the target Alert was ACK'd as the impersonated user. I now have the following code that Postman gave me to put into my PowerShell script: $headers = New-Object…
-
My situation is the same as the title here implies so I will continue this discussion here. Basically I have a JSON script running on the xMatters Agent which is running on my Orion Primary Polling Engine server. I had thought about using curl similar to the discussion in Acknowledge Alerts with a curl but I don't like the…
-
@"tdanner" how would you do the OpenSwis in PowerShell using 'X-SolarWinds-Impersonate'? TIA
-
Good catch... Amazing how you can look at something over and over and not see what is clearly wrong. Using AlertID did work. Thanks