Comments
-
I believe ToLocal() is the local timezone of the Orion Server if I'm not mistaken so you may want to check its timezone. Either way though you could add an hour by doing this to the ToLocal() functions. AddHour(1, ToLocal([SuppressFrom])) AS [LocalSuppressFrom], AddHour(1, ToLocal([SuppressUntil])) AS [LocalSuppressUntil],
-
Is the windows firewall blocking them? Wireshark will see them even if they’re block by the windows firewall. Also is the view that you’re using setup to show these?
-
It would likely be very similar to the query I made here. If I have time I’ll dig into it. Table names in SQL are often close (if not the same) to SWQL. https://thwack.solarwinds.com/t5/NPM-Discussions/Traps-setup-issue/m-p/597421#M147807
-
If it's just the SolarWinds Web UI that group has access to, then it's pretty straight forward. I don't think there's any official documentation out there on this but I have run through this before in different scenarios without issue. Had to make changes to both AD groups / individual accounts and SAML groups / individual…
-
There's ways to do this in SWQL or SQL if needed, but what may work is configuring the UnDP to count as a difference and set the UnDP warning threshold to be if not equal to 0. I don't have something to test this but in theory it sounds awesome. Hope this helps, and good luck!
-
When you edit a node, you would want to edit the statistics collection intervals (measured in minutes). This is how often cpu/memory metrics are polled for that node. You can also go to settings -> all settings -> polling settings, and change the settings globally. Yes this does have an impact on your polling engine load.…
-
PS C:\WINDOWS\system32> & "C:\Program Files (x86)\SolarWinds\Agent\SolarWinds.Agent.Service.exe" -help Here is a list of the valid command-line arguments: -provision [-s] [-menu] [-console] [-debugConsole] [msgbox=<Boolean>] [deviceID=<string>] [provisionID=<string>] [wait=<long_ms>] [-recreateCert] [-startUI]…
-
Specifically talking about updating the custom properties, you could look at these great examples to update custom properties... https://github.com/solarwinds/OrionSDK/blob/master/Samples/PowerShell/CRUD.SettingCustomProperty.ps1…
-
This seems a bit backward to me but that may depend on how you structure your alerts. Alert custom properties are assigned to the definition of the alert, not a triggered alert instance on an object (entity). So think of it this way, if the responsible team property of XYZ alert definition is ‘Network Team’ then in theory…
-
Talking port security, using snmp vs the agent is not much different, but direction may have some influence on your decision like @"Seashore" mentioned. SNMP is Orion server initiated - udp/161 Agent with agent-initiated - tcp/17778 Agent with Orion server initiated - tcp/17790 Could also deploy a polling engine inside the…
-
Just to add a few more options. ### Option 1 -- Exclude 'Windows Server' SELECT n.Caption, n.IPAddress, n.NodeID, n.CustomProperties.DeviceType FROM Orion.Nodes AS n WHERE n.CustomProperties.DeviceType != 'Windows Server' ### Option 2 -- Exclude multiple values SELECT n.Caption, n.IPAddress, n.NodeID,…
-
If you’re talking about dual homing the polling engine (ape) with multiple nics that’s certainly possible if in the case Network A can’t route to Network B. Assuming no better solution is available, e.g. a dmz of sorts. Just keep in mind that SolarWinds applications will abide by the Windows routing table (get familiar…
-
Well hello there! There could be some fancy ways of pulling it out of topology data in swql but there doesn’t appear to be a variable built in for it. Best is the neighbor IP. Neighbor IP: ${N=SwisEntity;M=NeighborIP}
-
This is the only documentation I've ever found on variables. https://www.solarwinds.com/documentation/en/flarehelp/orionplatform/content/core-orion-variables-and-examples-sw1115.htm A quick way to figure out variables beyond that though is by going into Settings -> All Settings -> Manage Alerts -> Action Manager, then edit…
-
I have so many questions.... but first some comments. The path your SolarWinds server takes to poll these devices has very little to do with SolarWinds, depending (for the most part) entirely on how your network infrastructure is configured... e.g your routing (route metrics, route-maps, protocols {bgp, ospf etc.}…
-
Could you post the alert logic / trigger condition? Is that issue only happening on one node or multiple? Is it from a true alert or are you simulating the action?
-
With SAML it opens up an entirety of possibilities as the authentication is handled by the iDP (identity provider) and once the use is authenticated, refers them back to the service provider (SolarWinds in this case.) I only use SAML without MFA, but I know it’s just a matter of configuration in our iDP to enable it if we…
-
Are all the servers being monitored via wmi, snmp, or the agent?
-
You could add a Write to NPM event log action. It has the ability to write custom events and text including any variable you can reference in the alert itself. If you go to Alerts & Activity -> Events, thats where they would be. Just poking around on 2020.2 NPM, there’s more actions you could assign that may help as well.…
-
Is there anything unique in the interface name or alias that could help you identify just these 100 interfaces out from the rest? Otherwise it may be useful to add a particular comment or other/new custom property to these 100 interfaces that can be used for just that purpose.
-
Hi there @"k1gaudineer" - It's possible. It doesn't appear to work the way one may expect, but the functionality is there using this ColumnSum transform formula. Below is the syntax of the formula to use in the transform. Replace ifMtu with the column header of your data. I was testing this a bit and found that it ends up…
-
Hi there - You may be hitting a bug I saw recently. I'm not sure if it's fixed in 2020.2 and/or if there's a hotfix for 2019.4 yet (I haven't checked since I worked with support on this last year.) I was on Orion Platform 2019.4 HF3, IPAM 2019.4 HF1 and was seeing imported subnets not being scanned. From everything I could…
-
Hello, All the Python samples and documentation is up on GitHub. Is this what you’re looking for? https://github.com/solarwinds/orionsdk-python Good luck -
-
Here’s where you can get started assessing your requirements. In simplest form... you stop the Orion services, take a database backup, restore that backup to your new sql server and run the configuration wizard pointing Orion to your new sql server. Obviously there’s more steps involved depending on your environment, Orion…
-
Here's something to start with - - Enjoy! SELECT ip.IPAddress, ip.MAC, net.VLAN, net.DisplayName FROM IPAM.IPNode AS ip INNER JOIN IPAM.Subnet AS net ON ip.SubnetId = net.SubnetId
-
Not sure if there's any official documentation on this at all. My guess is no, but digging around in my Kiwi Syslog server it looks like the default logo is 'C:\Program Files (x86)\SolarWinds\Kiwi Syslog Web Access\html\img\login_banner.gif'. It's a 334 x 72 pixel, 8-bit GIF. In theory, you could just create your company…
-
Lots of great examples on github. Take a look through some, they just recently added a Powershell example to update captions which may be close to what you need. This is also a great resource for SWQL and the SDK in general. https://github.com/solarwinds/OrionSDK/tree/master/Samples/PowerShell…
-
You've defined the variable $param as a hashtable, but never put a bracket at the end. Regardless though it looks like you're not even using it in the script as you're manually passing a hashtable to the command anyway.
-
I’d check that you’re monitoring all the appropriate interfaces (ingress and egress) of those routers and also layer 2 / layer 3 topology data. NetPath depends on a lot of this to accrue an accurate path through your network infrastructure.
-
Looks like the custom property is set as a required property, which means that when you add or edit the entity (node in this case) it won't let you unset it, or have a blank / null value. If you go to Settings --> All Settings --> Manage Custom Properties --> Select the custom property you need to change, and click 'Edit'.…