Skip to content

Commit

Permalink
xds interop: update interop client to support new tests (#3737)
Browse files Browse the repository at this point in the history
  • Loading branch information
menghanl committed Jul 28, 2020
1 parent 5f282cb commit 4928046
Show file tree
Hide file tree
Showing 4 changed files with 301 additions and 93 deletions.
194 changes: 125 additions & 69 deletions interop/grpc_testing/test.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions interop/grpc_testing/test.proto
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,17 @@ message LoadBalancerStatsRequest {
}

message LoadBalancerStatsResponse {
message RpcsByPeer {
// The number of completed RPCs for each peer.
map<string, int32> rpcs_by_peer = 1;
}

// The number of completed RPCs for each peer.
map<string, int32> rpcs_by_peer = 1;
// The number of RPCs that failed to record a remote peer.
int32 num_failures = 2;
// The number of completed RPCs for each method (UnaryCall or EmptyCall).
map<string, RpcsByPeer> rpcs_by_method = 3;
}

// A service used to obtain stats for verifying LB behavior.
Expand Down
Loading

0 comments on commit 4928046

Please sign in to comment.