As described in #1112, there was no request_time metric available (time between first byte received and last byte sent).
The value was computed, but wrongly assigned to the response_time metric.
This PR fixes it, and now, response_time has a better meaning and accurate value: the time between connecting to the backend and finishing the response.
We could even rename request_time to a more fitting session_time.
As described in #1112, there was no
request_time
metric available (time between first byte received and last byte sent). The value was computed, but wrongly assigned to theresponse_time
metric.This PR fixes it, and now,
response_time
has a better meaning and accurate value: the time between connecting to the backend and finishing the response.We could even rename
request_time
to a more fittingsession_time
.