-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
135 lines (102 loc) · 4.61 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
Build with "go build ./main.go" (or skip this step by using "go run ./main.go")
Command line args:
-h
-profile [non-negative integer indicating number of times to repeat the profile, default 0 indicating no profiling]
-url [URL string in the form host:port/path (default "cloudflaregeneralswe2021.mcarth.workers.dev:80/links")]
Example usage:
./main.exe -profile=5 -url="www.google.com:80"
TEST RESULTS:
against /links API
PS C:\Users\mcart\Development\cloudflaresystemsswe2021> ./main.exe -profile=100
Requests attempted: 100
Fastest request roundtrip: 38 ms
Slowest request roundtrip: 238 ms
Mean request roundtrip time: 68 ms
Median request roundtrip: 66.5 ms
Percentage successful requests: 100
No errors or non-2xx responses encountered
Smallest request response: 905 (bytes)
Largest request response: 925 (bytes)
against homepage
PS C:\Users\mcart\Development\cloudflaresystemsswe2021> ./main.exe -profile=50 -url="cloudflaregeneralswe2021.mcarth.workers.dev:80/"
Requests attempted: 50
Fastest request roundtrip: 53 ms
Slowest request roundtrip: 159 ms
Mean request roundtrip time: 106 ms
Median request roundtrip: 106 ms
Percentage successful requests: 100
No errors or non-2xx responses encountered
Smallest request response: 2923 (bytes)
Largest request response: 3137 (bytes)
against google
PS C:\Users\mcart\Development\cloudflaresystemsswe2021> ./main.exe -profile=100 -url="www.google.com:80"
Requests attempted: 100
Fastest request roundtrip: 104 ms
Slowest request roundtrip: 181 ms
Mean request roundtrip time: 120 ms
Median request roundtrip: 118 ms
Percentage successful requests: 100
No errors or non-2xx responses encountered
Smallest request response: 48134 (bytes)
Largest request response: 48279 (bytes)
against google (small response size)
PS C:\Users\mcart\Development\cloudflaresystemsswe2021> ./main.exe -profile=50 -url="google.com:80"
Requests attempted: 50
Fastest request roundtrip: 25 ms
Slowest request roundtrip: 70 ms
Mean request roundtrip time: 31 ms
Median request roundtrip: 30.5 ms
Percentage successful requests: 0
Error or non-2xx code responses encountered:
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Non 2xx http response code: 301 Moved Permanently
Smallest request response: 547 (bytes)
Largest request response: 547 (bytes)