From 4e9601d90553fffc63ab73cfc5de7c0fb61ef4c4 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Tue, 12 May 2015 16:18:08 +0100 Subject: [PATCH] config_example: disabled summary_csv and added status result processor Made status result processor enabled by default on new WA installations and disabled summary_csv by default. --- wlauto/config_example.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wlauto/config_example.py b/wlauto/config_example.py index 66eed1d8..78585c89 100644 --- a/wlauto/config_example.py +++ b/wlauto/config_example.py @@ -120,6 +120,9 @@ instrumentation = [ # Specifies how results will be processed and presented. # # # result_processors = [ + # Creates a status.txt that provides a summary status for the run + 'status', + # Creates a results.txt file for each iteration that lists all collected metrics # in "name = value (units)" format 'standard', @@ -132,7 +135,7 @@ result_processors = [ # all in the .csv format. Summary metrics are defined on per-worklod basis # are typically things like overall scores. The contents of summary.csv are # always a subset of the contents of results.csv (if it is generated). - 'summary_csv', + #'summary_csv', # Creates a results.csv that contains metrics for all iterations of all workloads # in the JSON format