Add comments in control.proto to clarify each field in ScenarioResultSummary

reviewable/pr20597/r1
Na-Na Pang 5 years ago
parent fa02a5b0d9
commit 3b3d179616
  1. 12
      src/proto/grpc/testing/control.proto

@ -220,17 +220,17 @@ message Scenarios {
// once the scenario has finished.
message ScenarioResultSummary
{
// Total number of operations per second over all clients.
// Total number of queries per second over all clients.
double qps = 1;
// QPS per one server core.
// QPS per server core.
double qps_per_server_core = 2;
// server load based on system_time (0.85 => 85%)
// The percentage of server cpu load based on system time used by the server process (85 => 85%)
double server_system_time = 3;
// server load based on user_time (0.85 => 85%)
// The percentage of server cpu load based on user time used by the server process (85 => 85%)
double server_user_time = 4;
// client load based on system_time (0.85 => 85%)
// The percentage of client cpu load based on system time used by the client process (85 => 85%)
double client_system_time = 5;
// client load based on user_time (0.85 => 85%)
// The percentage of client cpu load based on user time used by the client process (85 => 85%)
double client_user_time = 6;
// X% latency percentiles (in nanoseconds)

Loading…
Cancel
Save