Comments
-
Switch to this script below and it'll be in Message The goal with this script was to cover as many certificate types as possible while also getting cert name and days remaining. If it's available at https://${IP} it'll do that. If not it'll try to look in the windows certificate store, it'll return the worst certificate so…
-
$statistic = $Null $date = Get-Date $URL = "https://${IP}" $WebRequest = [Net.WebRequest]::Create($URL) $WebRequest.UseDefaultCredentials = $true $WebRequest.PreAuthenticate = $true $AllArray = @() Try { $WebResponse = $WebRequest.GetResponse() $Cert =…
-
Try the error variable it's probably in there If it's not in there I've got a powershell equivalent that puts it in a message variable (which is still labled "error" in some places)
-
Been doing a bunch of these custom recently This is the start point: https://developer-docs.citrix.com/projects/netscaler-nitro-api/en/12.0/performing-basic-netscaler-operations/ You want to get a login for the netscaler, create a API poller on the netscaler node page, then follow the auth steps in there. Try using basic…
-
Bookmark this link it's what you want https://github.com/solarwinds/OrionSDK/wiki/SWQL-Functions CONCAT and ROUND are the functions that let you clean up data (also "/1024/1024/1024 AS [column name]" etc for moving from bytes to KB to MB to GB etc) JOIN accesses other tables. But usually you'll want to open SWQL Studio,…
-
I think alterego guessed the same thing i'd guess first - The VM has a poor status, which is linked to the node layer, but is otherwise distinct and doesnt show up easily when the node layer object is asked. VM poor statuses when there isnt an obvious cause is probably due to an alarm in VMware/HyperV. You can verify this…
-
Working on NSX-T via SAM at the moment, very possible there.
-
Havn't got 2020.2.6 on the environment with this fault yet, but do have the update on another environment. The issue apparently stemmed from handling passwords in the API section, perhaps sanitizing the input or failing to sanitize the input, not sure. In 2020.2.6 I've recently added a credential that would have triggered…
-
Are you using NXS-T to create virtual AVI LBs? Or did you sort the problem? I'm working on this at the moment and i've got partial success, but dont know much about the AVIs yet
-
Ooh nice to know! Any downsides of implementing that?
-
Sometimes alerts want all their HTML in single lines. Strip the nice formatting out and you're probably good. No idea why.
-
This occurs when you have null (0) returned, you need to do a CASE statement or a UNION or something to stick something in the result Worth mentioning as well it'll return the top left value of a table if you specify a table's worth of data to return. (FOR XML PATH) to fix that
-
Hi Jan, I upgraded to 2020.2.5 SAM HF1 in one environment that had this problem, problem persists another environment without the hotfix works fine. The error complains about 127.0.0.1/.../basicAuth which is a server 500 error in browser as well as in the error. If i try in the working environment i get a brower with a…
-
A couple examples related to authentication or function SLW callback with basic auth doing something fancy Meraki Vmware/Horizon Nvidia At least one ticketing system
-
Other, political/silo'd/people not getting back/not knowing who the right people are/etc
-
As a UK person who had a similar estate I can confirm the use case works SLW will take a swing at lat/long values based on the address format in the SNMP Location field (or the AD/WMI equivalent). It can go very wrong based on formatting. It may be worth looking into/testing good formats if you've got a good way of getting…
-
Probably e.PoolMember.Status, (from orion.engines e) Might be calculated from keepalive, need a dev to confirm for sure
-
Without W3W you can import lat/long values in a custom properties import Export device list -> Excel together some addresses/postcodes from somewhere -> Postcodeconverter.com -> add lat column and long column -> settings -. custom properties -> import -> set lat and long to update worldmap(lat) and worldmap(long) This'll…
-
Hi Rajesh. Orion.Engines mostly
-
Thanks for getting back with such a detailed reply so fast! JB - Time Travel or Historical Tracking is absolutely available... AB - Had no idea! I assume as it's a toggle there's a downside here, is it for CPU or DB size or something? AB - Editing "behaviour"... JB - ... If you would like a custom object to inherent status…
-
Hi @"jblankjblank", I remember reading through this about when it was posted, but I've been doing a lot more mapping recently and I've got some questions Is the time travel feature still implemented? Under what conditions is it available? I've never found the view history icon as pictured above, is that a fault? How/Can…
-
Hi Akash, Just a heads up - I'm on 2020.2.5 with an IPSLA orion maps component working ok. That said I see this message all the time when a new UI component has timed out but not actually kicked me off. New UI stuff doesnt seem to respect the "dont time out" setting. Maybe that?
-
Very keen on it, yes please
-
Are you one of the api poller devs by chance? Would love to talk about the feature if so. Started using this quite a lot recently, it's a great feature that really needs a few extra bits.
-
On 2020.2.5 at the moment (had the issue on upgrade I believe). The support team have told me hotfix 1 addresses the problem but i;ve yet to get a window to implement the upgrade
-
If a macro completes with no results it shoots back the macro text for some reason. Adding a case statement or similar to produce a blank space or something when it finds nothing yields proper results sometimes.
-
Same problem here in one of my environments. Anyone come across a fix?
-
Hi Kevin, I've had a hard time with movules in powershell in solarwinds recently - I've got vmware.hv.helper and it's supporting modules installed globally, and running commands from them from the SW box works fine, but in SAM if i dont import the module it fails, and if I import the module it fails to import correctly a…
-
Did you hit "Test" in the "Edit Script body" window before committing to "Save"? Message.Statistic is suspicious here. Also, what module is invole-sqlcommand part of? (doesnt exist in my instance) You might need to import it in the script and/or set local variables and/or check impersonate Modules in SAM work but the rules…