...

/

Adding Benchmarks - Part II

Adding Benchmarks - Part II

Learn how to add benchmarks for comparing pure and impure implementations.

We'll cover the following...

Metrics Recap

To reiterate, we will be using the following metrics to benchmark our endpoints.

  • AVG: The average response time in milliseconds
  • MED: The median response time in milliseconds
  • 90%: 90 percent of all requests were handled within the response time in milliseconds or less.
  • 95%: 95 percent of all requests were handled within the response time in milliseconds or less.
  • 99%: 99 percent of all requests were handled within the response time in milliseconds or less.
  • MIN: The minimum response time in milliseconds
  • MAX: The maximum response time in milliseconds
  • ERR: The error rate in percent
  • R/S: The number of requests per second that could be handled
  • MEM: The maximum amount of memory used by the service during the benchmark in MB
...