Replies: 2 comments 2 replies
-
Ah figured it out, its the timeout, bumping it up from |
Beta Was this translation helpful? Give feedback.
-
Assuming you're observing similar request-response latency when using curl, maybe this little helper I lug around with my dotfiles can help you. https://github.com/bdd/.dotfiles/blob/main/dot.local/bin/curltime Example output:
Above output tells us, it took 20ms to resolve the name, on the 180th millisecond (160ms after resolving) TCP 3-way handshake was complete and curl was ready to send; 428 ms after the command TLS handshake was done; the very same time request was sent; and finally 588ms after initial command, client read the first byte of the response from the socket. Hopefully this curl wrapper will help you figure out where exactly the issue lies. |
Beta Was this translation helpful? Give feedback.
-
I am having a strange issue as of this morning. When I try to ping a self hosted healthchecks instance with runitor it fails:
If I try to do the same thing manually with curl it works just fine:
Do you have any suggestions on how I could debug/resolve this? It has me totally stumped
Beta Was this translation helpful? Give feedback.
All reactions