Skip to content

Commit

Permalink
✨ (analysis) add total counts by stage
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias-Pe committed Jul 24, 2024
1 parent cebfda3 commit 85e5aa4
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
\begin{tabular}{lrr}
\toprule
& Total Request Count & Total Failure Count \\
User Count & & \\
\midrule
100 & 117488 & 8 \\
200 & 175315 & 0 \\
300 & 133829 & 1 \\
400 & 109636 & 0 \\
500 & 98388 & 1 \\
\bottomrule
\end{tabular}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
\begin{tabular}{lrr}
\toprule
& Total Request Count & Total Failure Count \\
User Count & & \\
\midrule
100 & 92368 & 9 \\
200 & 94329 & 7 \\
300 & 90766 & 3 \\
400 & 76405 & 7 \\
500 & 79115 & 55 \\
\bottomrule
\end{tabular}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
\begin{tabular}{lrr}
\toprule
& Total Request Count & Total Failure Count \\
User Count & & \\
\midrule
100 & 82626 & 5 \\
200 & 81963 & 1 \\
300 & 72558 & 0 \\
400 & 66904 & 39 \\
500 & 63384 & 236 \\
\bottomrule
\end{tabular}
12 changes: 12 additions & 0 deletions loadtesting/notebooks/locust.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,18 @@
"outputs": [],
"execution_count": null
},
{
"metadata": {},
"cell_type": "code",
"source": [
"tmp = locust_df.groupby('User Count').agg({'Total Request Count': 'max', 'Total Failure Count': 'max'})\n",
"tmp.to_latex(outputdir+'total_request_failure_count.tex', escape=True)\n",
"tmp"
],
"id": "c5aa4f41d38616cf",
"outputs": [],
"execution_count": null
},
{
"metadata": {},
"cell_type": "code",
Expand Down

0 comments on commit 85e5aa4

Please sign in to comment.