locust-cloud 1.5.7__py3-none-any.whl → 1.5.8__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_cloud/timescale/queries.py +4 -3
- locust_cloud/webui/dist/assets/{index-CN8Zcmsf.js → index-EqSfuHMz.js} +81 -81
- locust_cloud/webui/dist/index.html +1 -1
- {locust_cloud-1.5.7.dist-info → locust_cloud-1.5.8.dist-info}/METADATA +1 -1
- {locust_cloud-1.5.7.dist-info → locust_cloud-1.5.8.dist-info}/RECORD +7 -7
- {locust_cloud-1.5.7.dist-info → locust_cloud-1.5.8.dist-info}/WHEEL +0 -0
- {locust_cloud-1.5.7.dist-info → locust_cloud-1.5.8.dist-info}/entry_points.txt +0 -0
@@ -140,11 +140,11 @@ ORDER BY 1
|
|
140
140
|
perc99_response_times = """
|
141
141
|
SELECT time_bucket(%(resolution)s * interval '1 second', bucket) AS time,
|
142
142
|
name,
|
143
|
-
perc99
|
143
|
+
MAX(perc99) as perc99
|
144
144
|
FROM requests_summary
|
145
145
|
WHERE bucket BETWEEN %(start)s AND %(end)s
|
146
146
|
AND run_id = %(testrun)s
|
147
|
-
GROUP BY 1, name
|
147
|
+
GROUP BY 1, name
|
148
148
|
ORDER BY 1
|
149
149
|
"""
|
150
150
|
|
@@ -152,11 +152,12 @@ ORDER BY 1
|
|
152
152
|
response_length = """
|
153
153
|
SELECT
|
154
154
|
time_bucket(%(resolution)s * interval '1 second', bucket) as time,
|
155
|
-
response_length as "responseLength",
|
155
|
+
AVG(response_length) as "responseLength",
|
156
156
|
name
|
157
157
|
FROM requests_summary
|
158
158
|
WHERE bucket BETWEEN %(start)s AND %(end)s
|
159
159
|
AND run_id = %(testrun)s
|
160
|
+
GROUP BY 1, name
|
160
161
|
ORDER BY 1
|
161
162
|
"""
|
162
163
|
|