You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
failOnFailedRPC=flag.Bool("fail_on_failed_rpc", false, "Fail client if any RPCs fail after first success")
173
-
numChannels=flag.Int("num_channels", 1, "Num of channels")
174
-
printResponse=flag.Bool("print_response", false, "Write RPC response to stdout")
175
-
qps=flag.Int("qps", 1, "QPS per channel, for each type of RPC")
176
-
rpc=flag.String("rpc", "UnaryCall", "Types of RPCs to make, ',' separated string. RPCs can be EmptyCall or UnaryCall. Deprecated: Use Configure RPC to XdsUpdateClientConfigureServiceServer instead.")
177
-
rpcMetadata=flag.String("metadata", "", "The metadata to send with RPC, in format EmptyCall:key1:value1,UnaryCall:key2:value2. Deprecated: Use Configure RPC to XdsUpdateClientConfigureServiceServer instead.")
server=flag.String("server", "localhost:8080", "Address of server to connect to")
180
-
statsPort=flag.Int("stats_port", 8081, "Port to expose peer distribution stats service")
181
-
secureMode=flag.Bool("secure_mode", false, "If true, retrieve security configuration from the management server. Else, use insecure credentials.")
180
+
failOnFailedRPC=flag.Bool("fail_on_failed_rpc", false, "Fail client if any RPCs fail after first success")
181
+
numChannels=flag.Int("num_channels", 1, "Num of channels")
182
+
printResponse=flag.Bool("print_response", false, "Write RPC response to stdout")
183
+
qps=flag.Int("qps", 1, "QPS per channel, for each type of RPC")
184
+
rpc=flag.String("rpc", "UnaryCall", "Types of RPCs to make, ',' separated string. RPCs can be EmptyCall or UnaryCall. Deprecated: Use Configure RPC to XdsUpdateClientConfigureServiceServer instead.")
185
+
rpcMetadata=flag.String("metadata", "", "The metadata to send with RPC, in format EmptyCall:key1:value1,UnaryCall:key2:value2. Deprecated: Use Configure RPC to XdsUpdateClientConfigureServiceServer instead.")
server=flag.String("server", "localhost:8080", "Address of server to connect to")
188
+
statsPort=flag.Int("stats_port", 8081, "Port to expose peer distribution stats service")
189
+
secureMode=flag.Bool("secure_mode", false, "If true, retrieve security configuration from the management server. Else, use insecure credentials.")
190
+
enableCSMObservability=flag.Bool("enable_csm_observability", false, "Whether to enable CSM Observability")
191
+
requestPayloadSize=flag.Int("request_payload_size", 0, "Ask the server to respond with SimpleResponse.payload.body of the given length (may not be implemented on the server).")
192
+
responsePayloadSize=flag.Int("response_payload_size", 0, "Ask the server to respond with SimpleResponse.payload.body of the given length (may not be implemented on the server).")
0 commit comments