aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/util
diff options
context:
space:
mode:
authorGravatar Siddharth Rakesh <sidrakesh@google.com>2015-06-17 15:01:43 -0700
committerGravatar Siddharth Rakesh <sidrakesh@google.com>2015-06-17 15:01:43 -0700
commite2902dee317bdab3cca20501032d74ffdd1b6f55 (patch)
tree236e8eddfdd9845c95f065f0fe052e38992705f5 /test/cpp/util
parent893ccac42149ee90125b5e4bf504e9e931291dd4 (diff)
commented
Diffstat (limited to 'test/cpp/util')
-rw-r--r--test/cpp/util/benchmark_config.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/cpp/util/benchmark_config.cc b/test/cpp/util/benchmark_config.cc
index 82663b6a01..250bb7ac8e 100644
--- a/test/cpp/util/benchmark_config.cc
+++ b/test/cpp/util/benchmark_config.cc
@@ -37,6 +37,8 @@
DEFINE_bool(enable_log_reporter, true,
"Enable reporting of benchmark results through GprLog");
+DEFINE_bool(report_metrics_db, false, "True if metrics to be reported to performance database");
+
DEFINE_string(access_token, "", "Authorizing JSON string for leaderboard");
DEFINE_string(test_name, "", "Name of the test being executed");
@@ -63,9 +65,10 @@ static std::shared_ptr<Reporter> InitBenchmarkReporters() {
composite_reporter->add(
std::unique_ptr<Reporter>(new GprLogReporter("LogReporter")));
}
- if(!FLAGS_access_token.empty())
+ if(FLAGS_report_metrics_db) {
composite_reporter->add(
std::unique_ptr<Reporter>(new UserDatabaseReporter("UserDataReporter", FLAGS_access_token, FLAGS_test_name, FLAGS_sys_info)));
+ }
return std::shared_ptr<Reporter>(composite_reporter);
}