Comments
-
regarding the ALTER TABLE SWITCH error dbm_ExecuteMaintenance: dbm_AggregateData_part: dbm_AggregateTimeSerie_part: ALTER TABLE SWITCH statement failed. The specified partition 1 of target table 'SolarWindsOrion.dbo.ResponseTime_CS_Daily_hist' must be empty. It can happen to any table with _CS_Daily_hist suffix. We are…
-
xtraspecialj it works in my environment, have you changed the file on right website? I mean just double check that you didnt modify additional website for example. Regarding Config Wizard, it can rewrite your website in some cases, can you make sure that the APM.css still has the modification? And also one stupid…
-
darlonjeel do you still have the issue? can you send me your IT ticket, we in R&D would like to have a look
-
OK, it's not so easy to inject the snippet, because there is asynchronous loading of resources. Simplest way seems to modify APM.css and remove definition of the apm_TableLayoutFixed class. The file sits on c:\inetpub\SolarWinds\Orion\APM\APM.css and here is the part to remove: Please keep in mind, that this modification…
-
I tried and it works for me, see below. I configured the node as External node (without polling) and I assigned the HTTP monitor only. There are default settings except the Search string. Isn't a firewall between SAM and the server in internet? If you have access you can login to SAM server and enter the URL to the…
-
It looks like PowerShell isn't configured, please run configuration as described here SolarWinds Online Help If the dialog doesn't appear, click on "Edit Application Monitor", enter/choose credentials and run Configuration from this place.
-
you found a bug probably problem is in apm_TableLayoutFixed css class on the table, you need to inject following script: <script type="text/javascript">$("td[class='PropertyHeader']:contains('HCTESTSTATUSES Message')").closest('table').removeClass('apm_TableLayoutFixed');$("td[class='PropertyHeader']:contains('CPU…
-
I don't recommend changing logon account of JE. Why not to start your script in new process with runas verb: Run sudo in Windows in Stapp.space
-
Is the "cw" computer (and the network share) accessible from Orion using configured credentials? Or in case that agent is used the reason could be that it runs under LocalSystem. Good starting point would be when it stopped polling.
-
you can get a node ID by running this query: $nodeID=Get-SwisData $swis 'SELECT NodeID from Orion.Nodes WHERE IPAddress=@ip' @{ip='127.0.0.1'} and remanage the node by invoking Remanage verb: Invoke-SwisVerb $swis Orion.Nodes Remanage "N:$nodeID"
-
Regarding the error message, does your user have enough permissions? I think that it needs at least View-Only Organization Management: Exchange 2013 Help
-
It depends which template do you use, for example Exchange 2010 Statistics with PowerShell runs on target server, but the older one Exchange 2007-2010 Mailbox Send and Receive Statistics with PowerShell runs on Orion box. You can see prerequisites, there's always where Exchange Management Tools must be installed. On target…
-
Thank you for detailed description. The file name in Database size by file resource has a tooltip as shown below: If the volume space is not available the available space for auto-grow is 0 and that's why Remaining free space is 0 in the email.
-
For using in C# you don't need Orion SDK, however if you don't mind about programming language and powershell is sufficient for you, install Orion SDK, there's a sample how to add a node, just open Orion SDK.pdf included and look for chapter Adding a Node for Monitoring.
-
would you open a case? we would like to look at the problem more deeply thank you
-
Just to clarify: * fill $instancePrefix variable with prefix of monitored process, for example for monitoring "alertingengine[2516]" processes fill "alertingengine", * be carefull, searching is case sensitive, so searching with "Alerting" prefix will not find anything, * let the $instanceName variable empty, it will be…
-
yes, it is: install the SDK and check documentation, there's example how to do that, here's a copy: $now=[DateTime]::Now $later=$now.AddDays(1) Invoke-SwisVerb $swis Orion.Nodes Unmanage @("N:1",$now,$later,"false") parameters: * N: followed by the id number of the node to be unmanaged; for example: N:12 * Unmanage start…
-
I guess that there's missing end of the hashtable, I mean add ending curly bracket "}" before semicolon
-
It seems to me that SWQL queries some data from alerting tables. Can you please share the SWQL?
-
Just use -Credential parameter, following works for me: $os = Get-WmiObject -Class Win32_OperatingSystem -Property BuildNumber,CSName -ComputerName ${IP} -Credential ${CREDENTIAL} Write-Host "Message.OS: $($os.CSName)" Write-Host "Statistic.OS: $($os.BuildNumber)" exit 0; No "Run the script under specified account" is…
-
Hi Sergey, do we have any update on this issue? Please can you submit a support ticket at SolarWinds Customer Portal:? We would like to solve the issue, it would be nice if you can help us. Thank you Jan Elias SolarWinds Developer
-
Hi, please would you run following query and dump results here? SELECT a.AccountID, a.AllowAdmin, awup.PermissionName FROM Accounts a LEFT JOIN dbo.APM_WebUserPermissions AS awup ON awup.AccountID = a.AccountID WHERE a.AccountID = 'EXIAR\?????????? ?????' or you can send results directly to jan.elias@solarwinds.com Thank…