Hello,
I am trying to troubleshoot a issue of high CPU usage occurring intermittently on 1200 nodes.
I found a thread where I can create a PerfMon link.
I can get a single component to work, along with overall node CPU, but I am having an issue structuring a query to be able to display 2 different components with a single link url.
I have tried a self join, but get an error about displaying a link from two different sources.
I have not had any luck with a SELECT sub query either.
I am hoping a SWQL guru can point me in the right direction.
SELECT OAA.Node.Caption
,'PerfStack_Template_A' AS [PerfStack-A]
,'ui/perfstack/?presetTime=last10Minutes
&withRelationships=true
&charts=
0_Orion.Nodes_' + TOSTRING(OAA.NodeID) + '-Orion.CPULoad.MaxLoad;
0_Orion.APM.GenericApplication_' + TOSTRING(OAA.ApplicationID) + '-Orion.APM.ProcessEvidenceChart.' + TOSTRING(OAA.Components.ComponentID) + '.MaxPercentCPU;
' AS [_LinkFor_PerfStack-A]
FROM Orion.APM.Application OAA
where OAA.NodeID = '%${SEARCH_STRING}%'
and (OAA.Components.Displayname = 'java.exe' or OAA.Components.Displayname = 'Poseidon Agent')