From e49451d0d4caf56b9f65dbea19fbe8ee827daeaa Mon Sep 17 00:00:00 2001 From: Jordi Sanfeliu Date: Fri, 3 Oct 2014 09:37:41 +0200 Subject: [PATCH] Fixes #70 --- Changes | 2 ++ lib/process.pm | 1 + 2 files changed, 3 insertions(+) diff --git a/Changes b/Changes index 7279a93..00f248a 100644 --- a/Changes +++ b/Changes @@ -23,6 +23,8 @@ 'monitorix-apache.conf'. [#69] - Fixed a bug in 'netstat' module that prevented, in some cases, counting correctly the opened connections either in IPv4 and IPv6. [#66] +- Fixed a missing CDEF that prevented creating the 'process05z.png' graph when + the option 'show_gaps' was enabled. [#70] 3.6.0 - 20-Aug-2014 diff --git a/lib/process.pm b/lib/process.pm index 865401f..b00897d 100644 --- a/lib/process.pm +++ b/lib/process.pm @@ -1007,6 +1007,7 @@ sub process_cgi { "DEF:nof8=$rrd:proc" . $e . "_nof8:AVERAGE", "DEF:nof9=$rrd:proc" . $e . "_nof9:AVERAGE", "CDEF:allvalues=nof0,nof1,nof2,nof3,nof4,nof5,nof6,nof7,nof8,nof9,+,+,+,+,+,+,+,+,+", + @CDEF, @tmpz); $err = RRDs::error; print("ERROR: while graphing $PNG_DIR" . "$PNGz[$e * 10 + 4]: $err\n") if $err;