Replies: 1 comment 1 reply
-
There isn't anything built in to hyper that exposes the timings. At least not yet. Adding support is desired, but the design is not yet known. A likely way would be if |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is your feature request related to a problem? Please describe.
No.
Describe the solution you'd like
I have created a simple c-program to measure some http(s) timings. It's nothing fancy or rocket science but it makes the job to measure the https request time.
https://github.com/git001/c-program/blob/main/libcurl-time.c
I use the libcurl's curl_easy_getinfo function for that with one of the parameters
CURLINFO_TOTAL_TIME_T
.Is there something similar in hyper or planned to add?
Describe alternatives you've considered
I have used the curl cli with the write-out parameter which is quite handy for network debugging. It would be nice to have something similar in rust.
Additional context
No additional context.
Beta Was this translation helpful? Give feedback.
All reactions