mirror of https://github.com/grpc/grpc-java.git
interop-testing: only need to count total number of succeeded RPCs for accumulated stats in xDS tests (#7561)
This commit is contained in:
parent
8520e06012
commit
90a3873a13
|
|
@ -210,8 +210,8 @@ message LoadBalancerAccumulatedStatsRequest {}
|
|||
message LoadBalancerAccumulatedStatsResponse {
|
||||
// The total number of RPCs have ever issued.
|
||||
int32 num_rpcs_started = 1;
|
||||
// The total number of RPCs have ever completed successfully for each peer.
|
||||
map<string, int32> num_rpcs_succeeded_by_peer = 2;
|
||||
// The total number of RPCs have ever completed successfully.
|
||||
int32 num_rpcs_succeeded = 2;
|
||||
// The total number of RPCs have ever failed.
|
||||
int32 num_rpcs_failed = 3;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue