locust 2.29.2.dev53__py3-none-any.whl → 2.29.2.dev59__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 +1 -2
- locust/web.py +0 -1
- locust/webui/dist/assets/{index-e9ad42b4.js → index-b809f4b3.js} +51 -51
- locust/webui/dist/auth.html +1 -1
- locust/webui/dist/index.html +1 -1
- {locust-2.29.2.dev53.dist-info → locust-2.29.2.dev59.dist-info}/METADATA +2 -4
- {locust-2.29.2.dev53.dist-info → locust-2.29.2.dev59.dist-info}/RECORD +11 -11
- {locust-2.29.2.dev53.dist-info → locust-2.29.2.dev59.dist-info}/LICENSE +0 -0
- {locust-2.29.2.dev53.dist-info → locust-2.29.2.dev59.dist-info}/WHEEL +0 -0
- {locust-2.29.2.dev53.dist-info → locust-2.29.2.dev59.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.29.2.
|
17
|
+
__version__ = "2.29.2.dev59"
|
18
18
|
version = __version__
|
19
|
-
__version_tuple__ = (2, 29, 2, "
|
19
|
+
__version_tuple__ = (2, 29, 2, "dev59")
|
20
20
|
version_tuple = __version_tuple__
|
locust/stats.py
CHANGED
@@ -113,7 +113,7 @@ CachedResponseTimes = namedtuple("CachedResponseTimes", ["response_times", "num_
|
|
113
113
|
PERCENTILES_TO_REPORT = [0.50, 0.66, 0.75, 0.80, 0.90, 0.95, 0.98, 0.99, 0.999, 0.9999, 1.0]
|
114
114
|
|
115
115
|
PERCENTILES_TO_STATISTICS = [0.95, 0.99]
|
116
|
-
PERCENTILES_TO_CHART = [0.95]
|
116
|
+
PERCENTILES_TO_CHART = [0.5, 0.95]
|
117
117
|
|
118
118
|
|
119
119
|
class RequestStatsAdditionError(Exception):
|
@@ -675,7 +675,6 @@ class StatsEntry:
|
|
675
675
|
"safe_name": escape(self.name, quote=False),
|
676
676
|
"num_requests": self.num_requests,
|
677
677
|
"num_failures": self.num_failures,
|
678
|
-
"avg_response_time": self.avg_response_time,
|
679
678
|
"min_response_time": 0 if self.min_response_time is None else proper_round(self.min_response_time),
|
680
679
|
"max_response_time": proper_round(self.max_response_time),
|
681
680
|
"current_rps": self.current_rps,
|
locust/web.py
CHANGED
@@ -416,7 +416,6 @@ class WebUI:
|
|
416
416
|
if stats:
|
417
417
|
report["total_rps"] = total_stats["current_rps"]
|
418
418
|
report["total_fail_per_sec"] = total_stats["current_fail_per_sec"]
|
419
|
-
report["total_avg_response_time"] = total_stats["avg_response_time"]
|
420
419
|
report["fail_ratio"] = environment.runner.stats.total.fail_ratio
|
421
420
|
report["current_response_time_percentiles"] = {
|
422
421
|
f"response_time_percentile_{percentile}": environment.runner.stats.total.get_current_response_time_percentile(
|