Hello everyone,
I´m trying to get some information using SWQL and put the information in a dashboard using table widgets.
My goal is get node name, target, interface ID and total bytes, but I need to restrict the data using time range.
Does anyone have any suggestion or other tables to join to these?
SELECT
N.NodeName,
I.InterfaceName,
F.InterfaceID,
F.DestinationHostname,
F.DestinationIP,
F.TotalBytes
FROM Orion.Netflow.FlowsByInterface AS F
JOIN Orion.Nodes AS N ON F.NodeID = N.NodeID
JOIN Orion.NPM.Interfaces AS I ON F.InterfaceID = I.InterfaceID
WHERE
( F.DestinationHostname LIKE '%xxxx%'
OR F.DestinationHostname LIKE '%xxxx%')
AND N.NodeName LIKE '%XXX%'
Tks