Comments
-
Or just test it if you are afraid.
-
This limitation is extremely frustrating.
-
Any component can be disabled in the database (APM_Component) regardless if you have the GUI option or not.
-
Up voted but you can already do this with SQL macros. For example: ${SQL: SELECT CASE WHEN NodeName='Server123' THEN 'blah' WHEN NodeName='ServerABC' THEN 'whatever' ELSE NULL END AS Foo FROM Tablename}
-
The "S" in IoT stands for security.
-
I have 275 groups. Do you know how irritating it is to try and manage my groups when I can only see 15 groups at a time and I cannot search? ARG!
-
Right, there are some dependencies between the components. They are not documented but some are common sense. Its always best to test your changes first. Worst case its only going to break this monitor on this node. Gathering too much data isn't necessarily a bad thing if the cost is low and it is.
-
This feature is possible with LEM 6.3.1 HF4. Go to <Your LEM URL>/MVC/Login/ Setup your LDAP authentication Under Advanced go to Domain Aliases and enter your NETBIOS domain name. Save. Now you can log onto LEM with NETBIOSDOMAIN/User
-
We still don't have this?
-
At the heart of what we want is really an alert workflow where you can have logic define different actions. You can kind of that do that with SQL macros albeit somewhat limited. For example if you wanted to send an email action to different SMTP recipients based upon say node custom property that represented a priority you…
-
Is this still an issue with IPAM 4.3.2?
-
Can someone explain how stacking multiple polling engines on a single server increases capacity more than simply increasing more CPU/Memory of a single Orion server? I am failing to understand how stacking increases capacity vs breaking out APE to separate servers. TIA
-
Thank you for this. However the LAST SYNC date is current on KNOWN stale volumes. Does anybody know why that is? And what is a better indicator of a stale volume besides LAST SYNC? Update: Next Poll is the best indicator of stale volumes. The two columns are confusing. Last Sync is actually the last time Orion attempted an…
-
I just checked NPM 12.2 / SAM 6.4 and critical still cannot be selected as a choice in the drop down for volume status.
-
[APM_Component]
-
Yes! All of this! I've run into these limitations so often. We want basically the same script implementation for Alert Actions External Program as we have for the SAM Windows PowerShell monitor. Impersonation/Credentials and Remote Execution would be amazing.
-
I published the same findings in 2015 but my article was deleted. thwack.solarwinds.com/.../delayed-durability-write-log
-
Run a SQL Trace. The query may be timing out.
-
Yes. I'm attempting to use the same credential that I've RDP into the Orion server with. There is no script at this point in the conversation. I'm simply using the test function on the Alert Action: Execute an External Program. Here is the failed attempt to test the credential. The error message says to check the account…
-
Ticket number 1006168 opened June 22, 2016. I even mentioned this very thread in the support case. Support acknowledges known bug but confirms it is not fixed in NPM 12 / SAM 6.2.4. Ticket closed on June 28 without resolution. I just tested the function before submitting this reply and the test function will not pass…
-
Yes I'm aware and I'm happy with returning the top row. Thank you for your help.
-
I was disappointed to see that it was not resolved in NPM 12 / SAM 6.2.4
-
You had asked "how can I get the GET request response from different places within my network". The only way to achieve that is by either WPM or APE. Both allow you to monitor any website from a remote location(s).
-
aLTeReGo Support recommended the same solution in case 963355 but it did not resolve the issue. This setting is essentially just kicking the component to retry and hopefully not get the same error twice. The APM template has its own timeout. Does setting a timeout on the HTTPClientHelper work any different? I'm polling…
-
How does one test WinRm once its deployed? I have the AppInsight for IIS monitor assigned to a node using secure WinRM but I get "NOT DEFINED" when attempting to test a PowerShell script using Remote Execution mode on the same secure WinRM port. The same script will work successfully when using local execution mode. Is a…
-
Thank you frama! This was exactly what I needed to pass a cred into my script as a string.
-
Thank you very much. Both of your examples worked perfectly to display both the null and presence of the where conditions. Nested Select StatementsSELECT TOP 1 * FROM (SELECT COUNT(*) AS Total, DisplayType FROM APM_AlertsAndReportsData WHERE DisplayType = 'DoesNotExist' OR DisplayType = 'DoesNotExistEither' GROUP BY…
-
You would need additional SAM pollers at different sites to measure the response time or use WPM which also lets you play the recordings from different locations.
-
It appears your credential doesn't have adequate permissions to access the data its trying to. AppInsight for SQL requirements and permissions
-
Below is the Powershell script I run from the Node Reboot Alert Trigger Action. It works well for Windows servers but doesn't work at all for non-Windows systems. Header 1Add-PSSnapin SwisSnapin $swis = Connect-Swis -host "<OrionServer>" -username 'Admin' -password '<Password>' #Collect information from AlertStatus…