This is a discussion on [rrd-users] Re: How to handle upper limit spikes within the RRD Users forums, part of the Networking and Network Related category; That sounds interesting. Particularly if some logic could be introduced so that the logarithmic scale was used only when a ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
That sounds interesting. Particularly if some logic could be introduced so
that the logarithmic scale was used only when a particular threshold had been exceeded. "Jim Eshelman" <jeshelman@colubr is.com> To Sent by: "Alex van den Bogaerdt" rrd-users-bounce@ <alex@ergens.op.het.net>, list.ee.ethz.ch rrd-users@list.ee.ethz.ch cc Jeffrey 10/12/2006 09:31 Petter/EMPL/NY/Verizon@VZNotes AM Subject [rrd-users] Re: How to handle upper limit spikes That looks like a very handy solution. How about using a logarithmic y scale as another solution that will show the whole story on the graph? ________________________________ From: rrd-users-bounce@list.ee.ethz.ch on behalf of Alex van den Bogaerdt Sent: Thu 10/12/2006 9:08 AM To: rrd-users@list.ee.ethz.ch Subject: [rrd-users] Re: How to handle upper limit spikes On Thu, Oct 12, 2006 at 08:53:07AM -0400, jeffrey.j.petter@verizon.com wrote: > I'm graphing various firewall data, and one of the graphs shows the number > of connections along with accepted packets. Typically, the number of > connections may be in the neighborhood of 30,000 and the packets may be in > the 1,200 - 1,800 range. Then, every other day, sometimes more frequently, > there will be a spike in packets sending it up over 10 M, which skews the > scale so severely that it makes the graph meaningless for 24 hours until > the spike has passed. I have played around with setting an upper limit, but > then the real story of the spike is never told. Is there a way to somehow > note the spike, but still keep the graph in some meaningful perspective? something like: DEF:realdata= ...etc... CDEF:despiked=realdata,2000,GT,INF,realdata,IF LINE2:despiked#0000FF:despiked GPRINT:realdata:MAX:%6.2lf after debugging this, you should end up with: plotting all data upto 2000 as is, data above 2000 will just reach top of graph but does not influence scaling. Printing the maximum uses realdata, thus shows 10,000,000. Isn't there a similar example in one of the tutorials? -- Alex van den Bogaerdt http://www.vandenbogaerdt.nl/rrdtool/ -- Unsubscribe mailto:rrd-users-request@list.ee.ethz.ch?subject=unsubscribe Help mailto:rrd-users-request@list.ee.ethz.ch?subject=help Archive http://lists.ee.ethz.ch/rrd-users WebAdmin http://lists.ee.ethz.ch/lsg2.cgi -- Unsubscribe mailto:rrd-users-request@list.ee.ethz.ch?subject=unsubscribe Help mailto:rrd-users-request@list.ee.ethz.ch?subject=help Archive http://lists.ee.ethz.ch/rrd-users WebAdmin http://lists.ee.ethz.ch/lsg2.cgi -- Unsubscribe mailto:rrd-users-request@list.ee.ethz.ch?subject=unsubscribe Help mailto:rrd-users-request@list.ee.ethz.ch?subject=help Archive http://lists.ee.ethz.ch/rrd-users WebAdmin http://lists.ee.ethz.ch/lsg2.cgi |