diff options
-rw-r--r-- | CHANGES | 3 | ||||
-rw-r--r-- | lib/Smokeping.pm | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ +* show all smoke in the detail graphs, even if it's out of the scale. -- niko, + reported by Oskar Liljeblad <oskar *osk.mine.nu> as Debian bug #412826 + 2007/05/02 -- released version 2.1.1 * fixed scaling of detail graphs. They were all scaled to max_rtt if it was defined --tobi diff --git a/lib/Smokeping.pm b/lib/Smokeping.pm index 1925546..6676a40 100644 --- a/lib/Smokeping.pm +++ b/lib/Smokeping.pm @@ -1006,7 +1006,7 @@ sub get_detail ($$$$;$){ '--color', 'BACK#ffffff', '--color', 'CANVAS#ffffff', (map {"DEF:ping${_}=${rrd}:ping${_}:AVERAGE"} 1..$pings), - (map {"CDEF:cp${_}=ping${_},0,$max->{$start},LIMIT"} 1..$pings), + (map {"CDEF:cp${_}=ping${_},$max->{$start},MIN"} 1..$pings), ("DEF:loss=${rrd}:loss:AVERAGE"), @upargs,# draw the uptime bg color @lossargs, # draw the loss bg color |