Skip to content

Instantly share code, notes, and snippets.

@brynary
Created August 27, 2009 21:47
Show Gist options
  • Save brynary/176589 to your computer and use it in GitHub Desktop.
Save brynary/176589 to your computer and use it in GitHub Desktop.
NewRelic w/o transactions:
$ ab -n 3000 -c 4 http://staging.weplay.com/users/LebronJames
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking staging.weplay.com (be patient)
Server Software: nginx
Server Hostname: staging.weplay.com
Server Port: 80
Document Path: /users/LebronJames
Document Length: 41049 bytes
Concurrency Level: 4
Time taken for tests: 267.918 seconds
Complete requests: 3000
Failed requests: 2982
(Connect: 0, Receive: 0, Length: 2982, Exceptions: 0)
Write errors: 0
Total transferred: 125473130 bytes
HTML transferred: 123382127 bytes
Requests per second: 11.20 [#/sec] (mean)
Time per request: 357.224 [ms] (mean)
Time per request: 89.306 [ms] (mean, across all concurrent requests)
Transfer rate: 457.35 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 3 14 55.7 9 1000
Processing: 160 343 185.2 293 3088
Waiting: 108 260 178.0 210 3004
Total: 167 357 193.2 303 3096
Percentage of the requests served within a certain time (ms)
50% 303
66% 342
75% 375
80% 400
90% 584
95% 720
98% 891
99% 1019
100% 3096 (longest request)
NewRelic w/ transactions enabled:
$ ab -n 3000 -c 4 http://staging.weplay.com/users/LebronJames
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Server Software: nginx
Server Hostname: staging.weplay.com
Server Port: 80
Document Path: /users/LebronJames
Document Length: 41157 bytes
Concurrency Level: 4
Time taken for tests: 277.559 seconds
Complete requests: 3000
Failed requests: 2996
(Connect: 0, Receive: 0, Length: 2996, Exceptions: 0)
Write errors: 0
Total transferred: 125478379 bytes
HTML transferred: 123387361 bytes
Requests per second: 10.81 [#/sec] (mean)
Time per request: 370.079 [ms] (mean)
Time per request: 92.520 [ms] (mean, across all concurrent requests)
Transfer rate: 441.48 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 3 13 52.2 8 998
Processing: 167 357 203.6 298 3258
Waiting: 114 282 197.6 222 3165
Total: 176 370 210.1 307 3262
Percentage of the requests served within a certain time (ms)
50% 307
66% 346
75% 382
80% 409
90% 633
95% 800
98% 963
99% 1140
100% 3262 (longest request)
Without NewRelic:
$ ab -n 3000 -c 4 http://staging.weplay.com/users/LebronJames
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Server Software: nginx
Server Hostname: staging.weplay.com
Server Port: 80
Document Path: /users/LebronJames
Document Length: 40910 bytes
Concurrency Level: 4
Time taken for tests: 244.204 seconds
Complete requests: 3000
Failed requests: 2989
(Connect: 0, Receive: 0, Length: 2989, Exceptions: 0)
Write errors: 0
Total transferred: 125475868 bytes
HTML transferred: 123384952 bytes
Requests per second: 12.28 [#/sec] (mean)
Time per request: 325.606 [ms] (mean)
Time per request: 81.401 [ms] (mean, across all concurrent requests)
Transfer rate: 501.77 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 3 12 52.6 8 991
Processing: 151 313 228.7 251 4540
Waiting: 99 237 215.8 180 3858
Total: 159 325 234.3 260 4550
Percentage of the requests served within a certain time (ms)
50% 260
66% 295
75% 323
80% 350
90% 543
95% 750
98% 933
99% 1159
100% 4550 (longest request)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment