Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add additional graphs to the HTML report #394

Merged
merged 23 commits into from
Dec 13, 2021
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
8821e12
#246: Add errors per second graph to the HTML report.
slashrsm Nov 24, 2021
b8abce3
#246: Add average request time graph to the HTML report.
slashrsm Nov 24, 2021
05a6eb4
#246: Add active users graph to the HTML report.
slashrsm Nov 24, 2021
9494a35
#246: Add active tasks graph to the HTML report.
slashrsm Nov 24, 2021
3e9fe17
#246: Update CHANGELOG.md.
slashrsm Nov 24, 2021
d7c72fb
#246: Move graphs in the relevant sections.
slashrsm Dec 6, 2021
02347cd
#246: Change type of GooseMetrics::users_per_second to usize.
slashrsm Dec 6, 2021
682fbdf
#246: Add more comments.
slashrsm Dec 6, 2021
7c3edac
#246: Use GooseRequestMetric::success to determine if there was an er…
slashrsm Dec 7, 2021
7d827a9
#246: Collect user and task metrics in GooseAttack::sync_metrics().
slashrsm Dec 7, 2021
3af369d
#246: Add MovingAverage struct.
slashrsm Dec 7, 2021
d944a5d
#246: Change type of GooseMetrics::tasks_per_second to usize.
slashrsm Dec 7, 2021
bc80b91
#246 and #386: Send the actual time of the request with the GooseRequ…
slashrsm Dec 8, 2021
dd542b6
#246: Use GooseRequestMetric::elapsed to calculate which second on th…
slashrsm Dec 9, 2021
70500a0
#246: Revert out of scope change.
slashrsm Dec 9, 2021
499a084
#246: Use GooseTaskMetric::elapsed to aggregate data for users/tasks …
slashrsm Dec 9, 2021
6f96383
#246: Remove uneeded logic that fills task/users per second vectors.
slashrsm Dec 9, 2021
8079d0d
#246: Improve function docs.
slashrsm Dec 9, 2021
834fd46
#246: Move the users graph into its own section.
slashrsm Dec 10, 2021
0cf043e
#246: Change tasks per second graph to display number of tasks that w…
slashrsm Dec 11, 2021
f4bae2c
#246: Remove unecessary change to the import from util.
slashrsm Dec 12, 2021
303787f
#246: Fix comments.
slashrsm Dec 12, 2021
9a2f685
#246: Introduce graph struct.
slashrsm Dec 12, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## 0.15.2-dev
- [#391](https://github.com/tag1consulting/goose/pull/391) properly sleep for configured `set_wait_time()` walking regularly to exit quickly if the load test ends
- [#394](https://github.com/tag1consulting/goose/pull/394) add additional graphs to the HTML report: errors per second,
average response time, active users, active tasks
jeremyandrews marked this conversation as resolved.
Show resolved Hide resolved

## 0.15.1 November 19, 2021
- [#374](https://github.com/tag1consulting/goose/pull/374) renamed `simple-with-session.rs` to `session.rs` and `simple-closure.rs` to `closure.rs` to avoid confusion with the `simple.rs` example as they all do different things
Expand Down
Loading