[DIGITALOCEAN] CHECK ISSUE SLOW IMAGE LOAD - fourslickz/notes GitHub Wiki

  1. When exactly are you experiencing this slowness issue? Is it constant or intermittent?

  2. Are you seeing any errors? If so, please provide a screenshot of the error.

  3. Please run MTR for CDN edge path:

mtr -rwbzc100 [BucketName.Region.cdn.digitaloceanspaces.com](https://bucketname.region.cdn.digitaloceanspaces.com/)

Example: If your Spaces name is "test" and hosted in NYC3 region then you mtr command should be as follows:

mtr -rwbzc100 [storage1germany.fra1.cdn.digitaloceanspaces.com](https://storage1germany.fra1.cdn.digitaloceanspaces.com/)
  1. If you are seeing issue with any specific URL or file then please provide the verbose curl output as follows:
curl -v --http2 EdgeURL -o /dev/null

Example: If you are having issue with accessing URL https://storage1germany.fra1.cdn.digitaloceanspaces.com/test.txt file then you can run following curl command:

curl -v --http2 https://test.sfo2.cdn.digitaloceanspaces.com/test.txt -o /dev/null

MTR instructions can be found here:

https://www.digitalocean.com/community/tutorials/how-to-use-traceroute-and-mtr-to-diagnose-network-issues#how-to-use-mtr

Let us know if you have any other questions.