Hi all,
I am looking for bandwidth utilisation report for every 5minute
Do you want a report or an alert?
Because you put this in the Alert Lab forum.
By default, the platform only polls interfaces every 120 seconds (2 minutes) so having a 5 minute report might not show you want you think it'll show. Fair warning.
Also, how far back do you want to go? Forever will pretty much destroy your system if you have any length of polling.
You could build a custom report with the following SWQL query to get you started:
SELECT [I].Node.Caption AS [Node] , [I].Caption AS [Interface] , [I].TypeDescription AS [Type] , AVG([I].Traffic.InAveragebps) AS [Bps (In) Average] , AVG([I].Traffic.OutAveragebps) AS [Bps (Out) Average] , AVG([I].Traffic.TotalBytes) AS [Total (bytes) Average] , DOWNSAMPLE([I].Traffic.ObservationTimestamp, '00:15:00') AS [Timespan] -- Summarize down to 15 minute intervalsFROM Orion.NPM.Interfaces AS [I]WHERE [I].Traffic.ObservationTimestamp >= ADDDAY(- 1, GETUTCDATE()) -- Only show the last 24 hoursGROUP BY [I].Node.Caption , [I].Caption , [I].TypeDescription , DOWNSAMPLE([I].Traffic.ObservationTimestamp, '00:15:00')