Skip to content

Commit

Permalink
docs: fixing image links in website docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bojand committed Nov 21, 2020
1 parent ba62cfc commit af29368
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions www/docs/concurrency.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Status code distribution:

This test performs a constant load at `200` RPS, starting with `5` workers, and increasing concurrency by `5` workers every `5s` until we have `50` workers. At that point all `50` workers will be used to sustain the constant `200` RPS until `10000` total request limit is reached. Worker count over time would look something like:

![Step Up Concurrency Constant Load](images/step_up_c_const_rps_wc.svg)
![Step Up Concurrency Constant Load](/images/step_up_c_const_rps_wc.svg)

## Step Down Concurrency

Expand Down Expand Up @@ -99,7 +99,7 @@ Status code distribution:

This test performs a constant load at `200` RPS, starting with `50` workers, and decreasing concurrency by `5` workers every `5s` until `30s` has elapsed. At that point all remaining workers will be used to sustain the constant `200` RPS until `10000` total request limit is reached. Worker count over time would look something like:

![Step Down Concurrency Constant Load](images/step_down_c_const_rps_wc.svg)
![Step Down Concurrency Constant Load](/images/step_down_c_const_rps_wc.svg)

## Linear increase of concurrency

Expand Down Expand Up @@ -146,4 +146,4 @@ Status code distribution:

This test performs a constant load at `200` RPS, starting with `20` workers, and increasing concurrency linearly every `1s` by `2` workers until `30s` has elapsed. At that point all remaining workers will be used to sustain the constant `200` RPS until `10000` total request limit is reached.

![Lene Up Concurrency Constant Load](images/line_up_c_const_rps_wc.svg)
![Lene Up Concurrency Constant Load](/images/line_up_c_const_rps_wc.svg)
10 changes: 5 additions & 5 deletions www/docs/load.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Status code distribution:

This will perform a constant load RPS against the server. Graphed, it may look like this:

![Constant Load](images/const_c_const_rps.svg)
![Constant Load](/images/const_c_const_rps.svg)

## Step Up RPS

Expand Down Expand Up @@ -97,7 +97,7 @@ Status code distribution:

Performs step load starting at `50` RPS and inscreasing by `10` RPS every `5s` until we reach `150` RPS at which point the load is sustained at constant RPS rate until we reach `10000` total requests. The RPS load is distributed among the `10` workers, all sharing `1` connection.

![Step Up Load](images/const_c_step_up_rps.svg)
![Step Up Load](/images/const_c_step_up_rps.svg)

## Step Down RPS

Expand Down Expand Up @@ -144,7 +144,7 @@ Status code distribution:

Performs step load starting at `200` RPS and decreasing by `10` RPS every `10s` until `40s` has elapsed at which point the load is sustained at that RPS rate until we reach `10000` total requests. The RPS load is distributed among the `10` workers, all sharing `1` connection.

![Step Down Load](images/const_c_step_down_rps.svg)
![Step Down Load](/images/const_c_step_down_rps.svg)

## Linear load

Expand Down Expand Up @@ -191,7 +191,7 @@ Status code distribution:

Performs linear load starting at `5` RPS and increasing by `5` RPS every `1s` until we reach `10000` total requests. The RPS load is distributed among the `10` workers, all sharing `1` connection.

![Linear Up Load](images/const_c_line_up_rps.svg)
![Linear Up Load](/images/const_c_line_up_rps.svg)

## Linear load decrease

Expand Down Expand Up @@ -238,4 +238,4 @@ Status code distribution:

Performs linear load starting at `200` RPS and decreasing by `2` RPS every `1s` until we reach `100` RPS at which point a constant rate is sustained until we accumulate `10000` total requests. The RPS load is distributed among the `10` workers, all sharing `1` connection.

![Linear Down Load](images/const_c_line_down_rps.svg)
![Linear Down Load](/images/const_c_line_down_rps.svg)

0 comments on commit af29368

Please sign in to comment.