]> granicus.if.org Git - sysstat/commitdiff
SVG: Fix graphs for swap space utilization statistics
authorSebastien GODARD <sysstat@users.noreply.github.com>
Sun, 25 Jun 2017 07:31:35 +0000 (09:31 +0200)
committerSebastien GODARD <sysstat@users.noreply.github.com>
Sun, 25 Jun 2017 07:31:35 +0000 (09:31 +0200)
Commit 8b71682 added a new metric to sar's memory report (available free
memory). This new metric caused a shift in the array containing data to
be drawn that wasn't properly taken into account (see commit f90adb6).
As a consequence graphs for swap space utilisation statistics (those
corresponding to sar -S output) were wrong.
This patch fixes the problem by using the right position in data array.

Signed-off-by: Sebastien GODARD <sysstat@users.noreply.github.com>
svg_stats.c

index 8b90384be77ec0d412404a99dedeeaa7bd57d2a5..546764507c1472c5084efaee3e7c59247e68919c 100644 (file)
@@ -1769,7 +1769,7 @@ __print_funct_t svg_print_memory_stats(struct activity *a, int curr, int action,
 
                if (DISPLAY_SWAP(a->opt_flags)) {
                        draw_activity_graphs(3, g_type2, title2, g_title2, NULL, group2,
-                                            spmin + 15, spmax + 15, out + 15, outsize + 15,
+                                            spmin + 16, spmax + 16, out + 16, outsize + 16,
                                             svg_p, record_hdr);
                }