Comments
-
Apologies Brett but I missed this response of yours. Noted that you are interested and just to say that I haven't forgotten about it as almost daily my SWQL skills are tested and very much found wanting.
-
If it isn't an out of the box option (i.e. you don't have a Cisco device) then you can do it via a UnDP. First you need to find the right OID(/s), then build the UnDP, and then build the alert.
-
Have you tried a repair or reinstall? Possibly a corrupted DLL.
-
Sorry but that's a step beyond my SWQL skills. Also you are now moving away from this being a KPI widget.
-
You mean like this: https://documentation.solarwinds.com/en/success_center/orionplatform/content/core-deploying-an-agent-sw422.htm Alternatively you can deploy an Additional Polling Engine (APE) if a risk of clashing IP ranges is an…
-
Sorry - that was my bad - I managed to cut the WHERE line altogether. Now edited for future use!
-
I can't promise it has them all, but: Orion.Settings should have what you need.
-
Did you try the code I posted? Just change the last line to whatever figure you want, and remove any JOIN or link to custom properties that you don't need/want. e.g. SELECT COUNT(*) AS [Sub 99.9% Available] FROM ( SELECT [Nodes].Caption , AVG([Nodes].ResponseTimeHistory.Availability) AS [Availability] FROM Orion.Nodes AS…
-
It has had on and off traction throughout the year. Part of what slowed any take-up (I think) is KMSigma's announcement about the book. That said - if you have any ideas about how to practically do this, then I'm all ears. I don't know of any "meeting software" that's free and would allow us to keep notes or similar, but…
-
For the virtual F5's we manage, we have found that config transfer works most reliably using SCP.
-
So presumably your 'group' is created via a custom property? If so, you need to do a JOIN to that table and then utilise whatever your CP is. A suggestion, using your code above is: SELECT n.Caption AS [Node Name] , n.Status , n.StatusDescription AS [Status Description] , n.DetailsURL AS [Node Details URL] , n.MachineType…
-
Where are you getting stuck? We have a sub 90% availability covering the last 7 days. The code also JOINs to Orion.NodesCustomProperties so that we can pull in a CP for customer prefixes to restrict the widget to specific clients. Anyway the code for that is: SELECT COUNT(*) AS [Sub 90% Available] FROM ( SELECT…
-
I've been trying to get together a group of S(W)QL novices to see if we can create a study group (or similar idea). Full thread is here: https://thwack.solarwinds.com/product-forums/the-orion-platform/f/orion-sdk/91251/swql-study-group-for-the-complete-novice---thoughts - ultimately it turns out @"KMSigma.SWI" is writing a…
-
What's your ticket number please, as I might have some access to folk(s).
-
What errors / messages / etc are you seeing in the event logs?
-
What we've done in the past is to reach out to our customer manager.
-
@"taylorray" - that's a huge sidestep from not being able to backup a device. Again, I suggest YOUR own thread in NCM > Forum (here) would be better.
-
This one is primary - you only need to worry about the first row response, but the in this case the 2nd row just duplicates the result.
-
The first trick is to ensure your HA pair of Fortinets are set up with their own management address - that way you can monitor the state of each firewall independently. You will also need to create a UnDP using the OID: 1.3.6.1.4.1.12356.101.3.2.1.1.4 (fgVdEntHaState), and its possible results are: * 1 is Primary * 2 is…
-
v3 introduces stronger access controls, so you'll need to check your config on the router to see if it is restricted. From memory, as I haven't done this for a long time... so, SNMP View defines what you can see so I'd start there and ensure it has access across all OIDs. The view must be associated to a Group which in…
-
You say when you browse in manage node, but what are you browsing on? As far as I know it is the IP that is considered the part that can't be duplicated.
-
You would be better starting your own thread with full details of the issue. What switches (model, etc)? What are you seeing (or not)? What have you tried? Including basic troubleshooting like ping, ssh, etc from your poller/APE? Any error messages?
-
So this may be a 'granny sucks eggs' moment but traps operate via UDP port 162 - firewall rules and possibly any ACLs you use will need to allow these. To clarify ... that's outbound from the node(s) and inbound to the server. You could try a tool like PortQry…
-
If you expand the table, you don't see these purple blobs? Also, what version of SWQL Studio are you running?
-
First understand @"m_roberts" caveat... However, if you simply want the same widget to appear on two pages then the only real solution is to re-create or re-add the widget. In the case of the Network Atlas map, then you would need to look at your current map widget settings, and if it shows this: then, as far as I know,…
-
Hi ... I'm pretty sure it can't do that, and that you need to either manually kick off a backup. The only possible solution I can think of is that you use a custom property of some form - say call it "new_node" with a Y/N option. Then during discovery assign it to Y and then have an automated job that runs on a daily basis…
-
SolarWinds doesn't cover other manufacturers - depressingly. https://documentation.solarwinds.com/en/success_center/ncm/content/ncm-working-with-firmware-vulnerability-data.htm But you can vote on the request for HP/Aruba/HPE kit, created here:…
-
What model of switches are you using?
-
Well of course - silly old me. Thanks.
-
Nice write up. I do this for setting our default priority level (which change engineers always forget to do), but I need to work out how to stop it creating an alert entry so I don't need to go and acknowledge several thousand every few months. It's probably a simple tick bot / setting that I'm missing.