interop-testing: only need to count total number of succeeded RPCs for accumulated stats in xDS tests (#7561)

This commit is contained in:
Chengyuan Zhang 2020-10-27 16:09:16 -07:00 committed by GitHub
parent 8520e06012
commit 90a3873a13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}