Comments
-
I posted a reply with a solution, but it got marked as spam. I appealed, so hopefully it pops back up here in the future. If you'd like the steps, please connect with me on thwack and message me. I can let you know how I was able to replace the graphic with text (or another image if you want).
-
I want preface this by saying: I am not a CSS, JS, or HTML guru by any means and I have no idea what I'm doing. Make backups and be prepared to revert in case this doesn't work for your environment HOWEVER.... I did find a way to at least display custom text instead of the graphic if you are interested. * On the main NPM…
-
Can you confirm that you included the single apostrophe ( ' ) on both sides of the word Disabled in the CASE statement? I ran the query without them and it returned the same error. Here is the full query I ran in my environment: SELECT TOP 10 n.DisplayName, CASE WHEN n.OperationalState = 0 THEN 'Disabled' WHEN…
-
Hello! If you are still looking for a solution to this issue, there is a work around using the ExecuteSQL verb in the Orion.Reporting entity. This will allow you to run database queries using the API without having to pass DB creds in any of your scripts. Here is what I whipped up to test that this verb actually works on…
-
Hello! Not sure if you still need the solution to this, but I figured I would include my solution since we recently started actively digging into Modern Dashboards in my environment and I also thought this was a great detail that was sadly missing! The table you would need is the "Cirrus.NCM_NCMJobsView" table, which…
-
I'm assuming you are following the OrionSDK template located HERE. There is a commented section near the top of the file that includes instructions on how to create a new group using different definition filter methods: # CREATING A NEW GROUP # # Creating a new group with initial Cisco and Windows devices. # <# Filter…
-
Until this (hopefully) gets implemented... A workaround that I've used in my environment is to add a Text Box to the Orion Map next to the Node. In the options for the Text Box, expand the "Behavior" section and input the following text: /Orion/SSH/Terminal.aspx?NodeID={NodeID} Just make sure you replace {NodeID} with the…
-
Again, apologies for not being able to test in my own environment, but I'm hoping something like this should give you the Node Caption of the DPA server. SELECT [N].Caption , [PI].DisplayName AS [Name] , [PI].ProductVersion AS [Version] FROM DPA.ProductInfo [PI] JOIN Orion.DPA.DpaServer [DS] ON [DS].DisplayName =…
-
For most SolarWinds products, the following Custom Query should give you what you're looking for: SELECT CASE WHEN Name = 'APM' THEN 'Server & Application Monitor' WHEN Name = 'IPAM' THEN 'IP Address Manager' WHEN Name = 'NCM' THEN 'Network Configuration Manager' WHEN Name = 'NPM' THEN 'Network Performance Monitor' WHEN…
-
I was able to use the following query in my environment. You should just need to replace the "TEST-CONTROLLER" string in the WHERE statement below. SELECT n.Caption AS [Caption] , n.IP_Address AS [IP Address] , n.DetailsUrl AS [_LinkFor_Caption] FROM Orion.Nodes n WHERE (Caption LIKE 'TEST-CONTROLLER') This should yield…