Comments
-
It can be done individually on each node via List Resources. For bulk operations, you'll want to use the SWQL Studio tool. https://documentation.solarwinds.com/en/success_center/sam/content/sam-asset-inventory-enable-for-multiple-nodes.htm On step 3, you'll need to update the 'Windows' vendor to 'Linux'
-
This was fixed in version 2025.2. Internally tracked under OO-46556. I thought this made it into the Release Notes but I can't seem to find it. I'm working with the team internally to get it added.
-
@"admin_nsn" , from a product standpoint I'd love to better understand the use case driving this. Was this a security related? Were there limitations on WMI/WinRM? Were Agents not an option?
-
The tricky part about using manage nodes is will show you the polling method but not the status method. You can have an SNMP node with a status calculated from ICMP.
-
This is an older post of mine, but something I added to the Node Details page for easy reference. Widget: Node Status vs. Node Polling Method Widget (Node Details)
-
@"robert777" , take a look at this recent post, it might contain info that is helpful. Post back here with any additional questions. Solarwinds HA Pool configuration in Multi subnet Scenario | How to configure this without
-
So this line, with the >= is going to give you a rolling 30-ish days. GetDate() grabs the date every time it is executed. AND nit.datetime >= addmonth(-1,getutcDate()) What I've done with similar queries in the past is to update the WHERE to this: AND MONTH(ADDMONTH(-1,GETDATE())) = MONTH(nit.DateTime) AND DAYDIFF(…
-
You can use a network load balancer for the MPE engines too. You can use your load balancers to handle the DNS aspect (depending on your LB setup, e.g. Global NLB vs Local NLB) The biggest items to know when using HA for DR are: * The Database is the most critical part. Make sure your database can failover between sites…
-
The web console AD auth piggybacks off of the DNS servers listed in the Windows Network stack. I'm assuming you have two listed there? if so, does it still have issues logging users into the web console?
-
gMSA (which leverages WinRM and Kerberos) is not able to fall back to WMI since it does not support impersonation.
-
Yes, this article references using a Load Balancer with the SolarWinds Platform. https://documentation.solarwinds.com/en/success_center/orionplatform/content/core-load-balancer-requirements.htm Using High Availability DNS/VIP options are only for the convenience when a load balancer is not available. Starting in version…
-
@"bellatwork" , did you open a support case and if so, can you post the case number? @"jvb" for visibility.
-
If you click on that link, what does the right hand inspector panel show? It should give more info into what that represents. Off the top of my head I believe it's related to errors/discards on the interface.
-
FYI @"ronan.tonilon" , the Orion.Traps and Orion.TrapVarBinds are no longer valid. That is the old namespace prior to migration to Orion.OLM. From an alerting standpoint, and mentioned by @"adam.beedell" above, the variables are found here:…
-
It isn't something ready out of the box, can you can work with the SolarWinds Platform API and roll your own credential updates https://github.com/solarwinds/OrionSDK/wiki/Credential-Management
-
Assuming this is a custom SNMP monitor, you're looking at doing a Transform function, which is available in the platform. documentation.solarwinds.com/.../core-transforming-poller-results-sw704.htm
-
This is definitely not normal behavior and not a trending issue we've seen in 2025.1 (or other versions). I would recommend opening a support case to further investigation.
-
We are planning some updates, internally tracked under OSHPD-828. Unfortunately, no timeline that can be shared at this time. Once we have something officially loaded onto the truck, we can return and report.
-
You can use this Alert Variable to see the full syslog message in your Alert Actions. LogEntry Message: ${N=OLM.AlertingMacros;M=OLMAlertMessage.EventMessage}
-
@"elliotpotts0" , SAM is designed for performance monitoring in mind, not so much running reports like this. If these type of scripts only need to be run ad-hoc and not often, leaving them inside of powershell and running them yourself might be best. If they is something required for security/auditing purpose and you need…
-
Can you post your support case number? Tagging @"jvb"
-
There are multiple ways to do it, not a single right answer, so it might boil down to what works best for you. This is what i've done in the past. Part 1: use a little known alert variable called 'Warning Value Reached' and 'Critical Value Reached'. These follow the entity thresholds defined for that node/interface/volume.…
-
I'd take a look at this PowerShell example. It seems like lines 11 - 55 and 173 - 197 might be useful. OrionSDK/Samples/PowerShell/DeployAgentViaVerb.ps1 at master · solarwinds/OrionSDK · GitHub
-
I'd add another alert action of 'Log the Alert to the NetPerfMon Event Log' https://documentation.solarwinds.com/en/success_center/orionplatform/content/core-logging-an-alert-to-the-npm-event-log-sw1064.htm You can see those messages appear in Alerts & Activity > Events. Then build a report and filter to those messages and…
-
@"emunizaga" , would you might posting your support case number?
-
Update your version of SWQL Studio. This has been fixed in the latest versions. Releases · solarwinds/OrionSDK
-
Circling back on this comment. Starting in 2025.1 we added the ability to disable the SolarWinds software from managing the VIP/Virtual Hostname (configured when editing the HA pool). This allows customers to bring their own load balancer to the table without the need to follow the previous steps I mentioned of entering a…
-
It seems to be working in my lab. Showing a green status dot. I did remove the JOINs on applications and nodes since my lab isn't set up exactly like your deployment. Changing the SWQL from 0 to 3 does update the icon
-
Drop the single quotes around the severity numbers in your Case statement. The quotes CAST the value to a STRING when Severity is expecting an INT CASE WHEN e.PollingCompletion < 95 THEN 3 ELSE 0 END AS [PollingCompletionColor],
-
Can you paste the full swql query?