1 //
2 //
3 // Copyright 2015 gRPC authors.
4 //
5 // Licensed under the Apache License, Version 2.0 (the "License");
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 //
18
19 #include "test/cpp/qps/benchmark_config.h"
20
21 #include "absl/flags/flag.h"
22
23 #include <grpc/support/log.h>
24 #include <grpcpp/create_channel.h>
25 #include <grpcpp/security/credentials.h>
26
27 #include "src/core/lib/gprpp/crash.h"
28 #include "test/cpp/util/test_credentials_provider.h"
29
30 ABSL_FLAG(bool, enable_log_reporter, true,
31 "Enable reporting of benchmark results through GprLog");
32
33 ABSL_FLAG(std::string, scenario_result_file, "",
34 "Write JSON benchmark report to the file specified.");
35
36 ABSL_FLAG(std::string, hashed_id, "", "Hash of the user id");
37
38 ABSL_FLAG(std::string, test_name, "", "Name of the test being executed");
39
40 ABSL_FLAG(std::string, sys_info, "", "System information");
41
42 ABSL_FLAG(std::string, server_address, "localhost:50052",
43 "Address of the performance database server");
44
45 ABSL_FLAG(std::string, tag, "", "Optional tag for the test");
46
47 ABSL_FLAG(std::string, rpc_reporter_server_address, "",
48 "Server address for rpc reporter to send results to");
49
50 ABSL_FLAG(bool, enable_rpc_reporter, false, "Enable use of RPC reporter");
51
52 ABSL_FLAG(
53 std::string, rpc_reporter_credential_type,
54 grpc::testing::kInsecureCredentialsType,
55 "Credential type for communication to the QPS benchmark report server");
56
57 namespace grpc {
58 namespace testing {
59
InitBenchmarkReporters()60 static std::shared_ptr<Reporter> InitBenchmarkReporters() {
61 auto* composite_reporter = new CompositeReporter;
62 if (absl::GetFlag(FLAGS_enable_log_reporter)) {
63 composite_reporter->add(
64 std::unique_ptr<Reporter>(new GprLogReporter("LogReporter")));
65 }
66 if (!absl::GetFlag(FLAGS_scenario_result_file).empty()) {
67 composite_reporter->add(std::unique_ptr<Reporter>(new JsonReporter(
68 "JsonReporter", absl::GetFlag(FLAGS_scenario_result_file))));
69 }
70 if (absl::GetFlag(FLAGS_enable_rpc_reporter)) {
71 ChannelArguments channel_args;
72 std::shared_ptr<ChannelCredentials> channel_creds =
73 testing::GetCredentialsProvider()->GetChannelCredentials(
74 absl::GetFlag(FLAGS_rpc_reporter_credential_type), &channel_args);
75 GPR_ASSERT(!absl::GetFlag(FLAGS_rpc_reporter_server_address).empty());
76 composite_reporter->add(std::unique_ptr<Reporter>(new RpcReporter(
77 "RpcReporter",
78 grpc::CreateChannel(absl::GetFlag(FLAGS_rpc_reporter_server_address),
79 channel_creds))));
80 }
81
82 return std::shared_ptr<Reporter>(composite_reporter);
83 }
84
GetReporter()85 std::shared_ptr<Reporter> GetReporter() {
86 static std::shared_ptr<Reporter> reporter(InitBenchmarkReporters());
87 return reporter;
88 }
89
90 } // namespace testing
91 } // namespace grpc
92