Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,12 @@ Scripts will test speed and pings to the following data centers:
- hnd-jp
- sel-kor

#### [CoreWeave](https://docs.coreweave.com/data-center-regions)

- lga1
- ord1
- las1

## Screenshots

![speed screenshot](screenshot-speed.png)
Expand Down
8 changes: 8 additions & 0 deletions ping.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,11 @@ for DC in NJ-US IL-US GA-US FL-US TX-US SJO-CA-US LAX-CA-US WA-US TOR-CA FRA-DE
do
printf "$DC: \t$(ping -i .2 -c 10 -q $DC-ping.vultr.com | awk -F/ '/^round|^rtt/{print $5}') ms\n" | expand -t 20
done

printf "\n\nCoreWeave Ping Test:\n\n"

# https://docs.coreweave.com/data-center-regions
for DC in las1 lga1 ord1
do
printf "$DC: \t$(ping -i .2 -c 10 -q ping.speedtest.$DC.coreweave.com | awk -F/ '/^round|^rtt/{print $5}') ms\n" | expand -t 20
done
9 changes: 9 additions & 0 deletions speed.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,12 @@ do
printf "$DC: \e\n"
printf "$(wget -O /dev/null http://$DC-ping.vultr.com/vultr.com.100MB.bin 2>&1 | awk '/\/dev\/null/ {speed=$3 $4} END {gsub(/\(|\)/,"",speed); print speed}')\e\n" & spinner $!
done

printf "\n\nCoreWeave Speed Test: (100MB each)\n\n"

# https://docs.coreweave.com/data-center-regions
for DC in las1 lga1 ord1
do
printf "$DC: \e\n"
printf "$(wget -O /dev/null http://http.speedtest.$DC.coreweave.com/100M 2>&1 | awk '/\/dev\/null/ {speed=$3 $4} END {gsub(/\(|\)/,"",speed); print speed}')\e\n" & spinner $!
done