Hello,
I want to make TopN application custom chart of NTA.
Because I want to make this graph for any interfaces pair, I am trying this by custom graph with following SWQL query.
Graph is shown on NTA dashboard. (Attached image file).
But, all application are shown on graph.
I want to make TopN graph to configure condition in SWQL query.
Can i do this using SWQL query ?
-----
SELECT
F.TimeStamp As Time,
A.Name AS ApName,
SUM(F.Bytes)*8/60 AS DataBytes
FROM Orion.Netflow.Flows As F Inner Join Orion.Netflow.Applications As A ON F.ApplicationID = A.ApplicationID
WHERE (F.TimeStamp > GETUTCDATE() - 7) AND ((F.InterfaceIDRx = 500 AND F.InterfaceIDTx = 501) OR (F.InterfaceIDRx = 501 AND F.InterfaceIDTx = 500))
GROUP BY F.TimeStamp, A.Name
Order By Time, DataBytes DESC
----
Best regards,
KH