Comments
-
When you assign that template to a node it will pull the cert and display the days remaining as a statistic value, on the default views its about halfway down the right column. Here's a screenshot from my lab -Marc Netterfield Loop1 Systems: SolarWinds Training and Professional Services * LinkedIN: Loop1 Systems *…
-
The only way you can do that is the custom HTML resource leveraging something like javascript to access the other db. Another trick you could use is custom table resources with a SQL query and setting up a linked database so you can navigate between them.
-
The complex condition makes it so both conditions have to be true, but they don't have to be the same object. So in this case you have said if any node at all has the phone alert true and any node has a down neighbor it should trigger. I find in reality that I VERY rarely use them. Just remove the whole complex part and…
-
I haven't had to play with this myself but from the past I recall that you may be able to eliminate that from inside the database on the [dbo].[NotificationItems] table by setting that to ignore. I don't know if the license count notification generates a new notification periodically or if it is just showing the same entry…
-
A few ways to go about it, could do a table like this: Or you could just do a filter on the top volumes by space used resource like this
-
That query looks very familiar haha First thing i see is that your join to the interface table looks a bit off, should be like left join Orion.NPM.Interfaces i on i.nodeid=n.nodeid I would use a left join because not all nodes have interfaces. Also, you are not using the icon syntax correctly "END AS transmit_icon" and…
-
Most likely what you are looking for is the all nodes tree (ajax)
-
Connection refused does not indicate that you are on the wrong template, it usually means you are connecting via telnet when you need ssh, or the other way around. Also could be getting jammed up with a firewall/acl kind of situation. Easiest way to verify is fire up putty on your polling engine and try to connect to the…
-
If you monitor the vcenter server that controls the hosts this VM lives on (even without VMAN) you can report on this. Add a vCenter, HyperV host, or standalone ESX host for monitoring in VMAN - SolarWinds Worldwide, LLC. Help and Support
-
There should be no relationship between reboots and the collected metrics. If you say the application is running slowly and are seeing disk latency in the 90-140 ms range then you basically already have identified an issue. I normally expect my systems to have latencies under 20 ms, but obviously each company sets their…
-
No that would just look at each individual value and alert if they were individually greater than 10. When dealing with SAM components i absolutely never create alert conditions where the threshold lives in the alert logic. I only set up alerts in the form of "alert me when component is critical" and inside the component I…
-
There is no native capability to edit the footers on the webpage, and if you modify the website settings and CSS templates to make it how you want they would be undone any time the configuration wizard runs. You can do custom footers on reports.
-
Lem retains all data until the disk is nearly full then starts deleting the oldest records, so unless you need to maintain an archive that goes back farther than what you can fit on the disk (maxes at 2 TB) these backups aren't necessary for the purposes of looking at past data. Now for good practices you should be…
-
The simplest way to make that happen is in the alert trigger page check the box that says problem must exist for _ minutes, keeping in mind that WPM transactions are usually on 5 minute intervals, so 10 min = 2 attempts
-
For Windows nodes the using WMI it usually populates the location with it's AD Site, for example one of my labs has all the servers showing with 'Default-First-Site-Name' because we didn't specify anything more useful when we stood up the environment. Presumably all these nodes are actually joined to the domain and…
-
Have you noticed the appinsight tab called Queries? Seems like it has almost everything you want. Outside of that, using the SQL experience monitor you wont be able to build what you want, it is intended as a simple check. Getting more elaborate and using a script to call SQLcmd.exe and parsing the results of that into a…
-
It will definitely be in SAM since NPM doesn't have any kind of support for things like this. You will probably end up needing to build a custom script monitor that interacts with PLC appliance.
-
Solarwinds staff are super strict on their "do not promise timelines" policy. You will not catch them on here making any estimates of how long before anything comes out until the feature has already been released in a beta. In the mean time aLTeReGo did post this cpu poller into the content exchange Huawei CPU/Memory
-
So far I haven't come across anything in the db specifically measuring the loads, but this custom SWQL report is what I've put together so far, obviously only works if you are running ipam 4.6. Lists off all the engines that have subnets assigned to them, counts out the total number of subnets, how many of those subnets…
-
The devices themselves generally report their thresholds as part of the mib.
-
When im debugging a template I often just change the output to $env:username and $env:computername to confirm that my script is running under the expected account and on the expected system.
-
Worth pointing out that WMI based nodes automatically get this value from their AD Site name, so if this isn't being populated it means you are talking about Windows boxes using SNMP or linux machines. Windows SNMP settings can be controlled via GPO so they don't have to muck around logging into servers and Linux has a sea…
-
Several examples here of how to interact with groups in powershell OrionSDK/Groups.ps1 at master · solarwinds/OrionSDK · GitHub
-
Create a report and for the data source filter it to nodes where caption contains East, then just pick the columns you want to display in the report.
-
Doing direct sql edits is not recommended as there tend to be lots of changes that need to happen to multiple tables. Even when the sql edit appears to give the desired results it tends to leave behind inconsistencies in the db that can bite you later. If you have scripts you should look into having them interact with the…
-
Assuming that I understand your request correctly I would have a sub group for each redundant pair and set the subgroup to best status, then set up an alert if a sub group is down. Something like Group A Group A routers - best status A-1 A-2 Everything else And alert logic that was group status is down and group rollup…
-
The flow data that NTA uses does not contain any user information like that it's all packet Header information. If you have user device tracker installed then you can click on to that IP address end point and UDT would display information about the user accounts that were logged into that IP at various times
-
I like seeing how you appear to have beat the SWI devs to the punch, since it was pretty clear that the eventual goal for the map was to replace atlas and newmaps v1 and v2 was just them laying the groundwork for the intended capabilities. You have proven that the guts are in there to do it already
-
If you have purchased licenses already then all of the installers from the customer portal are offline, I believe the eval versions use the web based installer to make it easier to tie downloads and installs to sales opportunities. Everyone knows about the well earned reputation that the hard working team at Solarwinds…
-
You can't do that in the script directly, but you can accomplish the same goal with compliance reports and remediation scripts. The reports will look through the config for whatever regex lines you give them and if it finds them you can set up scripts to remove the offending code and insert the correct one. It takes a…