quote:Originally posted by Network_GuruDo not use the Node Names in the report. Base the report on a custom property which is assigned to all 4 routers. Then use that only that name in the report.Then, under interfaces in the Custom Property editor create a description under something like 'Circuit number' such as "Outbound" on each of the four interfaces. Then in Report Writer filter on "Where Circuit number = "outbound". You will get a single figure based on the aggregated traffic seen on all interfaces with the "outbound" description assigned to them.I do this for the Call Centers which have multiple routers & links, when I create the Monthly Data transferred to/from each Call Center report.-=Cheers=- NG
quote:Originally posted by Don YonceJemini,There are a number of ways to do this. Here are a couple ....Method one - download and install charts built for YahooWe built some custom charts like this for Yahoo some time ago that would show traffic for all aggregated Internet links. you can download them from ftp.solarwinds.net/.../YahooCharts.zipDownload this package and follow the ReadMe.txt in the zip file.Method two - View with a custom limitationThis method works for Network Performance Monitor version 7.6 and greater. If you are not running version 7.6 pre-release, you will need to wait for the upgrade before this feature is available.You can tell what verion of Orion you are running from the bottom of any Orion web page.From your Orion web site, build a new View named "Internet" and place the Network Wide charts you would like on it. Then apply a "View Limitation" to the "Internet" View. (Applying a View limitation is new in version 7.6). Limit the view to the list of Interfaces you would like to see combined on a single chart. Whenever you select this view, the charts will now show the aggregated data for the Interfaces you selected.
<TEST1-PercentUtilization> <ID>TRAFFICUtil1</ID> <Poller>Summary</Poller> <Name>Traffic Utilization</Name> <SQL> SELECT Datetime, SUM(avginbps) as InPercentUtil, SUM(avgoutbps) as OutPercentUtil FROM ( SELECT Convert(DateTime,Floor(Cast(DateTime as Float)/${SampleSize}*1440)*${SampleSize}/1440,0) As DateTime, avg([IN_Maxbps])/1000000000 as avginbps, avg([OUT_Maxbps])/1000000000 as avgoutbps, interfaces.interfaceid as interfaceid, interfaces.outbandwidth as bandwidth FROM InterfaceTraffic INNER JOIN Interfaces ON InterfaceTraffic.InterfaceID = Interfaces.InterfaceID WHERE Interfaces.Interface_service_type2='from_backbone_to_bj' And interfaces.adminstatus * interfaces.OperStatus = 1 And interfaces.operational = 1 And DateTime >= ${PeriodBegin} And DateTime <= ${PeriodEnd} GROUP BY Convert(DateTime,Floor(Cast(DateTime as Float)/${SampleSize}*1440)*${SampleSize}/1440,0), interfaces.interfaceid, interfaces.outbandwidth ) as avg_table INNER JOIN Interfaces ON Interfaces.Interfaceid = avg_table.interfaceid /*temp table*/ GROUP BY Datetime</SQL> <Where>[your sql query WHERE option]</Where> /*add SQL query option here,same as the WHERE section,same as the SQL section above*/ <Title>Backbone Traffic Inbound Utilization</Title> <SubTitle>Total Bandwidth 4Gb+3*155Mb</SubTitle> /*add the total bandwidth manually*/ <SubTitle2>${Period}</SubTitle2> <PlotStyle>Bar</PlotStyle> <Units>%</Units> <ComparisonSubsets>0</ComparisonSubsets> <RAxisSubsets>0</RAxisSubsets> <DataTable>InterfaceTraffic</DataTable> <Rescaleable>No</Rescaleable> <Icon>Step</Icon> <Axises> <XAxis> <Label/> </XAxis> <RYAxis> <Label>% packet loss</Label> <ManualScale>Both</ManualScale> <ScaleMin>0</ScaleMin> <ScaleMax>102</ScaleMax> <AxisColor>&H000000FF&</AxisColor> <Format>||%</Format> </RYAxis> <YAxis> <Label/> <ManualScale>Both</ManualScale> <ScaleMin>0</ScaleMin> <ScaleMax>2</ScaleMax> /*add the total bandwidth manually*/ <AxisColor/> <Format>| ,|| G</Format> /*add the bandwidth data format manually*/ </YAxis> </Axises> <PlotStyles> <Line/> <Bar/> <Spline/> <Step/> <Ribbon/> <Points/> <PointsPlusLine/> <PointsPlusSpine/> <BestFitCurve/> <BestFitLine/> <Area/> </PlotStyles> <Subsets> <InPercentUtil> <Name>Receive Utilization</Name> <Field>InPercentUtil</Field> <Color>&H00FF8080&</Color> <PointStyle>2</PointStyle> <LineStyle>Medium</LineStyle> <SubsetType>Avg</SubsetType> <Direction>Receive</Direction> </InPercentUtil> <OutPercentUtil> <Name>Transmit Utilization</Name> <Field>OutPercentUtil</Field> <Color>&H00008000&</Color> <PointStyle>7</PointStyle> <LineStyle>Medium</LineStyle> <SubsetType>Avg</SubsetType> <Direction>Transmit</Direction> </OutPercentUtil> </Subsets> </TEST1-PercentUtilization>
The Yahoo zip file is not available at the link specified, and without it I'm not sure how to apply the code shown in the previous couple of posts. I'm looking for a way to summarize link bandwidth data into one chart for multiple interfaces, so I think this would be ideal for me.
Thanks!
Hi, Same thing. I'm very interesting in having a graph that summarize 2 or more load balanced interfaces.