Comments
-
Wow this is unbelievable, still in shock that I won! Thanks for being awesome Solarwinds!
-
I have sent you a DM with the support case ref. Thanks.
-
Yes, like this:- where AA.AlertObjects.Node.CustomProperties.AssetType LIKE '%service%' or AA.AlertObjects.Node.CustomProperties.AssetType LIKE '%service%'
-
I also have the same issue, it's listed in the bug fixes for NPM 12.5 here under fixed issues:- Network Performance Monitor 12.5 Release Notes The "Hardware health monitoring on <NodeCaption> is undefined" event triggers correctly.
-
We've now traced our memory leak to a rogue custom availabillty chart. The chart was showing availabiility over last 30 days for 8 nodes. It appears the chart was somehow corrupt as creating a new chart with the same data didn't trigger the memory leak. We found this by isolating different elements of a view we'd been…
-
Hi, It's possible to show values from a component monitor on a page in NPM using a mix of custom swql and html. I am using a custom table resource with a query to show the monitor value and change the colour using a CASE statement:- SELECT c.NodeID, c.ApplicationAvailability, c.ComponentName AS CMPNT,…
-
This has way more columns than you asked for as I wrote this query a few weeks ago. It's currently showing Dell servers as I have specified Where ONN.HardwareHealthInfos.Manufacturer LIKE '%DELL%' You can either change this, or remove the Where line entirely to show everything. SELECT ONN.Caption As NODE,…
-
You should be able to do this with an alert. Trigger Condition - the names of the nodes you want to change (it's really useful if they all follow the same naming standard) Reset Condition - reset the alert after 5 minutes (Doesn't matter if we run on a schedule anyway) Time of Day - schedule you want the tag criteria to…
-
If you just want to view the polling method for nodes already in Solarwinds, you can do this by going to Manage Nodes, click the blue arrows on the top right to add a column, scroll to the bottom of the list and check the Polling Method box. You will then see a new column showing WMI, SNMP, ICMP, etc.
-
There is a Success Center article here that explains how the Hardware field is populated:- Success Center
-
I also had issues with timeouts whilst showing netpath in NOC mode with iframes. I logged a support ticket and this was the answer: “Both Netpath and PerfStack will not respect the timeout setting due to a limitation in the platform. This is scheduled to be addressed in an upcoming release.” So unfortunately as of right…
-
SWQL is something I'm learning slowly, I think your basic query will be something like this:- SELECT AA.AlertObjects.Node.DisplayName, AA.AlertObjects.Node.CustomProperties.AssetType, AA.AlertActiveID, AA.AlertObjectID, AA.Acknowledged, AA.AcknowledgedBy, AA.AcknowledgedDateTime, AA.AcknowledgedNote, AA.TriggeredDateTime,…
-
I had this problem with NPM 12.0, with the help of support we managed to trace the memory leak to one particular availability report After deleting and re-creating this report the memory leak didn't come back.
-
You could use some SWQL to to do this. For example, adding Top XX Volumes by Disk Space used and then in Filter Volumes something like VolumeDescription LIKE 'C:\%' AND SysName LIKE '%SOL%' will produce the following. However, I haven't tested adding multiple AND statements if your servers don't have a naming pattern you…
-
You can do this in SAM using the SQL Server User Experience Monitor. Create a new application monitor template. Add component monitor and select sql server user experience monitor. Select or add credentials and port number as required. Enter the SQL query to Select Count from required table. Add the sql server instance…
-
I am having the same problem now with NPM version 12.0. The solarwinds information service v3 will suddenly start using up around 3gb memory per minute until it maxes out all of the available memory. This is happening on our main poller and web server which has 64gb ram, so the information service v3 will use ALL of this.…
-
I had the same problem a while ago and found this post which shows a group membership report https://thwack.solarwinds.com/thread/60884#219841 I then edited the default node page to display the report.
-
You could try this. I haven't tested for your case specifically but I am using similar functionality. It's not a report but would list all the nodes in the same place. Create a new custom property called SNMPStatus In the trigger actions for the existing alert add an action to change custom property Configure this action…
-
I have the same issue after upgrading to UDT 3.4 as part of an NPM 12.5 upgrade. The fix in the article here works but UDT 3.4 is not listed as affected. Success Center
-
If this is Server 2008 and you are seeing error 1501 relating to SNMP in the system log then this article may be of relevance https://support.microsoft.com/en-us/help/967800/an-snmp-transport-is-disabled--and-snmp-event-id-1501-is-logged-when-l
-
To list only the C drives you can use a filter VolumeDescription LIKE 'C:\ %' There is a list of volume variables here if you need other categories Volume variables for Network Atlas tooltips
-
Just to add that the event for adding a node seems to be ActionTypeID = '24', so just add that to the query above:- SELECT TOP 200 TimeLoggedUtc, AccountID, ActionTypeID, AuditEventMessage FROM Orion.AuditingEvents where ActionTypeID = '25' or ActionTypeID = '26' or ActionTypeID = '24' order by TimeLoggedUtc desc;
-
It's possible to use custom html for this but it may not produce the best looking dashboard you've ever seen. Essentially you create a new summary view, add the custom html resource and then add the html link to your resource utilization widget The html will be something like this <iframe src="paste link to your resource…