python - Isit possible to union the similar GET requests in WEB output data in locust.io? -
is possible union similar requests in web output data in locust.io? example, i've such requests:
/get-user-settings/param1=value1¶m2=value2 /get-user-settings/param1=value123¶m4=value1234
so, locust, actually, show results of each request. however, need gather general statistic of method /get-user-settings
according the documentation should able requests in 1 place. in case like:
client.get("/get-user-settings/param1=%i¶m2=%j" % (i, j), name="get user settings")
Comments
Post a Comment