Comments
-
Since SAM 6.2.1 there are deployed client libraries for 3 versions of Jboss library - 8.2, 7.4, 7.1.1. But because they are not fully compatible - with libraries from ver. 7 we are not able to poll WildFly 8. Client libraries from WildFly 8.2 doesn't poll JBoss 7.1.1 ... So you have to choose, which version will JMX Bridge…
-
blitzsonik wrote: Wouldn't this work: UPDATE [main Orion database name].[dbo].[AssetInventory_Polling] set Enabled = 1; This will not work. If the node has not been assigned Asset Inventory, then there is no such record in the table. Record in [AssetInventory_Polling] is not the only change, which happens when AI assigned…
-
All things are lawful unto me, but all things are not expedient ... Well, I would not recommend touching AppInsight settings directly in DB. Specially disabling some components could break down whole AppInsight app. For a generic (non-AppInsight) application, such touch to DB would be safe. But I don't believe, that…
-
As a workaround for a big part of OrionWeb console, you can modify CSS this way: \Program Files\SolarWinds\Orion\Web\SolarWinds.css .sw-platform-connect-info {display:none;} \Program Files\SolarWinds\Orion\Web\ui\Views\Shared\_Layout.cshtml <style>.sw-platform-connect-info {display:none;}</style>
-
Disable components in AppInsight applications - SolarWinds Worldwide, LLC. Help and Support Is there any notice regarding direct DB modification?
-
I would recommend not to enable Asset Inventory for many hundreds of agentless nodes in single bulk. If the nodes are polled via the Orion agent, then it is not an issue. But if all they are WMI agentless nodes, enabling them in one step could cause overloud of poller server in the time of polling (once per 24 hours or…
-
In recent versions of Asset Inventory, It is possible to disable multiple nodes using SWIS verb Orion.AssetInventory.Polling.DisablePollingForNodes. So you can call it in SWQL studio like this: To generate a list of NodeIDs, which are required here you can use SWIS query similar to this: SELECT CONCAT('<int>',…
-
here is article, which describes what privileges needs Orion COnfiguration Wizard for DB user: support.solarwinds.com/.../Database-permission-error-in-the-Configuration-Wizard-for-Orion-Platform-products
-
it will hide the web page element .sw-platform-connect-info so this should touch just the icon. I don't expect any side effect.
-
Might it be a file access permission issue?
-
As a workaround for a big part of OrionWeb console, you can modify CSS this way: edit file \Program Files\SolarWinds\Orion\Web\SolarWinds.css at this row to the end: .sw-platform-connect-info {display:none;} edit file \Program Files\SolarWinds\Orion\Web\ui\Views\Shared\_Layout.cshtml at this row to the end:…
-
I think for a major part of OrionWebconsole you can hide the icon by such a hack: * edit file \Program Files\SolarWinds\Orion\Web\SolarWinds.css * add to the end of content such line:.sw-platform-connect-info {display:none;} * edit file \Program Files\SolarWinds\Orion\Web\ui\Views\Shared\_Layout.cshtml * add to the end of…
-
There can't be any "GO" statement in the query. GO is not a Transact-SQL statement. It was just for run in management SQL studio. Remove all the testing stuff. Also SET TRANSACTION don't copy to report. Let there be just the SELECT statement for the report.
-
Do you have "Query Type:" selected SQL? We need use SQL ... not SWQL
-
Do you run it against right database? By default SQL management opens master database ...
-
Well, we have performance issue with our SQL query. We should join it with table of Application to use existing table indexes in effective way. Let's expect, that name of template starts with string "HTTPS". If the expectation is not right, please modify the line " AND at.Name like 'HTTPS%'" correspondingly ... SET…
-
When you add such line before query in SQL management studio: SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED GO Does it still takes long to execute the query? How large your tables are? What numbers reports such script? SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED; GO SELECT COUNT (*) FROM APM_AlertsAndReportsData GO…
-
If it was not in database, you receved error like this: Invalid object name 'APM_DailyComponentAvailability' It is not table but view, so it is may be reason, why you can't see it in table list .... Have you tried to dsiable the date condition from query? When you run such query in SQL management studio, what you get?…
-
Is there blank table with column headers? May be it is correct, if you created the monitor in December, then there were no data from November. Try remove or comment out from the WHERE clause the date condition ... /* AND [DateTime] BETWEEN dateadd(m,-1,DATEADD(mm, DATEDIFF(mm,0,getdate() ), 0)) AND…
-
If you want something like this Then the way is use "Custom HTML" resource. http://www.isoftland.com/docs/solarwinds/orion/Solarwinds_Orion__MultiInterfaceStatisticsView_Technical_Doc.pdf
-
What does it do, when you press "Preview results" button?
-
But this one is pure SQL. Please, choose SQL.
-
Is this similar issue as DNS User Experience Targets IP 169.254.x.x? If so, then it could be addressed by fix in some next release (SAM-3315).
-
I think it is okay, that you use port 8080. I gues aLTeReGo was afraid - If you were using some other port (eg. port 80), then you would change the port number in application settings. Because you use default port 8080, you don't need change anything.
-
jonathanswift wrote: As support articles go that is a pretty bad example of one - it's got no date (to place it in time), nor any details of what versions of SAM it relates to. We have the very latest SAM so you would think it would have been fixed in that version - hence if they said this article relates to SAM 6.2.4, and…
-
When the node is agentless-node (polled remotely via WMI), then the VB scripts are copied from poller via admin share to monitored node. When the node is an agent-node, then the script is generated locally by local agent service.
-
Continue and finish creating of the node. Once node is created, Orion start to poll its information. Then go to detail page of the node, you shud see hierarchy of VMs, which belongs to it.
-
joe.peterson wrote: Thanks for all the replies Bronx, I believe all the options you posted will work, just noticed why I couldn't do them. I have tried Firefox, IE, and Chrome using windows 8.1, and I only have the Multi Edit option. My Screen: Your Screen: Very odd, not sure if that is an evaluation issue or what. I am…
-
The Automatic Update data polling was reworked little bit to collect correct data on Windows 10/2016. But getting of pending updates number was working via VB script since the introduction of Asset Inventory in 2013. There were some bugfixes - the creation of temp file with VB script didn't work correctly on some Windows…
-
Do you have "Query Type:" selected SQL? Which version of SAM do you have?