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
Diagnose Network Issues with curl to Troubleshooting Guide
Use Case
Including this in the troubleshooting guide would:
Help users quickly identify if issues are related to the network or the application itself.
Improve the efficiency of diagnosing and resolving connectivity problems.
Description
It would be helpful to include the following curl command in the troubleshooting guide. This command can diagnose network-related issues by providing detailed timing information for each step of the connection process (DNS resolution, network latency, TLS handshake, server response).
Command
curl -o /dev/null -s -w "DNS resolution: %{time_namelookup}s\nTCP connection: %{time_connect}s\nTLS handshake: %{time_appconnect}s\nTime to first byte: %{time_starttransfer}s\nTotal time: %{time_total}s\n" https://example.com
The text was updated successfully, but these errors were encountered:
## Describe your PR
This guide provides a method for diagnosing network-related issues using
the curl command. By analyzing detailed timing information, you can
determine whether problems originate from the network infrastructure,
DNS resolution, TLS handshake, or server response
## Checklist
- [x] My PR is related to an opened issue : #480
- [x] I've read the [contributing
guidelines](/CleverCloud/documentation/blob/main/CONTRIBUTING.md)
## Reviewers
_Who should review these changes?_ @CleverCloud/reviewers
Co-authored-by: jpouny <[email protected]>
Co-authored-by: Pierre L. / Peyo <[email protected]>
Checking for existing issue
Describe the content you'd like to see
Diagnose Network Issues with
curl
to Troubleshooting GuideUse Case
Including this in the troubleshooting guide would:
Description
It would be helpful to include the following
curl
command in the troubleshooting guide. This command can diagnose network-related issues by providing detailed timing information for each step of the connection process (DNS resolution, network latency, TLS handshake, server response).Command
curl -o /dev/null -s -w "DNS resolution: %{time_namelookup}s\nTCP connection: %{time_connect}s\nTLS handshake: %{time_appconnect}s\nTime to first byte: %{time_starttransfer}s\nTotal time: %{time_total}s\n" https://example.com
The text was updated successfully, but these errors were encountered: