Comments
-
I'll check in a bit. I am doing the QA run on the upgrade from 11.5.3 and just rolled back.
-
Also, where I can round it off in the Web GUI, it still passes the un-rounded data to the alert as metric data. That one is probably harder
-
This is mainly an issue on Windows VMs. We are going to look at auto-discovery and scripting an API job yo find volumes dead for over x days and delete them. That is like the old process of custom properties to mute alerts that has now been incorporated into the product. We'll engineer something that should be core…
-
The GUID for the polling address is the same in the nodeIPAddress (IPAddressN) and Nodes (IPAddressGUID) tables. I could use this to update the polling address: use SolarWindsOrion go update nodes set IPAddressGUID = Na.IPAddressN, IP_Address = Na.IPAddress from interfaces I join NodeIPAddresses Na on Na.NodeID=I.NodeID…
-
Nope, community support. I have found the support here to be very good.
-
I think you need the condition to be "Application Name" contains "Connect-Clarity" OR "Application Name" is equal to "Connect-Clarity" unless you have applications named * Application * Server * Storage * Database as literal strings. If you want to test for Application properties, you need to look for them and make an…
-
1) does this script fail for all nodes or just this one? Does the deletion operation fail for other entity types (interfaces, volumes) A - I have not found any nodes that I can delete. I have tried Agent, WMI and ICMP. All fail with the same error. I have tried it from different sources, to no benefit. B - I can…
-
The script works on our QA systems, but not on our Production system. I have tried it with 1.9 and the current release, 2.1.13 On 2x, Get-PSSnapin | where {$_.Name -eq "SwisSnapin"} returns this: Name : SwisSnapin PSVersion : 2.0 Description : PowerShell Snap-in for the SolarWinds Information Service
-
Yeah, I fat fingered it... Code run on both PRD and QA: if (-not (Get-PSSnapin | where {$_.Name -eq "SwisSnapin"})) { Add-PSSnapin "SwisSnapin"; } $swis = Connect-Swis -host OrionServerName -UserName 'User_Name' -Password 'User_Password' $a = Get-SwisData $swis 'SELECT Uri FROM Orion.nodes where caption = @host' @{host =…
-
You are correct, that doesn't help. I upgraded from 10.7 to 11.5 just 3 weeks ago, and there is NO WAY we are upgrading again so soon or to a brandy new release. This is a big miss on SolarWinds part! BTW...Say Hello to Steve K for me.
-
I set as above...I'll let you know. Thanks
-
That does not seem "Enterprise" scalable or worthy. On AIX servers, there can be A LOT of DB2 instances, and on big Linux boxes there can be many Apache instances. There must be a way to programatically probe the node and find the instances and populate template properties appropriately.
-
I did a Thwack search and only came up with 5.x and 6.x stuff. Any pointers to other solutions would be great.
-
...or make an ssh connection and use command-line scripting and/or the MySQL template in SAM.
-
Does this limitation apply to auto-updates only or does it also limit the number of parallel updates from the Manage Agents screen? Also, is this system wide or is it on a per poller basis? I have seen that the update is pushed from the agent's poller.
-
How do I do it now in 10.6.1?
-
BTW... What is the HTML for this format?
-
I threw the call to assign the poller into a Try{} /Catch{} loop and got this: try{ # Status $poller["PollerType"]="N.Status.ICMP.Native"; $pollerUri = New-SwisObject $swis -EntityType "Orion.Pollers" -Properties $poller } catch{ $errMsg = $_.Exception.Message Write-Host $errMsg } " Cannot convert value "PollerType" to…
-
Hi Steve Still unknown this morning. BTW...Since I do not like leaving connections open, what is the PS call to close the connection? Looks like good data: PS C:\WINDOWS\system32> $nodeProps Key Value --- ----- NodeID 285 ObjectSubType ICMP IPAddress 10.xxx.xxx.xxx IPAddressType IPv4 DynamicIP False Caption…
-
Yup. I have now gone to this code, which seems to be a reliable indicator: # Test Unamanaged ATMs connectability between the poller and the agent. Remanage any that have connectable agents$agentToRemanage = Get-SwisData $swis 'SELECT AgentStatus, ConnectionStatus, Agent.Node.Caption as Name, Agent.Node.NodeID FROM…
-
I simply added a "Custom HTML" element/View/resource, placed ping.aspx in c:\inetpub\SolarWinds\Orion\NetPerfMon, and edited the properties for the custom HTML as follows: Set the title to pull the node name "Ping ${caption}" and set the link in the lower edit field to <iframe src= "/Orion/NetPerfMon/ping.aspx?IP=$"…
-
This works from withing the Node Details page... <iframe src= "/Orion/NetPerfMon/ping.aspx?IP=${IP_Address}" frameborder=1 height=225 width="100%" scrolling=no align=center></iframe>Very cool!
-
Has anyone implemented this as a Custom HTML resource? How do I pass ${caption} to it?
-
I took a different apporach. I built a table with all sites and their lat lon, SiteLatLon. I tag a custom property with a site code with a SQL script based on a set of rules that loop the device name through a set of rules. In the Google maps aspx I put this (indent formatting added for clarity): SELECT CASE WHEN Status=2…
-
Here is one solution (custom SQL report SQL) declare @offset int SET @offset = DateDiff(hour, GetUTCDate(), GetDate()) select Caption, case when UnManaged = 0 then 'no' when UnManaged = 1 then 'yes' END as MMode, dateadd(HOUR, @offset, UnManageFrom) as UnManageFrom, dateadd(HOUR, @offset, UnManageUntil) as UnManageUntil,…
-
I am bumping this up to the top! We have recently installed NCM, NTA, NPM, etc... I have been asked by the NOC folks how do they import/convert their existing CiscoWorks templates into NCM. I have searched this site and the knowledge base. The only thing I found about importing CiscoWorks templates is...this one. Is there…
-
Assuming you alert on node down... You can play with this as a custom SQL report: Select Cast(_Bank_Name As nvarchar(250)) as _Bank_Name, caption , Cast(_Circuit_ID As nvarchar(250)) as _Circuit_ID , status, StatusDescription , Cast(Address As nvarchar(250)) as Address , Cast(City As nvarchar(250)) as City,…
-
SolarWinds is domain agnostic. That is why you need a domain qualifier in your login: abcd\a.smith or xyz\b.rubble
-
Cross posted in NPM
-
Yes, at least in 11.5.x and above. It is the Send HTTP Request action. I have not figured out how to configure proxy information, if needed.