From 5c9a5df2645673de6edd5c8b4e2cbb5d4564d40f Mon Sep 17 00:00:00 2001 From: Graham Whaley Date: Tue, 30 Jul 2019 14:48:54 +0100 Subject: [PATCH] metrics: report: Fix scaling points for boot chart The boot 'points' code was accidentally updating the cpu plot (copy and paste error). Correct it to update the correct chart. Signed-off-by: Graham Whaley --- metrics/report/report_dockerfile/scaling.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metrics/report/report_dockerfile/scaling.R b/metrics/report/report_dockerfile/scaling.R index d93a211..3acfa8b 100755 --- a/metrics/report/report_dockerfile/scaling.R +++ b/metrics/report/report_dockerfile/scaling.R @@ -172,7 +172,7 @@ boot_line_plot <- ggplot() + theme(axis.text.x=element_text(angle=90)) if ( skip_points == 0 ) { - cpu_line_plot = cpu_line_plot + geom_point( data=data, aes(count, boot_time, colour=testname, group=dataset), alpha=0.3) + boot_line_plot = boot_line_plot + geom_point( data=data, aes(count, boot_time, colour=testname, group=dataset), alpha=0.3) } mem_text <- paste("Footprint density statistics")