Skip to content

Commit

Permalink
Michael's comments
Browse files Browse the repository at this point in the history
Signed-off-by: Alan Cha <[email protected]>
  • Loading branch information
Alan-Cha committed Feb 14, 2023
1 parent a70e39c commit 46967e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/getting-started/your-first-experiment.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Launch the Iter8 experiment inside the Kubernetes cluster.
The [ready](../user-guide/tasks/ready.md) task checks if the `httpbin` deployment exists and is available, and the `httpbin` service exists.
The [http](../user-guide/tasks/http.md) task sends requests to the cluster-local HTTP service whose URL is `http://httpbin.default/post` with a string payload, and collects [Iter8's built-in HTTP load test metrics](../user-guide/tasks/http.md#metrics).
The [http](../user-guide/tasks/http.md) task sends requests to the cluster-local HTTP service whose URL is `http://httpbin.default/post` with a string payload of value `hello`, and collects [Iter8's built-in HTTP load test metrics](../user-guide/tasks/http.md#metrics).
The [assess](../user-guide/tasks/assess.md) task verifies if the app satisfies the specified SLOs: i) the mean latency of the service does not exceed 50 msec, and ii) there are no errors (4xx or 5xx response codes) in the responses.
Expand Down
6 changes: 3 additions & 3 deletions docs/tutorials/load-test-grpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Load test a Kubernetes gRPC service and validate its [service-level objectives (
The [ready](../user-guide/tasks/ready.md) task checks if the `routeguide` deployment exists and is available, and the `routeguide` service exists.
The [grpc](../user-guide/tasks/grpc.md) task sends call requests to the `routeguide.RouteGuide.ListFeatures` method of the cluster-local gRPC service with host address `routeguide.default:50051`, and collects [Iter8's built-in gRPC load test metrics](../user-guide/tasks/grpc.md#metrics).
The [grpc](../user-guide/tasks/grpc.md) task sends call requests to the `routeguide.RouteGuide.ListFeatures` server streaming method of the cluster-local gRPC service with host address `routeguide.default:50051` using the payload provided by `dataURL`, and collects [Iter8's built-in gRPC load test metrics](../user-guide/tasks/grpc.md#metrics) from the stream results.
The [assess](../user-guide/tasks/assess.md) task verifies if the app satisfies the specified SLOs: i) there are no errors, ii) the mean latency of the service does not exceed 50 msec, and iii) the `97.5`th percentile latency does not exceed 200 msec.
Expand Down Expand Up @@ -102,7 +102,7 @@ Load test a Kubernetes gRPC service and validate its [service-level objectives (
The [ready](../user-guide/tasks/ready.md) task checks if the `routeguide` deployment exists and is available, and the `routeguide` service exists.
The [grpc](../user-guide/tasks/grpc.md) task sends call requests to the `routeguide.RouteGuide.RecordRoute` method of the cluster-local gRPC service with host address `routeguide.default:50051`, and collects [Iter8's built-in gRPC load test metrics](../user-guide/tasks/grpc.md#metrics).
The [grpc](../user-guide/tasks/grpc.md) task sends call requests to the `routeguide.RouteGuide.RecordRoute` client streaming method of the cluster-local gRPC service with host address `routeguide.default:50051`, streams the data provided by `dataURL`, and collects [Iter8's built-in gRPC load test metrics](../user-guide/tasks/grpc.md#metrics).
The [assess](../user-guide/tasks/assess.md) task verifies if the app satisfies the specified SLOs: i) there are no errors, ii) the mean latency of the service does not exceed 50 msec, and iii) the `97.5`th percentile latency does not exceed 200 msec.
Expand Down Expand Up @@ -130,7 +130,7 @@ Load test a Kubernetes gRPC service and validate its [service-level objectives (
The [ready](../user-guide/tasks/ready.md) task checks if the `routeguide` deployment exists and is available, and the `routeguide` service exists.
The [grpc](../user-guide/tasks/grpc.md) task sends call requests to the `routeguide.RouteGuide.RouteChat` method of the cluster-local gRPC service with host address `routeguide.default:50051`, and collects [Iter8's built-in gRPC load test metrics](../user-guide/tasks/grpc.md#metrics).
The [grpc](../user-guide/tasks/grpc.md) task sends call requests to the `routeguide.RouteGuide.RouteChat` bi-directional streaming method of the cluster-local gRPC service with host address `routeguide.default:50051`, streams the data provided by `dataURL`, and collects [Iter8's built-in gRPC load test metrics](../user-guide/tasks/grpc.md#metrics) from the stream results.
The [assess](../user-guide/tasks/assess.md) task verifies if the app satisfies the specified SLOs: i) there are no errors, ii) the mean latency of the service does not exceed 50 msec, and iii) the `97.5`th percentile latency does not exceed 200 msec.
Expand Down

0 comments on commit 46967e2

Please sign in to comment.