Merge pull request #24703 from voidzcy/impl/update_xds_interop_test_proto

Update xDS interop test proto to aggregate accumulated stats based on RPC methods.
pull/24708/head
Chengyuan Zhang 4 years ago committed by GitHub
commit 643e5bcd1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      src/proto/grpc/testing/messages.proto

@ -218,12 +218,12 @@ message LoadBalancerAccumulatedStatsRequest {}
// Accumulated stats for RPCs sent by a test client. // Accumulated stats for RPCs sent by a test client.
message LoadBalancerAccumulatedStatsResponse { message LoadBalancerAccumulatedStatsResponse {
// The total number of RPCs have ever issued. // The total number of RPCs have ever issued for each type.
int32 num_rpcs_started = 1; map<string, int32> num_rpcs_started_by_method = 1;
// The total number of RPCs have ever completed successfully. // The total number of RPCs have ever completed successfully for each type.
int32 num_rpcs_succeeded = 2; map<string, int32> num_rpcs_succeeded_by_method = 2;
// The total number of RPCs have ever failed. // The total number of RPCs have ever failed for each type.
int32 num_rpcs_failed = 3; map<string, int32> num_rpcs_failed_by_method = 3;
} }
// Configurations for a test client. // Configurations for a test client.

Loading…
Cancel
Save