You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My load tests must include many query parameters that are close to random.
I changed the methods on_request_success and on_request_failure to use RequestStats.get(method, name.split('?')[0]) instead, so I could get the stats based on the paths without the query parameters.
I guess this could be useful for many people, so I thought about submitting a patch with an option like --ignore-query-parameters-stats or something, but I thought better to ask here for some tips about where should I add the changes. Should I just do the change as I explained, and add an option for it? Or should I do that up in the call hierarchy?
Thanks!
The text was updated successfully, but these errors were encountered:
My load tests must include many query parameters that are close to random.
I changed the methods
on_request_success
andon_request_failure
to useRequestStats.get(method, name.split('?')[0])
instead, so I could get the stats based on the paths without the query parameters.I guess this could be useful for many people, so I thought about submitting a patch with an option like
--ignore-query-parameters-stats
or something, but I thought better to ask here for some tips about where should I add the changes. Should I just do the change as I explained, and add an option for it? Or should I do that up in the call hierarchy?Thanks!
The text was updated successfully, but these errors were encountered: