Comments
-
Check and Edit the Property on that Custom Property to make sure that the Include Object Details Views is checked for that property to appear on the node details page. (All Settings - Manage Custom Properties) Also make sure the Custom Properties Widget is on the Node Details page.
-
Love the NOC Widget! Can you share the config behind your NCM Backup Summary?
-
Orion is getting the metrics through WMI using the same methodology that the WBEM test is using. If the credentials are failing through the wbemtest then that is where to concentrate the troubleshooting. Since your account works fine there is no issue with the connectivity to that endpoint itself or with remote WMI calls,…
-
On the polling engine that you are monitoring that node from go to C:\ProgramData\SolarWinds\Logs\APM\ApplicationLogs\AppID519 and you should see the debug logs that you enabled.
-
The AppID is in the URL at the end when you are looking at the App Details. Click on the Microsoft IIS application on the node giving you details and it will be at the end of the URL. It will also appear when you are editing an app like my first example. Orion/APM/IisBlackBox/IisApplicationDetails.aspx?NetObject=ABIA:2470…
-
May be worthwhile to enable the debug logs and check them out. Edit the appinsight and enable the logs. C:\ProgramData\SolarWinds\Logs\APM\ApplicationLogs\AppId2470 on the Orion server and search for ERROR or credential issues. Opening a support case may be the next step.
-
We have seen these issues when WMI on the node itself is experiencing issues. Start by testing the connectivity from the Orion poller to the node with the credentials that you have setup for the node. Testing WMI Connectivity with WBEMTest (solarwinds.com) If the perf counters are not there then you may need to rebuild…
-
More Azure and Office 365 information grabbed by API. SuccessFactors, SAP Hana
-
Do you have an example of the custom SQWL would be for the volume free space < vol_minimumgb for the alert? Using that Volume MIN GB custom property is a game changer.
-
Any update? We are creating documentation on what metrics are gathered as well.
-
Thank you for the info. Looks like we caught the issue in time to put in a global preprocessing rule stopping the further growth into danger territory. Time for a feature request to allow better granularity on retention storage of logs by node / vendor / machine type etc.
-
Using SAM you can create a PowerShell monitor to run on a remote node to test connectivity to another endpoint. $ipaddress = '10.xx.xx.xx' $Facility = 'Houston' $port = '9501' $connection = New-Object System.Net.Sockets.TcpClient($ipaddress, $port) if ($connection.Connected) { Write-Host Message: $Facility-Success…
-
One way you could achieve this is to setup Real-Time change detection. Configure real-time change detection in NCM (solarwinds.com) This will generate an immediate download of a config whenever a change is detected on the network device. That download time will match quite closely the time the change occurred since it is…
-
It looks like the SQL Server PowerShell Module isn't loaded in the context of when it is executed by Orion. Download SQL Server PowerShell Module - SQL Server | Microsoft Docs You could also look at using the SQL Server User Experience Monitor.
-
Not just you, I am seeing the same issue after the upgrade. Opening case to raise visibility.
-
Excellent Improvement!
-
That would be a great stop-gap! Thanks @"mesverrum"
-
Confirmed that this isn't available the product yet. I've put in a feature request if you would like to upvote. Add a Device View and Interfaces Widget so we can add these views to Custom Views. - Feature Requests - Network Performance Monitor (NPM) - THWACK (solarwinds.com)
-
Multi-module system guidelines - Multi-module system guidelines for the Orion Platform (solarwinds.com) DPA is a separate server and DB - DPA 2021.1 system requirements (solarwinds.com)
-
Try deleting the interfaces you don't want to monitor. In Manage Nodes Change the Show to Interfaces
-
If you want to confirm manually you don't have the affected DLL try the info at https://www.solarwinds.com/securityadvisory/faq Check under "I want to manually check my version of the SolarWinds.Orion.Core.BusinessLayer.dll for the vulnerability. Do you know a way to do that?" Look at the file hash with PowerShell…
-
Seems intermittent. I tried a few times and was able to get in and download the offline installer. I can imagine it is being hit quite hard right now with everyone getting the HF2.
-
This is an issue that we have with the current discovery. If a node is attached to one additional polling engine and is scanned by a discovery profile with a different polling engine and new volumes, interfaces, etc are discovered the discovery will ignore the changes because the node is monitored by a different polling…
-
We had to go a bit farther then this KB when we had our issue, as just coping that CoreInstaller MSI was not enough to mitigate the timeout issue. We ended up copying the entire \subinstallers\ folder each time the installer timed out to a different temp directory, renaming the [currenttimestamp] folder to match when we…
-
Excellent resource! Thank you
-
Works great! Thank you
-
Appreciate the info on the back-end commands. Thank you
-
We had issues with the scalability installer for our remote pollers, it kept timing out. I am curious if it will only copy the necessary hotfix and we won't have that problem this time.
-
Is there an estimated date on the fix?
-
I ended up creating a SQL User Experience Monitor in SAM. I count the number of warnings for a particular component and set the warning and critical based on the output number. >= 1 is sending out a warning and >=4 send out a critical. Thanks again for the help. select count (*) from apm_alertsandreportsdata where…