Comments
-
I had a different issue and was told the same thing, that upgrading to the latest version would fix it. I think they just say that with no facts to back it up. Solarwinds support is the worst I've ever come across in my 25 years in IT.
-
@"bmrad" - Not sure what your role is or if you're still interested...but I've uploaded the diagnostics and support suggested that the OIDs were returning zeros which implied a problem with the network device. We investigated that and it turned out to be false. Then he suggested that upgrading to 2022.4.1 would fix the…
-
Just reopened the case and uploaded diagnostics now.
-
No it was not. The case number is 01239684. Would really appreciate any help you can provide.
-
Same here on 2022.4.
-
I eventually opened a case about this and they confirmed that the ability to specify your website directory has been removed. It's hard coded to "C:\Program Files (x86)\SolarWinds\Orion\Web"
-
Yes to both. Also, this is a better query for the action. The 'Top 1' and 'Order by datetime desc' are essential for getting the right value: RX Percent Errors: <b><Font Color=RED>${N=SWQL;M=SELECT top 1 Round(ie.ReceivePercentErrors, 2) as RXPercentError FROM Orion.NPM.Interfaces AS Interfaces JOIN…
-
I struggled with the same thing for a long time. This is what I came up with. Give it a try and let me know what you think. This alert runs every 5 minutes, and triggers when an interface has more than 2 % errors for at least 30 minutes: Trigger Condition: Custom SWQL Alert (Advanced) Interface SELECT Interfaces.Uri,…
-
No clue...I never got an answer. Just another unsolved Solarwinds mystery...
-
Thank you Tony, that helps clear things up immensely!
-
The more I look into this, the more confused I get. I had on-prem, Orion Platform which I thought was being rebranded as Solarwinds Platform. I upgraded to 2022.3 and under Program Filles I see it is now called Solarwinds Observability. But you're saying that is the name for SAAS offering. These terms are confusing, and it…
-
I agree that it is confusing. My understanding is that Solarwinds Platform and Hybrid Cloud Observability are still two different products. And yes there is a 3rd branch of product now called Solarwinds Observability. If you have an old installation, that is probably what they use to call Orion Platform (with NTA and LA)…
-
Asking to have my case escalated to an AE was very effective. Keep that in your back pocket for sure! The AE that I got eventually suggested this and it worked. I can't say I understand what it does and or why it was necessary, but it did clear out the majority of my unknown topology connections. * Go to…
-
You should have the online and offline download available in your Solarwinds portal. I used the offline .iso file and completed my upgrade in Dev yesterday. It looks different but preformed reasonably fast and easy. However, I've 'lost' my HA configuration and the location of the website root directory seems to be hard…
-
We've done SNMP walks and cannot find the corresponding entries. I've just asked him to escalate to an AE. Case # 01117098
-
Yes, that's it! Hubble / Ludicrous Mode...very close
-
@"adatole" I'm interested in the content of the blog you referenced above but it looks like the link is dead. Is there a different or equivalent resource?
-
I divided the min, max, and avg values by the bandwidth to determine that something like InPercentUtil is really InPercentUtilAvgerage. Why not call it that? The Min and Max have to be computed.
-
I have 189 million rows...pretty sure that is not normal.
-
Looking for the same thing...what table contains the alert trigger details??
-
That works, thank you!
-
Yup, last month. So in the example above, The OutpercentUtil for Interface 10075 between April 1 and April 30.
-
SELECT i.INTERFACEID,i.OutPercentUtil,i.Datetime FROM Orion.NPM.InterfaceTraffic i --WHERE i.interfaceid = '10075' AND ((i.DateTime BETWEEN DATEADD(MONTH,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE()),0)) AND DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE()),0)) <- SQL WHERE i.interfaceid = '10075' AND (i.DateTime BETWEEN (adddate…
-
Yes, and frankly it just frustrates me that SWQL is so similar, yet different.
-
Got it, that helped immensely. Final solution: Get-SwisData $swis "SELECT top 5 ContainerID, Name, Owner, Frequency, StatusCalculator, Description, PollingEnabled FROM Orion.Container WHERE name like '[0-9]%' order by name desc" | foreach {Invoke-SwisVerb $swis "orion.container" "UpdateContainer" @($_.ContainerID, $_.Name,…
-
I opened a case online at the same time yesterday and attached diagnostics. Waiting to hear back. I'll update this with the results once I hear something.
-
The security advisory also reads that you should "scan their environment for the affected file: SolarWinds.Orion.Core.BusinessLayer.dll. If you locate this .dll, you should immediately upgrade to remove the affected file." Is that accurate? Remove SolarWinds.Orion.Core.BusinessLayer.dll regardless of the version??
-
This looks promising but I don't understand where to put the query. Can you provide more details about how the resource is configured?
-
@"mrxinu". I assume you really meant Set-SwisObject. After looking into that, it looked to easy! But when I run this, I get that Set-SwisObject is not supported on groups? PS U:\> Get-SwisData -SwisConnection $swis -Query "Select top 5 uri from Orion.groups where name like '[0-9]%' order by name desc" | Set-SwisObject…
-
Make sure Solarwinds is pointing to the SQL Availability Group name, and not individual SQL servers. Also, your diagram implies that the active main server is in one site with the active SQL server, but the active APE is in the other site. That means the APE will have to connect to SQL over the WAN and likely to have…