From a94a4578efe2736ada200ccd637e0a7cd4564e3a Mon Sep 17 00:00:00 2001 From: Jamo Luhrsen Date: Thu, 30 Apr 2015 11:09:44 -0700 Subject: [PATCH] Keeping 6-ish months worth of plot data the data that the plot plugin reads from is actually very small, and even with 5400 values I don't think it would be much of a blip. If the plot plugin can scall to 5400 values then I think we can get close to recording 6 months worth of data points for the jobs that run on merges. for the jobs that are marked periodic, I used 180 as the default since I assumed most periodic jobs might be daily and 180 days is about 6 months. all of these values are just defaults and can be overridden by each job as they see fit. Change-Id: I6b622fe1c45cb48cac25c81b77d7b317c1a2fd81 Signed-off-by: Jamo Luhrsen --- jjb/integration/integration-templates.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/jjb/integration/integration-templates.yaml b/jjb/integration/integration-templates.yaml index cda45b3da..03e0c15f6 100644 --- a/jjb/integration/integration-templates.yaml +++ b/jjb/integration/integration-templates.yaml @@ -181,7 +181,7 @@ - title: '{01-plot-title}' yaxis: '{01-plot-yaxis}' group: '{01-plot-group}' - num-builds: '' + num-builds: '5400' style: line use-description: false csv-file-name: '{project}-csit-1node-imds-{functionality}-{install}-{stream}-{01-plot-data-file}-history.csv' @@ -193,7 +193,7 @@ - title: '{02-plot-title}' yaxis: '{02-plot-yaxis}' group: '{02-plot-group}' - num-builds: '' + num-builds: '5400' style: line use-description: false csv-file-name: '{project}-csit-1node-imds-{functionality}-{install}-{stream}-{02-plot-data-file}-history.csv' @@ -269,7 +269,7 @@ - title: '{01-plot-title}' yaxis: '{01-plot-yaxis}' group: '{01-plot-group}' - num-builds: '' + num-builds: '5400' style: line use-description: false csv-file-name: '{project}-csit-1node-cds-{functionality}-{install}-{stream}-{01-plot-data-file}-history.csv' @@ -281,7 +281,7 @@ - title: '{02-plot-title}' yaxis: '{02-plot-yaxis}' group: '{02-plot-group}' - num-builds: '' + num-builds: '5400' style: line use-description: false csv-file-name: '{project}-csit-1node-cds-{functionality}-{install}-{stream}-{02-plot-data-file}-history.csv' @@ -355,7 +355,7 @@ - title: '{01-plot-title}' yaxis: '{01-plot-yaxis}' group: '{01-plot-group}' - num-builds: '' + num-builds: '180' style: line use-description: false csv-file-name: '{project}-csit-periodic-1node-cds-{functionality}-{install}-{stream}-{01-plot-data-file}-history.csv' @@ -367,7 +367,7 @@ - title: '{02-plot-title}' yaxis: '{02-plot-yaxis}' group: '{02-plot-group}' - num-builds: '' + num-builds: '180' style: line use-description: false csv-file-name: '{project}-csit-periodic-1node-cds-{functionality}-{install}-{stream}-{02-plot-data-file}-history.csv' -- 2.36.6