locust 2.29.2.dev72__py3-none-any.whl → 2.30.1.dev4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- locust/_version.py +2 -2
- locust/stats.py +3 -0
- locust/webui/dist/assets/{index-b809f4b3.js → index-24a281b8.js} +48 -48
- locust/webui/dist/auth.html +1 -1
- locust/webui/dist/index.html +1 -1
- {locust-2.29.2.dev72.dist-info → locust-2.30.1.dev4.dist-info}/METADATA +1 -1
- {locust-2.29.2.dev72.dist-info → locust-2.30.1.dev4.dist-info}/RECORD +10 -10
- {locust-2.29.2.dev72.dist-info → locust-2.30.1.dev4.dist-info}/LICENSE +0 -0
- {locust-2.29.2.dev72.dist-info → locust-2.30.1.dev4.dist-info}/WHEEL +0 -0
- {locust-2.29.2.dev72.dist-info → locust-2.30.1.dev4.dist-info}/entry_points.txt +0 -0
locust/_version.py
CHANGED
@@ -14,7 +14,7 @@ __version_tuple__: VERSION_TUPLE
|
|
14
14
|
version_tuple: VERSION_TUPLE
|
15
15
|
|
16
16
|
|
17
|
-
__version__ = "2.
|
17
|
+
__version__ = "2.30.1.dev4"
|
18
18
|
version = __version__
|
19
|
-
__version_tuple__ = (2,
|
19
|
+
__version_tuple__ = (2, 30, 1, "dev4")
|
20
20
|
version_tuple = __version_tuple__
|
locust/stats.py
CHANGED
@@ -679,7 +679,10 @@ class StatsEntry:
|
|
679
679
|
"max_response_time": proper_round(self.max_response_time),
|
680
680
|
"current_rps": self.current_rps,
|
681
681
|
"current_fail_per_sec": self.current_fail_per_sec,
|
682
|
+
"avg_response_time": self.avg_response_time,
|
682
683
|
"median_response_time": self.median_response_time,
|
684
|
+
"total_rps": self.total_rps,
|
685
|
+
"total_fail_per_sec": self.total_fail_per_sec,
|
683
686
|
**response_time_percentiles,
|
684
687
|
"avg_content_length": self.avg_content_length,
|
685
688
|
}
|