diff options
author | David Sommerseth <davids@redhat.com> | 2012-12-20 22:37:33 +0100 |
---|---|---|
committer | David Sommerseth <davids@redhat.com> | 2012-12-20 22:37:33 +0100 |
commit | 71b5ce0b05bf3c4583f01036213c558a1e75e951 (patch) | |
tree | acd0212b091a4685a3efab7e26bc5508268d7bcc /server/parser | |
parent | 47714597d7d23d3ba5fa2ec401cb7f58afb25c4c (diff) | |
download | rteval-71b5ce0b05bf3c4583f01036213c558a1e75e951.tar.gz rteval-71b5ce0b05bf3c4583f01036213c558a1e75e951.tar.xz rteval-71b5ce0b05bf3c4583f01036213c558a1e75e951.zip |
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 <davids@redhat.com>
Diffstat (limited to 'server/parser')
-rw-r--r-- | server/parser/README.parser | 2 | ||||
-rw-r--r-- | server/parser/configparser.c | 2 |
2 files changed, 2 insertions, 2 deletions
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 ) { |