Is there a way to get the breakdown of the response-time of a API request call from Python (Requests module) or in LocustIO load testing tool.
I have two requirements where I would like to report the TransferStart part alone. Is there something I can do to get a better break down of the round trip time. Currently I am doing the following:
start_time = timeit.default_timer()
r = requests.get(api_url, headers=token, verify=False)
elapsed_time = timeit.default_timer() - start_time