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 <grpcpp/create_channel.h>
22 #include <grpcpp/security/credentials.h>
23
24 #include "absl/flags/flag.h"
25 #include "absl/log/check.h"
26 #include "src/core/util/crash.h"
27 #include "test/cpp/util/test_credentials_provider.h"
28
29 ABSL_FLAG(bool, enable_log_reporter, true,
30 "Enable reporting of benchmark results through GprLog");
31
32 ABSL_FLAG(std::string, scenario_result_file, "",
33 "Write JSON benchmark report to the file specified.");
34
35 ABSL_FLAG(std::string, hashed_id, "", "Hash of the user id");
36
37 ABSL_FLAG(std::string, test_name, "", "Name of the test being executed");
38
39 ABSL_FLAG(std::string, sys_info, "", "System information");
40
41 ABSL_FLAG(std::string, server_address, "localhost:50052",
42 "Address of the performance database server");
43
44 ABSL_FLAG(std::string, tag, "", "Optional tag for the test");
45
46 ABSL_FLAG(std::string, rpc_reporter_server_address, "",
47 "Server address for rpc reporter to send results to");
48
49 ABSL_FLAG(bool, enable_rpc_reporter, false, "Enable use of RPC reporter");
50
51 ABSL_FLAG(
52 std::string, rpc_reporter_credential_type,
53 grpc::testing::kInsecureCredentialsType,
54 "Credential type for communication to the QPS benchmark report server");
55
56 namespace grpc {
57 namespace testing {
58
InitBenchmarkReporters()59 static std::shared_ptr<Reporter> InitBenchmarkReporters() {
60 auto* composite_reporter = new CompositeReporter;
61 if (absl::GetFlag(FLAGS_enable_log_reporter)) {
62 composite_reporter->add(
63 std::unique_ptr<Reporter>(new GprLogReporter("LogReporter")));
64 }
65 if (!absl::GetFlag(FLAGS_scenario_result_file).empty()) {
66 composite_reporter->add(std::unique_ptr<Reporter>(new JsonReporter(
67 "JsonReporter", absl::GetFlag(FLAGS_scenario_result_file))));
68 }
69 if (absl::GetFlag(FLAGS_enable_rpc_reporter)) {
70 ChannelArguments channel_args;
71 std::shared_ptr<ChannelCredentials> channel_creds =
72 testing::GetCredentialsProvider()->GetChannelCredentials(
73 absl::GetFlag(FLAGS_rpc_reporter_credential_type), &channel_args);
74 CHECK(!absl::GetFlag(FLAGS_rpc_reporter_server_address).empty());
75 composite_reporter->add(std::unique_ptr<Reporter>(new RpcReporter(
76 "RpcReporter",
77 grpc::CreateChannel(absl::GetFlag(FLAGS_rpc_reporter_server_address),
78 channel_creds))));
79 }
80
81 return std::shared_ptr<Reporter>(composite_reporter);
82 }
83
GetReporter()84 std::shared_ptr<Reporter> GetReporter() {
85 static std::shared_ptr<Reporter> reporter(InitBenchmarkReporters());
86 return reporter;
87 }
88
89 } // namespace testing
90 } // namespace grpc
91