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 {
|
message LoadBalancerAccumulatedStatsResponse {
|
||||||
// The total number of RPCs have ever issued.
|
// The total number of RPCs have ever issued.
|
||||||
int32 num_rpcs_started = 1;
|
int32 num_rpcs_started = 1;
|
||||||
// The total number of RPCs have ever completed successfully for each peer.
|
// The total number of RPCs have ever completed successfully.
|
||||||
map<string, int32> num_rpcs_succeeded_by_peer = 2;
|
int32 num_rpcs_succeeded = 2;
|
||||||
// The total number of RPCs have ever failed.
|
// The total number of RPCs have ever failed.
|
||||||
int32 num_rpcs_failed = 3;
|
int32 num_rpcs_failed = 3;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue