Comments
-
I've done some work before on this, but don't have access to any Nvidia currently. Have you had a look at nvidia-smi?
-
Have you had a look at https://github.com/solarwinds/OrionSDK ? It's got a wealth of knowledge and documentation around SWQL. But while you're reading the docs, here's a quick and dirty starter to get you going. SELECT n.Caption, n.CPULoadHistory.AvgLoad, n.CPULoadHistory.AvgPercentMemoryUsed, n.CPULoadHistory.DateTime…
-
Hi Musman12362, It's the formatting of the time that is messing it up, try this AND o.AlertActive.TriggeredDateTime = '2024-10-24 12:38:58' Rich
-
Hi eem4osg Yes, here is one way you could do it: Create a Node Custom Property such as Critical Node True/False (Yes/No). Navigate to your Manage Alerts view and search for the "Node is Down" alert Copy the out of the box "Node is Down" alert and rename the copy to something like "Critical Node is Down", then add into the…
-
Hi k4jnt, You most certainly can, have a look at this manual page: documentation.solarwinds.com/.../core-network-discovery-using-the-network-sonar-wizard-sw1574.htm
-
Hi Michal Have you seen glink's NCM template? It might be a good starting place for you. thwack.solarwinds.com/.../914
-
Hi Robert, I'd translate the curl to PowerShell for staters (https://curlconverter.com/), then check the manual on how to utilise the stored credentials. I hope it helps, Rich
-
Hi ImNishat, This is easily achievable with a little bit of SWQL: SELECT Caption, IPAddress, Description, SNMPVersion, ObjectSubType FROM Orion.Nodes
-
Hello, Try this SWQL: SELECT TOP 1000 AA.AlertActiveID, AA.AlertObjectID, AA.TriggeredDateTime, AA.TriggeredMessage, AA.AlertObjects.EntityCaption FROM Orion.AlertActive AS AA
-
Hi hgharsallah, Which report or can you supply the SWQL query it is based upon?
-
Hi hs08, it's probably because $output.SignatureLastupate is null. $test = Get-MpComputerStatus | Select-Object AntispywareSignatureLastUpdated $av = $test.AntispywareSignatureLastUpdated If ($av) { Write-Host "Statistic.av: 1" Write-Host "Message.av: $($av)" } Else { Write-Host "Statistic.av: 0" Write-Host "Message.av:…
-
Hi hs08, Glad to hear that you sorted the PowerShell remoting issue, what was the resolution? First find the component IDs for the monitors (replace XX with the NodeID where the monitors are applied): SELECT ApplicationID, Application.[Node].[Caption], Name, Application.[Components].[ComponentID],…
-
Hi hs08, There's a great section in the manual about PowerShell monitoring and tips on correctly setting up WinRM to allow it. If you haven't seen it, its a great place to start, and it'll take you through the steps to make sure that: WinRM is enabled and properly configured on the SolarWinds Platform server and target…
-
Have you had a look at the Orion SDK? https://github.com/solarwinds/OrionSDK/wiki/NCM-Connection-Profiles
-
I had a look at this this morning, and I think it's possible. I first created a new HTTPS application template, in which I added 5 HTTPS monitors and took note of the Application Template ID (which was 261). Then with a little bit of SWIS PowerShell I was able to update the Url key values for each of the HTTPS monitors:…
-
Hi Karamdsad12, There's a good article on the support site that gives troubleshooting steps for this issue.
-
Hi Eleyson, If you have SNMP configured IPAM will pick up on the devices System MIB and extract the devices sysName. Otherwise, IPAM only has DNS to go on for the devices name.
-
Mine was being blocked by my pi-hole, as soon as I disabled the service for 5 minutes it loaded ¯\_(ツ)_/¯
-
Have you had a look in C:\Program Files (x86)\CatTools3\InfoLog.txt around the time the backups were scheduled, it might give you a clue.
-
Have you checked that it is not already loaded? The vast majority of the Cisco MIBs are precompiled into the system, and it's very rare to have to request Support's assistance.
-
Hi s.calisto, For the QNAP devices, have a little explore of 1.3.6.1.4.1.24681.1.2 (QNAP systemInfo), and you'll find the vendor's CPU, Mem Total and Free presentations. These might give a more realistic view. Sophos however appears to just use the HOST-RESOURCES-MIB, and I can't find any other vendor/enterprise specific…
-
Hello BaldFeegle, I spotted this post in a quiet moment, and it got me thinking. I think you are correct that the groups are ignored in the native regex capabilities, but then we do have PowerShell to fall back on. $data = @( '1 2024-03-21T15:21:01+00:00 vsmart1 OMPD 2975 - [meta sequenceId="10218"]…
-
SWQL Guru @"tdanner" posted a reply in this: thwack.solarwinds.com/.../given-sysuptime-in-seconds-how-are-you-doing-date-math-to-display-days-hours-mins-seconds Also try looking at LastBoot as it is in a DateTime format. SELECT n.Caption ,n.Lastboot ,DayDiff(n.LastBoot, GetUtcDate()) as [Days_Since_LastBoot]…
-
Hi soureddyjcr, SAM requires that the returned data must have a Statistic: <value>, and an optional Message: <value>. Anything else will fail. Have at look at: https://documentation.solarwinds.com/en/success_center/sam/content/sam-linux-unix-script-monitor-sw3260.htm TLDR; # Output 1 if count is greater than 0, otherwise…
-
We had a customer who asked us to monitor their 4/5G backup lines. What they didn't tell us is that the IPs were dynamic and changed frequently, or that connections would drop if a large truck passed in front of them. When they baulked at the idea of paying for static IPs, we gave up monitoring their backup lines.
-
Schedule a discovery session, with the IPs (or IP range) and suitable credentials, that scans every few hours?
-
Hi hs08, The easiest way would be to enable the CISCO DCHP SERVER MIB traps (on the device) for DHCP scope or pool utilisation. Then setup the relevant alert in Orion, off the incoming trap event. Rich
-
Steve, These are IPAM Groups which are in reality subnets, that need to be defined in the system before they get polled for IP usage. Manually this takes a few minutes per subnet, so using SWIS is very handy for when there's more than a few to do Or you second comment, that's not an enviable task you have there. But if the…
-
Good morning ctech291, Firstly get yourself over to: https://github.com/solarwinds/OrionSDK There you'll find the SDK, along with the SWQL Studio - the perfect place for SWQL And all the docs for SWQL and the SDK. Though as the SWQL your using has a variable built in, but by…
-
Is it the square brackets wrapped around the uri in the swis.invoke? I tested it and it didn't accept the uri in the braces, as it formats it as a list.