From 71b5ce0b05bf3c4583f01036213c558a1e75e951 Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Thu, 20 Dec 2012 22:37:33 +0100 Subject: Changed the parsing defaults for summary reports - Don't parse the cyclic_rawdata table any more. The last rteval release to use that table was v1.4. - Parse the hwlatedetect data by default. This is a new feature of rteval v2.0, so lets add this parsing by default. Signed-off-by: David Sommerseth --- server/parser/README.parser | 2 +- server/parser/configparser.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'server/parser') diff --git a/server/parser/README.parser b/server/parser/README.parser index 7599690..2618552 100644 --- a/server/parser/README.parser +++ b/server/parser/README.parser @@ -98,7 +98,7 @@ The default values are: many worker threads, your system might become unresponsive for a while and the parser might be killed by the kernel (OOM). - - measurement_tables: cyclic_statistics, cyclic_histogram, cyclic_rawdata + - measurement_tables: cyclic_statistics, cyclic_histogram, hwlatdetect_summary, hwlatdetect_samples Declares which measurement results will be parsed and stored in the database. These names are referring to table definitions in the xmlparser.xsl XSLT template. The definitions in this template tells diff --git a/server/parser/configparser.c b/server/parser/configparser.c index d9bc3ed..3b95c20 100644 --- a/server/parser/configparser.c +++ b/server/parser/configparser.c @@ -119,7 +119,7 @@ static inline eurephiaVALUES *default_cfg_values(LogContext *log, eurephiaVALUES eAdd_value(cfg, "db_password", "rtevaldb_parser"); eAdd_value(cfg, "reportdir", "/var/lib/rteval/reports"); eAdd_value(cfg, "max_report_size", "2097152"); // 2MB - eAdd_value(cfg, "measurement_tables", "cyclic_statistics, cyclic_histogram, cyclic_rawdata"); + eAdd_value(cfg, "measurement_tables", "cyclic_statistics, cyclic_histogram, hwlatdetect_summary, hwlatdetect_samples"); // Copy over the arguments to the config, update existing settings for( ptr = prgargs; ptr; ptr = ptr->next ) { -- cgit