Comments
-
Which version of SAM or SCM did you have before the upgrade? 2019.4 or something older?
-
Since the version of AssetInventory - 2020.2.1 the update polling can be disabled by an advanced configuration setting ScriptPollingEnabled.
-
Check log file on polling Orion server: \ProgramData\Solarwinds\Logs\APM\jmxbridge.log There should be more details regarding the errors.
-
* * If net-SNMP is not required, what is the method being used to collect these statistics? To get the pieces of information agent runs traditional utilities or virtual directories like * /proc/stat * /proc/meminfo * df * ip addr show
-
This issue was fixed in SAM 6.2.3 If you have got older SAM but it has been upgraded by NPM 11.5.3 or newer it should be fixed as well.
-
May be would be good idea do the lockfile mechanism more robust - to remove the lockfile in case that some exception/error occures ...
-
Have you checked "Run the script under specified account" for the component? If not, it will run on Agent node with identity of local SYSTEM account. So it has no access to other domain machine. When you check the setting "Run the script under specified account:" on, then the PowerShell session will run on agent machine…
-
Does polling run via agent or agentless?
-
There is document how to migrate Orion's database: http://www.solarwinds.com/documentation/Orion/docs/MovingYourOrionNPMDatabase.pdf
-
Hi Rio, it seems that for JBoss 7.2+ (aka EAP 6.1+) is possible configure JMX remoting without touching the JVM startup parameters. For me was working on the standalone configuration such steps: * call .\bin\add-user.bat to add a user for monitoring (select Management User, About to add user '...' for realm…
-
joe.peterson wrote: In the PDF is says that this is only for exchange 2010, but there doesn't seem to be a way to remove this component from the monitor. The PDF says, that monitor on resource "Database Metrics" is only available in Exchange 2010. But there are two monitors with name "Average Document Indexing Time" - one…
-
SOLARWINDS SERVER & APPLICATION MONITOR ADMINISTRATOR GUIDE V6.2 (DRAFT) can be found here: SolarWinds Server & Application Monitor Administrator Guide v6.2 (DRAFT)
-
I'm afraid that there is no such possibility. May be this feature request could cover the scenario - Have you tried to ask support/sales representative to extend the eval period?
-
The issue is related to problem described here - PowerShell leaking memory when using IIS cmdlets : The Official Microsoft IIS Forums It is possible to configure Orion Agent to recycle worker processes the same way, which uses Orion poller. It should minimize the impact, because then the process SWJobEngineWorker2x64.exe…
-
When you add your ESX or vCenter as node to SAM, with VMWare credential, then you can see all hierarchy of machines which belongs to it. When you click to any VM in virtualization tree, then Orion asks you, if you want add the machine as node and start to poll HW information.…
-
Are you using Agent or Agent-less poling?
-
To create a new view: 1. Log in to the Orion Web Console as an Administrator. 2. Click Settings in the top right of the web console. 3. Click Manage Views in the Views group. 4. Click Add. 5. Enter the Name of New View, and then select Summary as the Type of View. Note: The Type of View selection affects how the view is…
-
Hi Kenny, step one - create new custom view step two - add "Custom Object Resource" to the page. Via Custom Object Resource you can add resources bounded to different objects (Nodes, Aplications) on one page Foor details look into this book http://www.solarwinds.com/documentation/apm/docs/SAMAdminGuide.pdf - chapter…
-
You can vote for it ...
-
There are some IronPort templates: * Cisco IronPort (PowerShell) * Cisco IronPort (SNMP) Also if you have NPM then may be using UnDP could be better approach then SAM.
-
When you download and install Orion SDK, the example how to add Node via PowerShell is here: c:\Program Files (x86)\SolarWinds\Orion SDK\Samples\PowerShell\CRUD.AddNode.ps1
-
* Run this against your Orion database: INSERT INTO [dbo].[SCM_QueryElement_ExclusionRules] ([NodeID] ,[ProfileName] ,[ElementDisplayAlias] ,[ExclusionFilter] ,[ColumnsToExclude] ,[Active]) VALUES (NULL ,'SW inventory' ,'Software Installed' ,'' ,'InstallDate' ,1) * Force poll now for all relevant nodes * Wait until poll…
-
When Asset Inventory polls Windows Update info for node polled in agent-less mode, it remotely executes VB script. It look for temporary folder like \\{{IP}}\C$\DOCUME~1\{{USER}}\LOCALS~1\Temp or \\{{IP}}\C$\Users\{{USER}}\AppData\Local\Temp If no folder like those found, then it fails with the error message…
-
The "Browse for Component Monitor" is designed just to add new component. But what could help for your scenario is template copy -
-
See this
-
As alternative - it could be possible to unmanage nodes using PowerShell script verb during the maintenance period. There is SWIS verb named Orion.Nodes.Unmanage for it.
-
Since SAM 6.2.4 there is setting for timeout of the Top indexes query. If you have issues with it, you can increase the timeout. This statistics has it's own polling frequency - default value of it is1 hour (3600 sec). So the timeout can be set to value like 20 minutes (1200 sec).
-
Hi, short script example how to extract such value using a regular expression: Get-Content -Path 'D:\myTestFile.txt' | Where-Object {$_ -match '^Total Messages:.*\b(?<theNumber>[0-9]+)\b'}| Out-Null; $Matches['theNumber'] Hope it helps, Tomáš
-
As far, as I know there is no built-in functionality to disable it. You could try, at your own risk, modify your Orion database in this way: SELECT [Name] as [NameXml] ,CAST(CAST([PollingDescription] AS VARCHAR(MAX)) AS XML) as [PollingDescriptionXml] INTO #MyTempTable FROM [dbo].[AssetInventory_PollingDescription] WHERE…
-
There could be possibly problem with JMX running behind strict firewall. Then there is alternative how monitor Java Application servers using SNMP. See this article WebSphere monitoring behind firewall