What is this?

This knowledgebase contains questions and answers about PRTG Network Monitor and network monitoring in general.

Learn more

PRTG Network Monitor

Intuitive to Use. Easy to manage.
More than 500,000 users rely on Paessler PRTG every day. Find out how you can reduce cost, increase QoS and ease planning, as well.

Free Download

Top Tags


View all Tags

Peak Bandwidth per Day on an Interface

Votes:

0

Is there a way to create a report that will give you just the peak outgoing bandwidth per day on an interface for say a month?

bandwidth peak prtg

Created on Dec 13, 2018 2:08:49 PM



3 Replies

Votes:

0

Hello there,

Unfortunately this is not possible. PRTG only shows the maximum value in a specific time span in the corresponding graph.


Kind regards,
Birk Guttmann, Tech Support Team

Created on Dec 18, 2018 3:13:03 PM by  Birk Guttmann [Paessler Support]



Votes:

0

In theory you might be able to do a API call to accomplish this.

Let's say you use .XML or .CSV as output of the historic data you want to see.. you then can run through the lines reported and grab the highest value, reporting this back to where you want to see it.

I am not certain this would work in a report - but it certainly can be accomplished in a script that can provide you the data somewhere.

https://prtg.domain.local/api/historicdata.csv?id=11111&sdate=2018-12-11-00-00-00&edate=2018-12-18-00-00-00

  • The API call would need some authentication if used in a script - that's well documented.
  • The ID needs to be of the sensor you want to access.
  • The values sDate = StartDate and eDate = EndDate need to be set by the script before calling the API.

You should expect a .CSV content in this case, it also allows .XML - what you could process then in the code directly and run through the lines to find the highest value in the desired column.

Links that will talk about this:

Having said this - it could be an interesting feature in general to see the Min/Max values for a certain time period by default in PRTG either with API calls or even on reports. This function already exists for the LiveData API - it shouldn't be to much of a hazzle to generate it via a historic data API call that would only report those. But as long this does not exist, you can work around it while processing the historic data and determine the highest and lowest value on your own in a script.

Regards

Florian Rossmark

www.it-admins.com

Created on Dec 18, 2018 5:35:24 PM



Votes:

1

The difference with live data and historic data is that the maximum channel value is a global value, easy to update (when new data is coming in.) Getting the extreme values for a specific time frame on the other hand requires to read / process that chunk of data stored on harddisk.

One can schedule a report per day and in this sense, gets the maximum per day. To keep the report settings tab manageable, we only added options for which we see wide usage. For more complex data analysis, we offer data export so the data can be processed with other applications.

We intentionally only implement basic API operations. (There are a few exceptions where the API provides some kind of syntax sugar in order to ease its use.) The processing of the data provided by the API should be done with external applications, as this is the most flexible way compared to a couple of pre-defined options. (We are also cautious to not overload the PRTG core service.)

Created on Dec 18, 2018 8:30:58 PM by  Arne Seifert [Paessler Support]

Last change on Dec 18, 2018 8:38:05 PM by  Arne Seifert [Paessler Support]




Disclaimer: The information in the Paessler Knowledge Base comes without warranty of any kind. Use at your own risk. Before applying any instructions please exercise proper system administrator housekeeping. You must make sure that a proper backup of all your data is available.