Comments
-
<Installation directory>\InetPub\SolarWinds\Orion\images\SubViewIcons, try placing a <custom>.png file under this directory and check for the same
-
This worked: ${N=SWQL;M=SELECT ComponentStatisticData From Orion.APM.CurrentStatistics WHERE ComponentID LIKE #####}
-
I'm finding conflicting information on this, but we were attempting to add the Windows server via SNMPv3 as we weren't receiving any v3 traps when the node was added with WMI/Agent. We were however able to adjust the snmp service and add the server via SNMPv2, but that does not allow us to receive v3 traps still. It now…
-
Yes we did a compare several times. All our other devices monitored with SNMP are non Windows devices, we little to no issues with those.
-
Thanks, didn't realize I had posted in a specific sub forum, thought it was catch all. Done
-
Wrote this up and am using for now, but open to more options: SELECT n.Caption ,n.IP_Address ,n.SystemUpTime ,ROUND(n.SystemUpTime/3600,2) AS [SystemUpTime_Hours] ,ROUND(n.SystemUpTime/86400,2) AS [SytemUpTime_Days] FROM orion.Nodes n Where n.vendor like '%Windows%' or n.vendor like '%Windows%' ORDER BY n.SystemUpTime DESC
-
I was able to do this by alerting on the component
-
The answer to this is: Script argument: \\${IP}\C$\Program Files (x86)\Folder1\Folder2\Temp\Filename\file.log Body: $FileName = "C:\Program Files (x86)\Folder1\Folder2\Temp\Filename\file.log" $SearchString = "Your search string here" $Sel = select-string -pattern $SearchString -path $FileName If ($Sel -eq $null) {…