Last active
July 19, 2024 20:28
-
-
Save Atrate/be4a7d308549c7a9fe281d2cdf578d21 to your computer and use it in GitHub Desktop.
Quick script to get the statistics of traffic on Tor Project's Snowflake proxy instance running locally on docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash --posix | |
docker logs snowflake-proxy 2>&1 | grep --color=auto 'Traffic Relayed' | awk ' | |
{ | |
# Extract the download and upload values | |
down[1] = $14 | |
down[2] = $15 | |
gsub(/[^a-zA-Z]/, "", down[2]) | |
up[1] = $17 | |
up[2] = $18 | |
gsub(/[^a-zA-Z]/, "", up[2]) | |
# Convert to bytes | |
if (down[2] == "B") down_total += down[1]; | |
else if (down[2] == "KB") down_total += down[1] * 1024; | |
else if (down[2] == "MB") down_total += down[1] * 1024 * 1024; | |
else if (down[2] == "GB") down_total += down[1] * 1024 * 1024 * 1024; | |
if (up[2] == "B") up_total += up[1]; | |
else if (up[2] == "KB") up_total += up[1] * 1024; | |
else if (up[2] == "MB") up_total += up[1] * 1024 * 1024; | |
else if (up[2] == "GB") up_total += up[1] * 1024 * 1024 * 1024; | |
count++; | |
} | |
END { | |
print "Sum of down traffic on Snowflake: " down_total / 1024/ 1024 / 1024 " GB"; | |
print "Sum of up traffic on Snowflake: " up_total / 1024 / 1024 / 1024 " GB"; | |
print "Total connections established: " count | |
}' |
my server is debian 12 and these are the logs so far
@aquila0101 For your use-case, you'll need to change
# Extract the download and upload values
down[1] = $14
down[2] = $15
gsub(/[^a-zA-Z]/, "", down[2])
up[1] = $17
up[2] = $18
gsub(/[^a-zA-Z]/, "", up[2])
to
# Extract the download and upload values
down[1] = $15
down[2] = $16
gsub(/[^a-zA-Z]/, "", down[2])
up[1] = $18
up[2] = $19
gsub(/[^a-zA-Z]/, "", up[2])
I'll have to check on my server whether the log format just changed or whether for some reason yours is different than mine.
As far as I can see, my logs do not include the word "completed". I may have an older version of snowflake installed or something of that sort.
now it's correct:
root@DietPi:~# ./snowstats.sh
Sum of down traffic on Snowflake: 69.8545 GB
Sum of up traffic on Snowflake: 3.73765 GB
Total connections established: 100
I'm using this to run snowflake:
https://gitlab.torproject.org/tpo/anti-censorship/docker-snowflake-proxy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
root@DietPi:~# docker logs snowflake-proxy
2024/03/28 02:49:13 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 173246 KB, ↑ 12178 KB.
2024/03/28 03:49:11 In the last 1h0m0s, there were 4 completed connections. Traffic Relayed ↓ 120908 KB, ↑ 9011 KB.
2024/03/28 04:49:09 In the last 1h0m0s, there were 1 completed connections. Traffic Relayed ↓ 262045 KB, ↑ 13103 KB.
2024/03/28 05:49:07 In the last 1h0m0s, there were 1 completed connections. Traffic Relayed ↓ 493766 KB, ↑ 22888 KB.
2024/03/28 06:49:06 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 413642 KB, ↑ 19193 KB.
2024/03/28 07:49:04 In the last 1h0m0s, there were 4 completed connections. Traffic Relayed ↓ 735567 KB, ↑ 30088 KB.
2024/03/28 08:49:02 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 719912 KB, ↑ 31450 KB.
2024/03/28 09:49:00 In the last 1h0m0s, there were 0 completed connections. Traffic Relayed ↓ 354744 KB, ↑ 17041 KB.
2024/03/28 10:48:58 In the last 1h0m0s, there were 0 completed connections. Traffic Relayed ↓ 334302 KB, ↑ 21659 KB.
2024/03/28 11:48:57 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 374984 KB, ↑ 21785 KB.
2024/03/28 12:48:55 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 302627 KB, ↑ 14592 KB.
2024/03/28 13:48:53 In the last 1h0m0s, there were 4 completed connections. Traffic Relayed ↓ 233255 KB, ↑ 16361 KB.
2024/03/28 14:48:51 In the last 1h0m0s, there were 6 completed connections. Traffic Relayed ↓ 257980 KB, ↑ 15687 KB.
2024/03/28 15:48:49 In the last 1h0m0s, there were 1 completed connections. Traffic Relayed ↓ 445340 KB, ↑ 28939 KB.
2024/03/28 16:48:48 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 552508 KB, ↑ 42447 KB.
2024/03/28 17:48:46 In the last 1h0m0s, there were 6 completed connections. Traffic Relayed ↓ 404770 KB, ↑ 23868 KB.
2024/03/28 18:48:44 In the last 1h0m0s, there were 4 completed connections. Traffic Relayed ↓ 462102 KB, ↑ 20359 KB.
2024/03/28 19:48:42 In the last 1h0m0s, there were 6 completed connections. Traffic Relayed ↓ 574377 KB, ↑ 29722 KB.
2024/03/28 20:48:40 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 916386 KB, ↑ 36104 KB.
2024/03/28 21:48:38 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 650335 KB, ↑ 28148 KB.
2024/03/28 22:48:37 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 662379 KB, ↑ 32129 KB.
2024/03/28 23:48:35 In the last 1h0m0s, there were 6 completed connections. Traffic Relayed ↓ 571381 KB, ↑ 32026 KB.
2024/03/29 00:48:33 In the last 1h0m0s, there were 1 completed connections. Traffic Relayed ↓ 624331 KB, ↑ 32083 KB.
2024/03/29 01:48:31 In the last 1h0m0s, there were 1 completed connections. Traffic Relayed ↓ 762990 KB, ↑ 37082 KB.
2024/03/29 02:48:29 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 1069636 KB, ↑ 57071 KB.
2024/03/29 03:48:28 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 611427 KB, ↑ 32565 KB.
2024/03/29 04:48:26 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 770162 KB, ↑ 36509 KB.
2024/03/29 05:48:24 In the last 1h0m0s, there were 1 completed connections. Traffic Relayed ↓ 720013 KB, ↑ 37069 KB.
2024/03/29 06:48:22 In the last 1h0m0s, there were 6 completed connections. Traffic Relayed ↓ 1071838 KB, ↑ 61572 KB.
2024/03/29 07:48:20 In the last 1h0m0s, there were 1 completed connections. Traffic Relayed ↓ 1358468 KB, ↑ 76565 KB.
2024/03/29 08:48:19 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 1393763 KB, ↑ 73489 KB.
2024/03/29 09:48:17 In the last 1h0m0s, there were 4 completed connections. Traffic Relayed ↓ 1037850 KB, ↑ 57335 KB.
2024/03/29 10:48:15 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 1667211 KB, ↑ 80876 KB.
2024/03/29 11:48:13 In the last 1h0m0s, there were 5 completed connections. Traffic Relayed ↓ 1216271 KB, ↑ 58607 KB.
2024/03/29 12:48:11 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 1216161 KB, ↑ 59887 KB.
2024/03/29 13:48:10 In the last 1h0m0s, there were 5 completed connections. Traffic Relayed ↓ 970425 KB, ↑ 49935 KB.
2024/03/29 14:48:08 In the last 1h0m0s, there were 5 completed connections. Traffic Relayed ↓ 1202572 KB, ↑ 51249 KB.
2024/03/29 15:48:06 In the last 1h0m0s, there were 4 completed connections. Traffic Relayed ↓ 1234487 KB, ↑ 60310 KB.
2024/03/29 16:48:04 In the last 1h0m0s, there were 1 completed connections. Traffic Relayed ↓ 1329487 KB, ↑ 64264 KB.
2024/03/29 17:48:02 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 1294272 KB, ↑ 69199 KB.
2024/03/29 18:48:01 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 1543601 KB, ↑ 84177 KB.
2024/03/29 19:47:59 In the last 1h0m0s, there were 0 completed connections. Traffic Relayed ↓ 1382784 KB, ↑ 68462 KB.
2024/03/29 20:47:57 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 1568824 KB, ↑ 74092 KB.
2024/03/29 21:47:55 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 1329862 KB, ↑ 77436 KB.
2024/03/29 22:47:53 In the last 1h0m0s, there were 5 completed connections. Traffic Relayed ↓ 1242023 KB, ↑ 62464 KB.
2024/03/29 23:47:52 In the last 1h0m0s, there were 1 completed connections. Traffic Relayed ↓ 1163157 KB, ↑ 69338 KB.
2024/03/30 00:47:50 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 906664 KB, ↑ 56881 KB.
2024/03/30 01:47:48 In the last 1h0m0s, there were 0 completed connections. Traffic Relayed ↓ 932889 KB, ↑ 54460 KB.
2024/03/30 02:47:46 In the last 1h0m0s, there were 0 completed connections. Traffic Relayed ↓ 734875 KB, ↑ 44749 KB.
2024/03/30 03:47:44 In the last 1h0m0s, there were 0 completed connections. Traffic Relayed ↓ 1039799 KB, ↑ 59970 KB.
2024/03/30 04:47:43 In the last 1h0m0s, there were 1 completed connections. Traffic Relayed ↓ 837077 KB, ↑ 49172 KB.
2024/03/30 05:47:41 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 818914 KB, ↑ 40156 KB.
2024/03/30 06:47:39 In the last 1h0m0s, there were 0 completed connections. Traffic Relayed ↓ 1040381 KB, ↑ 55566 KB.
2024/03/30 07:47:37 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 1012633 KB, ↑ 56089 KB.
2024/03/30 08:47:36 In the last 1h0m0s, there were 1 completed connections. Traffic Relayed ↓ 1224216 KB, ↑ 66598 KB.
2024/03/30 09:47:34 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 1345886 KB, ↑ 66320 KB.
2024/03/30 10:47:32 In the last 1h0m0s, there were 4 completed connections. Traffic Relayed ↓ 1579084 KB, ↑ 73087 KB.
2024/03/30 11:47:30 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 1223591 KB, ↑ 67255 KB.
2024/03/30 12:47:28 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 863322 KB, ↑ 42816 KB.
2024/03/30 13:47:27 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 1520029 KB, ↑ 83340 KB.
2024/03/30 14:47:25 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 1357981 KB, ↑ 66054 KB.
2024/03/30 15:47:23 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 1023897 KB, ↑ 52997 KB.
2024/03/30 16:47:21 In the last 1h0m0s, there were 6 completed connections. Traffic Relayed ↓ 1155194 KB, ↑ 53625 KB.
2024/03/30 17:47:19 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 1380597 KB, ↑ 65325 KB.
2024/03/30 18:47:18 In the last 1h0m0s, there were 4 completed connections. Traffic Relayed ↓ 1276504 KB, ↑ 59406 KB.
2024/03/30 19:47:16 In the last 1h0m0s, there were 0 completed connections. Traffic Relayed ↓ 965525 KB, ↑ 47676 KB.
2024/03/30 20:47:14 In the last 1h0m0s, there were 1 completed connections. Traffic Relayed ↓ 1044653 KB, ↑ 51789 KB.
2024/03/30 21:47:12 In the last 1h0m0s, there were 1 completed connections. Traffic Relayed ↓ 907817 KB, ↑ 47375 KB.
2024/03/30 22:47:10 In the last 1h0m0s, there were 1 completed connections. Traffic Relayed ↓ 1189304 KB, ↑ 58750 KB.
2024/03/30 23:47:09 In the last 1h0m0s, there were 4 completed connections. Traffic Relayed ↓ 1149893 KB, ↑ 59588 KB.
2024/03/31 00:47:07 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 929011 KB, ↑ 45437 KB.
2024/03/31 01:47:05 In the last 1h0m0s, there were 0 completed connections. Traffic Relayed ↓ 748386 KB, ↑ 40891 KB.
2024/03/31 02:47:03 In the last 1h0m0s, there were 1 completed connections. Traffic Relayed ↓ 736476 KB, ↑ 40566 KB.
2024/03/31 03:47:01 In the last 1h0m0s, there were 1 completed connections. Traffic Relayed ↓ 858785 KB, ↑ 50997 KB.
2024/03/31 04:47:00 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 1032782 KB, ↑ 60271 KB.
2024/03/31 05:46:58 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 720435 KB, ↑ 35222 KB.
2024/03/31 06:46:56 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 882300 KB, ↑ 39385 KB.
2024/03/31 07:46:54 In the last 1h0m0s, there were 4 completed connections. Traffic Relayed ↓ 800772 KB, ↑ 38604 KB.
2024/03/31 08:46:52 In the last 1h0m0s, there were 5 completed connections. Traffic Relayed ↓ 813882 KB, ↑ 39314 KB.
2024/03/31 09:46:51 In the last 1h0m0s, there were 4 completed connections. Traffic Relayed ↓ 899112 KB, ↑ 42498 KB.
2024/03/31 10:46:49 In the last 1h0m0s, there were 4 completed connections. Traffic Relayed ↓ 1159439 KB, ↑ 55808 KB.
2024/03/31 11:46:47 In the last 1h0m0s, there were 2 completed connections. Traffic Relayed ↓ 860969 KB, ↑ 42380 KB.
2024/03/31 12:46:45 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 1343898 KB, ↑ 77443 KB.
2024/03/31 13:46:43 In the last 1h0m0s, there were 5 completed connections. Traffic Relayed ↓ 1191630 KB, ↑ 66434 KB.
2024/03/31 14:46:42 In the last 1h0m0s, there were 6 completed connections. Traffic Relayed ↓ 1349670 KB, ↑ 61310 KB.
2024/03/31 15:46:40 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 881670 KB, ↑ 37396 KB.
2024/03/31 16:46:38 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 943603 KB, ↑ 50286 KB.
2024/03/31 17:46:36 In the last 1h0m0s, there were 6 completed connections. Traffic Relayed ↓ 1066603 KB, ↑ 56890 KB.
2024/03/31 18:46:34 In the last 1h0m0s, there were 4 completed connections. Traffic Relayed ↓ 917540 KB, ↑ 51716 KB.
2024/03/31 19:46:33 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 1561976 KB, ↑ 86676 KB.
2024/03/31 20:46:31 In the last 1h0m0s, there were 3 completed connections. Traffic Relayed ↓ 1141308 KB, ↑ 58776 KB.
2024/03/31 21:46:29 In the last 1h0m0s, there were 4 completed connections. Traffic Relayed ↓ 1139250 KB, ↑ 59797 KB.
2024/03/31 22:46:27 In the last 1h0m0s, there were 4 completed connections. Traffic Relayed ↓ 928698 KB, ↑ 44497 KB.
root@DietPi:
# ./snowstats.sh#Sum of down traffic on Snowflake: 0 GB
Sum of up traffic on Snowflake: 0 GB
Total connections established: 93
root@DietPi: