heroku-true-relic 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (98) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +39 -0
  3. data/Rakefile +56 -0
  4. data/lib/heroku-true-relic.rb +5 -0
  5. data/lib/heroku-true-relic/queue_time_logger.rb +32 -0
  6. data/lib/heroku-true-relic/rails2.rb +13 -0
  7. data/lib/heroku-true-relic/railtie.rb +7 -0
  8. data/lib/heroku-true-relic/version.rb +3 -0
  9. data/lib/tasks/heroku-true-relic_tasks.rake +4 -0
  10. data/spec/rails-2.3/Gemfile +14 -0
  11. data/spec/rails-2.3/Gemfile.lock +82 -0
  12. data/spec/rails-2.3/Rakefile +10 -0
  13. data/spec/rails-2.3/app_root/config/boot.rb +114 -0
  14. data/spec/rails-2.3/app_root/config/database.yml +22 -0
  15. data/spec/rails-2.3/app_root/config/environment.rb +45 -0
  16. data/spec/rails-2.3/app_root/config/environments/development.rb +17 -0
  17. data/spec/rails-2.3/app_root/config/environments/production.rb +28 -0
  18. data/spec/rails-2.3/app_root/config/environments/test.rb +28 -0
  19. data/spec/rails-2.3/app_root/config/initializers/backtrace_silencers.rb +7 -0
  20. data/spec/rails-2.3/app_root/config/initializers/cookie_verification_secret.rb +7 -0
  21. data/spec/rails-2.3/app_root/config/initializers/inflections.rb +10 -0
  22. data/spec/rails-2.3/app_root/config/initializers/mime_types.rb +5 -0
  23. data/spec/rails-2.3/app_root/config/initializers/new_rails_defaults.rb +21 -0
  24. data/spec/rails-2.3/app_root/config/initializers/session_store.rb +15 -0
  25. data/spec/rails-2.3/app_root/config/locales/en.yml +5 -0
  26. data/spec/rails-2.3/app_root/config/routes.rb +4 -0
  27. data/spec/rails-2.3/app_root/db/development.sqlite3 +0 -0
  28. data/spec/rails-2.3/app_root/db/seeds.rb +7 -0
  29. data/spec/rails-2.3/app_root/db/test.sqlite3 +0 -0
  30. data/spec/rails-2.3/app_root/doc/README_FOR_APP +2 -0
  31. data/spec/rails-2.3/app_root/log/development.log +43 -0
  32. data/spec/rails-2.3/app_root/log/production.log +0 -0
  33. data/spec/rails-2.3/app_root/log/server.log +0 -0
  34. data/spec/rails-2.3/app_root/log/test.log +380 -0
  35. data/spec/rails-2.3/app_root/public/404.html +30 -0
  36. data/spec/rails-2.3/app_root/public/422.html +30 -0
  37. data/spec/rails-2.3/app_root/public/500.html +30 -0
  38. data/spec/rails-2.3/app_root/public/favicon.ico +0 -0
  39. data/spec/rails-2.3/app_root/public/images/rails.png +0 -0
  40. data/spec/rails-2.3/app_root/public/javascripts/application.js +2 -0
  41. data/spec/rails-2.3/app_root/public/javascripts/controls.js +963 -0
  42. data/spec/rails-2.3/app_root/public/javascripts/dragdrop.js +973 -0
  43. data/spec/rails-2.3/app_root/public/javascripts/effects.js +1128 -0
  44. data/spec/rails-2.3/app_root/public/javascripts/prototype.js +4320 -0
  45. data/spec/rails-2.3/app_root/public/robots.txt +5 -0
  46. data/spec/rails-2.3/app_root/script/about +4 -0
  47. data/spec/rails-2.3/app_root/script/console +3 -0
  48. data/spec/rails-2.3/app_root/script/dbconsole +3 -0
  49. data/spec/rails-2.3/app_root/script/destroy +3 -0
  50. data/spec/rails-2.3/app_root/script/generate +3 -0
  51. data/spec/rails-2.3/app_root/script/performance/benchmarker +3 -0
  52. data/spec/rails-2.3/app_root/script/performance/profiler +3 -0
  53. data/spec/rails-2.3/app_root/script/plugin +3 -0
  54. data/spec/rails-2.3/app_root/script/runner +3 -0
  55. data/spec/rails-2.3/app_root/script/server +3 -0
  56. data/spec/rails-2.3/app_root/test/performance/browsing_test.rb +9 -0
  57. data/spec/rails-2.3/app_root/test/test_helper.rb +38 -0
  58. data/spec/rails-2.3/spec/spec.opts +4 -0
  59. data/spec/rails-2.3/spec/spec_helper.rb +59 -0
  60. data/spec/rails-3.2/Gemfile +14 -0
  61. data/spec/rails-3.2/Gemfile.lock +146 -0
  62. data/spec/rails-3.2/Rakefile +10 -0
  63. data/spec/rails-3.2/app_root/README.rdoc +261 -0
  64. data/spec/rails-3.2/app_root/config.ru +4 -0
  65. data/spec/rails-3.2/app_root/config/application.rb +59 -0
  66. data/spec/rails-3.2/app_root/config/boot.rb +10 -0
  67. data/spec/rails-3.2/app_root/config/database.yml +25 -0
  68. data/spec/rails-3.2/app_root/config/environment.rb +5 -0
  69. data/spec/rails-3.2/app_root/config/environments/development.rb +37 -0
  70. data/spec/rails-3.2/app_root/config/environments/production.rb +67 -0
  71. data/spec/rails-3.2/app_root/config/environments/test.rb +37 -0
  72. data/spec/rails-3.2/app_root/config/initializers/backtrace_silencers.rb +7 -0
  73. data/spec/rails-3.2/app_root/config/initializers/inflections.rb +15 -0
  74. data/spec/rails-3.2/app_root/config/initializers/mime_types.rb +5 -0
  75. data/spec/rails-3.2/app_root/config/initializers/secret_token.rb +7 -0
  76. data/spec/rails-3.2/app_root/config/initializers/session_store.rb +8 -0
  77. data/spec/rails-3.2/app_root/config/initializers/wrap_parameters.rb +14 -0
  78. data/spec/rails-3.2/app_root/config/locales/en.yml +5 -0
  79. data/spec/rails-3.2/app_root/config/routes.rb +61 -0
  80. data/spec/rails-3.2/app_root/db/development.sqlite3 +0 -0
  81. data/spec/rails-3.2/app_root/db/test.sqlite3 +0 -0
  82. data/spec/rails-3.2/app_root/log/development.log +75 -0
  83. data/spec/rails-3.2/app_root/log/test.log +883 -0
  84. data/spec/rails-3.2/app_root/public/404.html +26 -0
  85. data/spec/rails-3.2/app_root/public/422.html +26 -0
  86. data/spec/rails-3.2/app_root/public/500.html +25 -0
  87. data/spec/rails-3.2/app_root/public/favicon.ico +0 -0
  88. data/spec/rails-3.2/app_root/script/rails +6 -0
  89. data/spec/rails-3.2/spec/spec_helper.rb +47 -0
  90. data/spec/shared/app_root/app/assets/javascripts/application.js +15 -0
  91. data/spec/shared/app_root/app/assets/stylesheets/application.css +13 -0
  92. data/spec/shared/app_root/app/controllers/application_controller.rb +3 -0
  93. data/spec/shared/app_root/app/controllers/dummy_controller.rb +5 -0
  94. data/spec/shared/app_root/app/controllers/env_controller.rb +5 -0
  95. data/spec/shared/app_root/app/helpers/application_helper.rb +2 -0
  96. data/spec/shared/app_root/app/views/layouts/application.html.erb +14 -0
  97. data/spec/shared/heroku-true-relic/heroku-true-relic_spec.rb +44 -0
  98. metadata +366 -0
@@ -0,0 +1,883 @@
1
+ Connecting to database specified by database.yml
2
+  (0.4ms) begin transaction
3
+  (0.1ms) rollback transaction
4
+ Connecting to database specified by database.yml
5
+  (0.4ms) begin transaction
6
+  (0.1ms) rollback transaction
7
+  (0.0ms) begin transaction
8
+  (0.0ms) rollback transaction
9
+ Connecting to database specified by database.yml
10
+  (0.4ms) begin transaction
11
+  (0.1ms) rollback transaction
12
+  (0.1ms) begin transaction
13
+  (0.1ms) rollback transaction
14
+ Connecting to database specified by database.yml
15
+  (0.4ms) begin transaction
16
+  (0.1ms) rollback transaction
17
+  (0.0ms) begin transaction
18
+ Started GET "/" for 127.0.0.1 at 2013-02-16 15:42:51 -0500
19
+  (0.1ms) rollback transaction
20
+ Connecting to database specified by database.yml
21
+  (0.4ms) begin transaction
22
+  (0.1ms) rollback transaction
23
+  (0.1ms) begin transaction
24
+ Started GET "/" for 127.0.0.1 at 2013-02-16 15:43:54 -0500
25
+ Processing by DummyController#index as HTML
26
+ Rendered text template (0.0ms)
27
+ Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
28
+  (0.1ms) rollback transaction
29
+ Connecting to database specified by database.yml
30
+  (0.4ms) begin transaction
31
+ Started GET "/" for 127.0.0.1 at 2013-02-16 15:50:12 -0500
32
+ Processing by DummyController#index as HTML
33
+ Completed 500 Internal Server Error in 12ms
34
+  (0.1ms) rollback transaction
35
+  (0.1ms) begin transaction
36
+  (0.0ms) rollback transaction
37
+ Connecting to database specified by database.yml
38
+  (0.4ms) begin transaction
39
+  (0.1ms) rollback transaction
40
+  (0.1ms) begin transaction
41
+ Started GET "/" for 127.0.0.1 at 2013-02-16 15:50:28 -0500
42
+ Processing by DummyController#index as HTML
43
+ Completed 500 Internal Server Error in 12ms
44
+  (0.1ms) rollback transaction
45
+ Connecting to database specified by database.yml
46
+  (0.4ms) begin transaction
47
+  (0.1ms) rollback transaction
48
+  (0.1ms) begin transaction
49
+ Started GET "/" for 127.0.0.1 at 2013-02-16 15:50:38 -0500
50
+ Processing by DummyController#index as HTML
51
+ Completed 500 Internal Server Error in 12ms
52
+  (0.1ms) rollback transaction
53
+ Connecting to database specified by database.yml
54
+  (0.4ms) begin transaction
55
+ Started GET "/" for 127.0.0.1 at 2013-02-16 15:51:21 -0500
56
+ Processing by DummyController#index as HTML
57
+ Completed 500 Internal Server Error in 11ms
58
+  (0.1ms) rollback transaction
59
+  (0.0ms) begin transaction
60
+  (0.1ms) rollback transaction
61
+ Connecting to database specified by database.yml
62
+  (0.4ms) begin transaction
63
+  (0.1ms) rollback transaction
64
+  (0.1ms) begin transaction
65
+ Connecting to database specified by database.yml
66
+  (0.4ms) begin transaction
67
+  (0.1ms) rollback transaction
68
+  (0.1ms) begin transaction
69
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-16 15:56:00 -0500
70
+ Processing by EnvController#show as HTML
71
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
72
+ Completed 500 Internal Server Error in 0ms
73
+  (0.1ms) rollback transaction
74
+ Connecting to database specified by database.yml
75
+  (0.4ms) begin transaction
76
+  (0.1ms) rollback transaction
77
+  (0.1ms) begin transaction
78
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-16 16:03:08 -0500
79
+ Processing by EnvController#show as HTML
80
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
81
+ Completed 500 Internal Server Error in 0ms
82
+ Connecting to database specified by database.yml
83
+  (0.4ms) begin transaction
84
+  (0.1ms) rollback transaction
85
+  (0.1ms) begin transaction
86
+  (0.0ms) rollback transaction
87
+ Connecting to database specified by database.yml
88
+  (0.4ms) begin transaction
89
+  (0.1ms) rollback transaction
90
+  (0.1ms) begin transaction
91
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-16 16:07:55 -0500
92
+ Processing by EnvController#show as HTML
93
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
94
+ Completed 500 Internal Server Error in 0ms
95
+  (0.1ms) rollback transaction
96
+ Connecting to database specified by database.yml
97
+  (0.4ms) begin transaction
98
+  (0.1ms) rollback transaction
99
+  (0.1ms) begin transaction
100
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-16 16:08:21 -0500
101
+ Processing by EnvController#show as HTML
102
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
103
+ Completed 500 Internal Server Error in 0ms
104
+  (0.1ms) rollback transaction
105
+ Connecting to database specified by database.yml
106
+  (0.4ms) begin transaction
107
+  (0.1ms) rollback transaction
108
+  (0.1ms) begin transaction
109
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-16 16:12:45 -0500
110
+ Processing by EnvController#show as HTML
111
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
112
+ Completed 500 Internal Server Error in 0ms
113
+  (0.1ms) rollback transaction
114
+ Connecting to database specified by database.yml
115
+  (0.4ms) begin transaction
116
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-16 16:13:37 -0500
117
+ Processing by EnvController#show as HTML
118
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
119
+ Completed 500 Internal Server Error in 0ms
120
+ Connecting to database specified by database.yml
121
+  (0.4ms) begin transaction
122
+  (0.1ms) rollback transaction
123
+  (0.1ms) begin transaction
124
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-16 16:17:03 -0500
125
+ Processing by EnvController#show as HTML
126
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
127
+ Completed 500 Internal Server Error in 0ms
128
+ Connecting to database specified by database.yml
129
+  (0.4ms) begin transaction
130
+  (0.1ms) rollback transaction
131
+  (0.1ms) begin transaction
132
+  (0.1ms) rollback transaction
133
+ Connecting to database specified by database.yml
134
+  (0.4ms) begin transaction
135
+  (0.1ms) rollback transaction
136
+  (0.1ms) begin transaction
137
+  (0.1ms) rollback transaction
138
+ Connecting to database specified by database.yml
139
+  (0.4ms) begin transaction
140
+  (0.1ms) rollback transaction
141
+  (0.1ms) begin transaction
142
+ Connecting to database specified by database.yml
143
+  (0.4ms) begin transaction
144
+  (0.1ms) rollback transaction
145
+  (0.1ms) begin transaction
146
+ Connecting to database specified by database.yml
147
+  (0.4ms) begin transaction
148
+  (0.1ms) rollback transaction
149
+  (0.1ms) begin transaction
150
+  (0.1ms) rollback transaction
151
+ Connecting to database specified by database.yml
152
+  (0.4ms) begin transaction
153
+  (0.1ms) rollback transaction
154
+  (0.1ms) begin transaction
155
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-16 16:34:22 -0500
156
+ Processing by EnvController#show as HTML
157
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
158
+ Completed 500 Internal Server Error in 0ms
159
+ Connecting to database specified by database.yml
160
+  (0.4ms) begin transaction
161
+  (0.1ms) rollback transaction
162
+  (0.1ms) begin transaction
163
+  (0.0ms) rollback transaction
164
+ Connecting to database specified by database.yml
165
+  (0.4ms) begin transaction
166
+  (0.1ms) rollback transaction
167
+  (0.1ms) begin transaction
168
+ Connecting to database specified by database.yml
169
+  (0.4ms) begin transaction
170
+  (0.1ms) rollback transaction
171
+  (0.1ms) begin transaction
172
+  (0.1ms) rollback transaction
173
+ Connecting to database specified by database.yml
174
+  (0.3ms) begin transaction
175
+  (0.1ms) rollback transaction
176
+  (0.1ms) begin transaction
177
+  (0.1ms) rollback transaction
178
+ Connecting to database specified by database.yml
179
+  (0.4ms) begin transaction
180
+  (0.1ms) rollback transaction
181
+  (0.1ms) begin transaction
182
+  (0.1ms) rollback transaction
183
+ Connecting to database specified by database.yml
184
+  (0.4ms) begin transaction
185
+  (0.1ms) rollback transaction
186
+  (0.1ms) begin transaction
187
+ Connecting to database specified by database.yml
188
+  (0.4ms) begin transaction
189
+  (0.1ms) rollback transaction
190
+  (0.1ms) begin transaction
191
+ Connecting to database specified by database.yml
192
+  (0.4ms) begin transaction
193
+ Started GET "/" for ::1 at 2013-02-16 16:46:12 -0500
194
+ Processing by DummyController#index as HTML
195
+ Rendered text template (0.0ms)
196
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
197
+ Connecting to database specified by database.yml
198
+  (0.4ms) begin transaction
199
+ Connecting to database specified by database.yml
200
+  (0.3ms) begin transaction
201
+  (0.1ms) rollback transaction
202
+  (0.1ms) begin transaction
203
+  (0.1ms) rollback transaction
204
+ Connecting to database specified by database.yml
205
+  (0.4ms) begin transaction
206
+  (0.1ms) rollback transaction
207
+  (0.1ms) begin transaction
208
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-16 16:47:41 -0500
209
+ Processing by EnvController#show as HTML
210
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
211
+ Completed 500 Internal Server Error in 0ms
212
+ Connecting to database specified by database.yml
213
+  (0.4ms) begin transaction
214
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-16 16:52:44 -0500
215
+ Processing by EnvController#show as HTML
216
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
217
+ Completed 500 Internal Server Error in 0ms
218
+ Connecting to database specified by database.yml
219
+  (0.4ms) begin transaction
220
+  (0.1ms) rollback transaction
221
+  (0.1ms) begin transaction
222
+ Connecting to database specified by database.yml
223
+  (0.4ms) begin transaction
224
+  (0.0ms) rollback transaction
225
+  (0.1ms) begin transaction
226
+ Started GET "/" for ::1 at 2013-02-16 17:01:24 -0500
227
+ Processing by DummyController#index as HTML
228
+ Rendered text template (0.0ms)
229
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
230
+ Started GET "/" for ::1 at 2013-02-16 17:01:24 -0500
231
+ Processing by DummyController#index as */*
232
+ Rendered text template (0.0ms)
233
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
234
+ Started GET "/env/HTTP" for ::1 at 2013-02-16 17:01:24 -0500
235
+ Processing by EnvController#show as */*
236
+ Parameters: {"var"=>"HTTP"}
237
+ Completed 500 Internal Server Error in 0ms
238
+ Connecting to database specified by database.yml
239
+  (0.4ms) begin transaction
240
+  (0.1ms) rollback transaction
241
+  (0.1ms) begin transaction
242
+ Connecting to database specified by database.yml
243
+  (0.4ms) begin transaction
244
+  (0.1ms) rollback transaction
245
+  (0.1ms) begin transaction
246
+ Started GET "/env/HTTP_X_QUEUE_TIME" for ::1 at 2013-02-16 17:11:09 -0500
247
+ Processing by EnvController#show as */*
248
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
249
+ Rendered text template (0.0ms)
250
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
251
+ Connecting to database specified by database.yml
252
+  (0.4ms) begin transaction
253
+  (0.1ms) rollback transaction
254
+  (0.1ms) begin transaction
255
+ Started GET "/env/HTTP_X_QUEUE_TIME" for ::1 at 2013-02-16 17:12:09 -0500
256
+ Processing by EnvController#show as */*
257
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
258
+ Rendered text template (0.0ms)
259
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
260
+  (0.1ms) rollback transaction
261
+ Connecting to database specified by database.yml
262
+  (0.4ms) begin transaction
263
+ Started GET "/env/HTTP_X_QUEUE_TIME" for ::1 at 2013-02-16 17:13:33 -0500
264
+ Processing by EnvController#show as */*
265
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
266
+ Rendered text template (0.0ms)
267
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
268
+  (0.1ms) rollback transaction
269
+  (0.1ms) begin transaction
270
+  (0.1ms) rollback transaction
271
+ Connecting to database specified by database.yml
272
+  (0.4ms) begin transaction
273
+ Started GET "/env/HTTP_X_QUEUE_TIME" for ::1 at 2013-02-16 17:13:45 -0500
274
+ Processing by EnvController#show as */*
275
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
276
+ Rendered text template (0.0ms)
277
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
278
+ Connecting to database specified by database.yml
279
+  (0.5ms) begin transaction
280
+  (0.1ms) rollback transaction
281
+  (0.1ms) begin transaction
282
+ Started GET "/env/HTTP_X_QUEUE_TIME" for ::1 at 2013-02-16 17:16:02 -0500
283
+ Processing by EnvController#show as */*
284
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
285
+ Rendered text template (0.0ms)
286
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
287
+ Connecting to database specified by database.yml
288
+  (0.4ms) begin transaction
289
+  (0.1ms) rollback transaction
290
+  (0.1ms) begin transaction
291
+ Started GET "/env/HTTP_X_QUEUE_TIME" for ::1 at 2013-02-16 17:17:05 -0500
292
+ Processing by EnvController#show as */*
293
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
294
+ Rendered text template (0.0ms)
295
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
296
+ Connecting to database specified by database.yml
297
+  (0.4ms) begin transaction
298
+  (0.1ms) rollback transaction
299
+  (0.1ms) begin transaction
300
+ Started GET "/env/HTTP_X_QUEUE_TIME" for ::1 at 2013-02-16 17:20:19 -0500
301
+ Processing by EnvController#show as */*
302
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
303
+ Rendered text template (0.0ms)
304
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
305
+ Connecting to database specified by database.yml
306
+  (0.4ms) begin transaction
307
+ Started GET "/env/HTTP_X_QUEUE_TIME" for ::1 at 2013-02-16 17:20:35 -0500
308
+ Processing by EnvController#show as */*
309
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
310
+ Rendered text template (0.0ms)
311
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
312
+  (0.1ms) rollback transaction
313
+  (0.1ms) begin transaction
314
+  (0.0ms) rollback transaction
315
+ Connecting to database specified by database.yml
316
+  (0.4ms) begin transaction
317
+  (0.1ms) rollback transaction
318
+  (0.1ms) begin transaction
319
+ Started GET "/env/HTTP_X_QUEUE_TIME" for ::1 at 2013-02-16 17:23:27 -0500
320
+ Processing by EnvController#show as */*
321
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
322
+ Rendered text template (0.0ms)
323
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
324
+  (0.1ms) rollback transaction
325
+  (0.0ms) begin transaction
326
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for ::1 at 2013-02-16 17:23:28 -0500
327
+ Processing by EnvController#show as */*
328
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
329
+ Rendered text template (0.0ms)
330
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
331
+  (0.1ms) rollback transaction
332
+ Connecting to database specified by database.yml
333
+  (0.4ms) begin transaction
334
+  (0.1ms) rollback transaction
335
+  (0.1ms) begin transaction
336
+ Started GET "/env/HTTP_X_QUEUE_TIME" for ::1 at 2013-02-16 17:23:49 -0500
337
+ Processing by EnvController#show as */*
338
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
339
+ Rendered text template (0.0ms)
340
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
341
+  (0.1ms) rollback transaction
342
+  (0.0ms) begin transaction
343
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for ::1 at 2013-02-16 17:23:49 -0500
344
+ Processing by EnvController#show as */*
345
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
346
+ Rendered text template (0.0ms)
347
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
348
+  (0.1ms) rollback transaction
349
+ Connecting to database specified by database.yml
350
+  (0.5ms) begin transaction
351
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for ::1 at 2013-02-16 17:29:03 -0500
352
+ Processing by EnvController#show as */*
353
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
354
+ Rendered text template (0.0ms)
355
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
356
+  (0.1ms) rollback transaction
357
+  (0.1ms) begin transaction
358
+ Started GET "/env/HTTP_X_QUEUE_TIME" for ::1 at 2013-02-16 17:29:04 -0500
359
+ Processing by EnvController#show as */*
360
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
361
+ Rendered text template (0.0ms)
362
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
363
+  (0.1ms) rollback transaction
364
+  (0.1ms) begin transaction
365
+  (0.1ms) rollback transaction
366
+ Connecting to database specified by database.yml
367
+  (0.4ms) begin transaction
368
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for ::1 at 2013-02-16 17:38:20 -0500
369
+ Processing by EnvController#show as */*
370
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
371
+ Rendered text template (0.0ms)
372
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
373
+  (0.1ms) rollback transaction
374
+  (0.1ms) begin transaction
375
+ Started GET "/env/HTTP_X_QUEUE_TIME" for ::1 at 2013-02-16 17:38:20 -0500
376
+ Processing by EnvController#show as */*
377
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
378
+ Rendered text template (0.0ms)
379
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
380
+  (0.1ms) rollback transaction
381
+  (0.1ms) begin transaction
382
+  (0.1ms) rollback transaction
383
+ Connecting to database specified by database.yml
384
+  (0.4ms) begin transaction
385
+  (0.1ms) rollback transaction
386
+  (0.1ms) begin transaction
387
+ Started GET "/env/HTTP_X_QUEUE_TIME" for ::1 at 2013-02-16 17:55:07 -0500
388
+ Processing by EnvController#show as */*
389
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
390
+ Rendered text template (0.0ms)
391
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
392
+  (0.1ms) rollback transaction
393
+  (0.0ms) begin transaction
394
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for ::1 at 2013-02-16 17:55:07 -0500
395
+ Processing by EnvController#show as */*
396
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
397
+ Rendered text template (0.0ms)
398
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
399
+  (0.1ms) rollback transaction
400
+ Connecting to database specified by database.yml
401
+  (0.5ms) begin transaction
402
+  (0.1ms) rollback transaction
403
+  (0.1ms) begin transaction
404
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-16 17:57:25 -0500
405
+ Processing by EnvController#show as */*
406
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
407
+ Rendered text template (0.0ms)
408
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
409
+  (0.1ms) rollback transaction
410
+  (0.1ms) begin transaction
411
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-16 17:57:25 -0500
412
+ Processing by EnvController#show as */*
413
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
414
+ Rendered text template (0.0ms)
415
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
416
+  (0.1ms) rollback transaction
417
+ Connecting to database specified by database.yml
418
+  (0.4ms) begin transaction
419
+  (0.1ms) rollback transaction
420
+  (0.1ms) begin transaction
421
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-16 17:57:30 -0500
422
+ Processing by EnvController#show as */*
423
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
424
+ Rendered text template (0.0ms)
425
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
426
+  (0.1ms) rollback transaction
427
+  (0.1ms) begin transaction
428
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-16 17:57:31 -0500
429
+ Processing by EnvController#show as */*
430
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
431
+ Rendered text template (0.0ms)
432
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
433
+  (0.1ms) rollback transaction
434
+ Connecting to database specified by database.yml
435
+ Connecting to database specified by database.yml
436
+ Connecting to database specified by database.yml
437
+  (8.0ms) begin transaction
438
+  (0.1ms) rollback transaction
439
+  (0.1ms) begin transaction
440
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-16 18:56:17 -0500
441
+ Processing by EnvController#show as */*
442
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
443
+ Rendered text template (0.0ms)
444
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
445
+  (0.1ms) rollback transaction
446
+  (0.1ms) begin transaction
447
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-16 18:56:17 -0500
448
+ Processing by EnvController#show as */*
449
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
450
+ Rendered text template (0.0ms)
451
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
452
+  (0.1ms) rollback transaction
453
+ Connecting to database specified by database.yml
454
+  (0.4ms) begin transaction
455
+  (0.0ms) rollback transaction
456
+  (0.1ms) begin transaction
457
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-16 18:58:05 -0500
458
+ Processing by EnvController#show as */*
459
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
460
+ Rendered text template (0.0ms)
461
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
462
+  (0.1ms) rollback transaction
463
+  (0.1ms) begin transaction
464
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-16 18:58:05 -0500
465
+ Processing by EnvController#show as */*
466
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
467
+ Rendered text template (0.0ms)
468
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
469
+  (0.1ms) rollback transaction
470
+ Connecting to database specified by database.yml
471
+  (0.4ms) begin transaction
472
+  (0.1ms) rollback transaction
473
+  (0.1ms) begin transaction
474
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-16 18:58:42 -0500
475
+ Processing by EnvController#show as */*
476
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
477
+ Rendered text template (0.0ms)
478
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
479
+  (0.1ms) rollback transaction
480
+  (0.1ms) begin transaction
481
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-16 18:58:43 -0500
482
+ Processing by EnvController#show as */*
483
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
484
+ Rendered text template (0.0ms)
485
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
486
+  (0.1ms) rollback transaction
487
+ Connecting to database specified by database.yml
488
+  (0.4ms) begin transaction
489
+  (0.0ms) rollback transaction
490
+  (0.0ms) begin transaction
491
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-16 18:58:55 -0500
492
+ Processing by EnvController#show as */*
493
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
494
+ Rendered text template (0.0ms)
495
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
496
+  (0.1ms) rollback transaction
497
+  (0.1ms) begin transaction
498
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-16 18:58:55 -0500
499
+ Processing by EnvController#show as */*
500
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
501
+ Rendered text template (0.0ms)
502
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
503
+  (0.1ms) rollback transaction
504
+ Connecting to database specified by database.yml
505
+  (0.4ms) begin transaction
506
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 16:42:17 -0500
507
+ Processing by EnvController#show as */*
508
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
509
+ Rendered text template (0.0ms)
510
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
511
+  (0.1ms) rollback transaction
512
+  (0.1ms) begin transaction
513
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 16:42:17 -0500
514
+ Processing by EnvController#show as */*
515
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
516
+ Rendered text template (0.0ms)
517
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
518
+  (0.1ms) rollback transaction
519
+ Connecting to database specified by database.yml
520
+  (0.4ms) begin transaction
521
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 16:42:33 -0500
522
+ Processing by EnvController#show as */*
523
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
524
+ Rendered text template (0.0ms)
525
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
526
+  (0.1ms) rollback transaction
527
+  (0.1ms) begin transaction
528
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 16:42:33 -0500
529
+ Processing by EnvController#show as */*
530
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
531
+ Rendered text template (0.0ms)
532
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
533
+  (0.1ms) rollback transaction
534
+ Connecting to database specified by database.yml
535
+  (0.4ms) begin transaction
536
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 16:44:25 -0500
537
+ Processing by EnvController#show as */*
538
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
539
+ Rendered text template (0.0ms)
540
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
541
+  (0.1ms) rollback transaction
542
+  (0.0ms) begin transaction
543
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 16:44:25 -0500
544
+ Processing by EnvController#show as */*
545
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
546
+ Rendered text template (0.0ms)
547
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
548
+  (0.1ms) rollback transaction
549
+ Connecting to database specified by database.yml
550
+  (0.4ms) begin transaction
551
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 16:46:40 -0500
552
+ Processing by EnvController#show as */*
553
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
554
+ Rendered text template (0.0ms)
555
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
556
+  (0.1ms) rollback transaction
557
+  (0.1ms) begin transaction
558
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 16:46:40 -0500
559
+ Processing by EnvController#show as */*
560
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
561
+ Rendered text template (0.0ms)
562
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
563
+  (0.1ms) rollback transaction
564
+ Connecting to database specified by database.yml
565
+  (0.4ms) begin transaction
566
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 16:47:04 -0500
567
+ Processing by EnvController#show as */*
568
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
569
+ Rendered text template (0.0ms)
570
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
571
+  (0.1ms) rollback transaction
572
+  (0.1ms) begin transaction
573
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 16:47:04 -0500
574
+ Processing by EnvController#show as */*
575
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
576
+ Rendered text template (0.0ms)
577
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
578
+  (0.1ms) rollback transaction
579
+ Connecting to database specified by database.yml
580
+  (0.4ms) begin transaction
581
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 16:48:43 -0500
582
+ Processing by EnvController#show as */*
583
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
584
+ Rendered text template (0.0ms)
585
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
586
+  (0.1ms) rollback transaction
587
+  (0.1ms) begin transaction
588
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 16:48:44 -0500
589
+ Processing by EnvController#show as */*
590
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
591
+ Rendered text template (0.0ms)
592
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
593
+  (0.1ms) rollback transaction
594
+ Connecting to database specified by database.yml
595
+  (0.4ms) begin transaction
596
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 16:50:39 -0500
597
+ Processing by EnvController#show as */*
598
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
599
+ Rendered text template (0.0ms)
600
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
601
+  (0.1ms) rollback transaction
602
+  (0.1ms) begin transaction
603
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 16:50:39 -0500
604
+ Processing by EnvController#show as */*
605
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
606
+ Rendered text template (0.0ms)
607
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
608
+  (0.1ms) rollback transaction
609
+ Connecting to database specified by database.yml
610
+  (0.5ms) begin transaction
611
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 16:56:32 -0500
612
+ Processing by EnvController#show as */*
613
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
614
+ Rendered text template (0.0ms)
615
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
616
+  (0.1ms) rollback transaction
617
+  (0.1ms) begin transaction
618
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 16:56:33 -0500
619
+ Processing by EnvController#show as */*
620
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
621
+ Rendered text template (0.0ms)
622
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
623
+  (0.1ms) rollback transaction
624
+ Connecting to database specified by database.yml
625
+  (0.4ms) begin transaction
626
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 16:56:41 -0500
627
+ Processing by EnvController#show as */*
628
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
629
+ Rendered text template (0.0ms)
630
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
631
+  (0.1ms) rollback transaction
632
+  (0.1ms) begin transaction
633
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 16:56:41 -0500
634
+ Processing by EnvController#show as */*
635
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
636
+ Rendered text template (0.0ms)
637
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
638
+  (0.1ms) rollback transaction
639
+ Connecting to database specified by database.yml
640
+  (0.4ms) begin transaction
641
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 16:58:02 -0500
642
+ Processing by EnvController#show as */*
643
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
644
+ Rendered text template (0.0ms)
645
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
646
+  (0.1ms) rollback transaction
647
+  (0.1ms) begin transaction
648
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 16:58:02 -0500
649
+ Processing by EnvController#show as */*
650
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
651
+ Rendered text template (0.0ms)
652
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
653
+  (0.1ms) rollback transaction
654
+ Connecting to database specified by database.yml
655
+  (0.4ms) begin transaction
656
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 17:02:44 -0500
657
+ Processing by EnvController#show as */*
658
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
659
+ Rendered text template (0.0ms)
660
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
661
+  (0.1ms) rollback transaction
662
+  (0.1ms) begin transaction
663
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 17:02:45 -0500
664
+ Processing by EnvController#show as */*
665
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
666
+ Rendered text template (0.0ms)
667
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
668
+  (0.1ms) rollback transaction
669
+ Connecting to database specified by database.yml
670
+  (0.4ms) begin transaction
671
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 17:03:03 -0500
672
+ Processing by EnvController#show as */*
673
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
674
+ Rendered text template (0.0ms)
675
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
676
+  (0.1ms) rollback transaction
677
+  (0.1ms) begin transaction
678
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 17:03:03 -0500
679
+ Processing by EnvController#show as */*
680
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
681
+ Rendered text template (0.0ms)
682
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
683
+  (0.1ms) rollback transaction
684
+ Connecting to database specified by database.yml
685
+  (0.4ms) begin transaction
686
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 17:04:12 -0500
687
+ Processing by EnvController#show as */*
688
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
689
+ Rendered text template (0.0ms)
690
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
691
+  (0.1ms) rollback transaction
692
+  (0.1ms) begin transaction
693
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 17:04:12 -0500
694
+ Processing by EnvController#show as */*
695
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
696
+ Rendered text template (0.0ms)
697
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
698
+  (0.1ms) rollback transaction
699
+ Connecting to database specified by database.yml
700
+  (0.4ms) begin transaction
701
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 17:04:31 -0500
702
+ Processing by EnvController#show as */*
703
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
704
+ Rendered text template (0.0ms)
705
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
706
+  (0.1ms) rollback transaction
707
+  (0.1ms) begin transaction
708
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 17:04:31 -0500
709
+ Processing by EnvController#show as */*
710
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
711
+ Rendered text template (0.0ms)
712
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
713
+  (0.1ms) rollback transaction
714
+ Connecting to database specified by database.yml
715
+  (0.4ms) begin transaction
716
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 17:05:22 -0500
717
+ Processing by EnvController#show as */*
718
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
719
+ Rendered text template (0.0ms)
720
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
721
+  (0.1ms) rollback transaction
722
+  (0.1ms) begin transaction
723
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 17:05:22 -0500
724
+ Processing by EnvController#show as */*
725
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
726
+ Rendered text template (0.0ms)
727
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
728
+  (0.1ms) rollback transaction
729
+ Connecting to database specified by database.yml
730
+  (0.6ms) begin transaction
731
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 17:05:49 -0500
732
+ Processing by EnvController#show as */*
733
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
734
+ Rendered text template (0.0ms)
735
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
736
+  (0.1ms) rollback transaction
737
+  (0.1ms) begin transaction
738
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 17:05:49 -0500
739
+ Processing by EnvController#show as */*
740
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
741
+ Rendered text template (0.0ms)
742
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
743
+  (0.1ms) rollback transaction
744
+ Connecting to database specified by database.yml
745
+  (0.4ms) begin transaction
746
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 17:06:05 -0500
747
+ Processing by EnvController#show as */*
748
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
749
+ Rendered text template (0.0ms)
750
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
751
+  (0.1ms) rollback transaction
752
+  (0.1ms) begin transaction
753
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 17:06:05 -0500
754
+ Processing by EnvController#show as */*
755
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
756
+ Rendered text template (0.0ms)
757
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
758
+  (0.1ms) rollback transaction
759
+ Connecting to database specified by database.yml
760
+  (0.4ms) begin transaction
761
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 17:08:15 -0500
762
+ Processing by EnvController#show as */*
763
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
764
+ Rendered text template (0.0ms)
765
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
766
+  (0.1ms) rollback transaction
767
+  (0.0ms) begin transaction
768
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 17:08:15 -0500
769
+ Processing by EnvController#show as */*
770
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
771
+ Rendered text template (0.0ms)
772
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
773
+  (0.1ms) rollback transaction
774
+ Connecting to database specified by database.yml
775
+  (0.4ms) begin transaction
776
+  (0.1ms) rollback transaction
777
+  (0.0ms) begin transaction
778
+  (0.1ms) rollback transaction
779
+ Connecting to database specified by database.yml
780
+  (0.4ms) begin transaction
781
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 17:10:42 -0500
782
+ Processing by EnvController#show as */*
783
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
784
+ Rendered text template (0.0ms)
785
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
786
+  (0.1ms) rollback transaction
787
+  (0.1ms) begin transaction
788
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 17:10:42 -0500
789
+ Processing by EnvController#show as */*
790
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
791
+ Rendered text template (0.0ms)
792
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
793
+  (0.1ms) rollback transaction
794
+ Connecting to database specified by database.yml
795
+  (0.4ms) begin transaction
796
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 17:12:21 -0500
797
+ Processing by EnvController#show as */*
798
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
799
+ Rendered text template (0.0ms)
800
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
801
+  (0.1ms) rollback transaction
802
+  (0.0ms) begin transaction
803
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 17:12:21 -0500
804
+ Processing by EnvController#show as */*
805
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
806
+ Rendered text template (0.0ms)
807
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
808
+  (0.1ms) rollback transaction
809
+ Connecting to database specified by database.yml
810
+  (0.4ms) begin transaction
811
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 17:22:34 -0500
812
+ Processing by EnvController#show as */*
813
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
814
+ Rendered text template (0.0ms)
815
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
816
+  (0.1ms) rollback transaction
817
+  (0.1ms) begin transaction
818
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 17:22:34 -0500
819
+ Processing by EnvController#show as */*
820
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
821
+ Rendered text template (0.0ms)
822
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
823
+  (0.1ms) rollback transaction
824
+ Connecting to database specified by database.yml
825
+  (0.4ms) begin transaction
826
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 17:22:46 -0500
827
+ Processing by EnvController#show as */*
828
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
829
+ Rendered text template (0.0ms)
830
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
831
+  (0.1ms) rollback transaction
832
+  (0.1ms) begin transaction
833
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 17:22:46 -0500
834
+ Processing by EnvController#show as */*
835
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
836
+ Rendered text template (0.0ms)
837
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
838
+  (0.1ms) rollback transaction
839
+ Connecting to database specified by database.yml
840
+  (0.5ms) begin transaction
841
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 17:22:57 -0500
842
+ Processing by EnvController#show as */*
843
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
844
+ Rendered text template (0.0ms)
845
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
846
+  (0.1ms) rollback transaction
847
+  (0.1ms) begin transaction
848
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 17:22:57 -0500
849
+ Processing by EnvController#show as */*
850
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
851
+ Rendered text template (0.0ms)
852
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
853
+  (0.1ms) rollback transaction
854
+ Connecting to database specified by database.yml
855
+  (0.6ms) begin transaction
856
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 17:23:39 -0500
857
+ Processing by EnvController#show as */*
858
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
859
+ Rendered text template (0.0ms)
860
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
861
+  (0.1ms) rollback transaction
862
+  (0.1ms) begin transaction
863
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 17:23:39 -0500
864
+ Processing by EnvController#show as */*
865
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
866
+ Rendered text template (0.0ms)
867
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
868
+  (0.1ms) rollback transaction
869
+ Connecting to database specified by database.yml
870
+  (0.4ms) begin transaction
871
+ Started GET "/env/HTTP_X_MIDDLEWARE_START" for 127.0.0.1 at 2013-02-17 17:30:28 -0500
872
+ Processing by EnvController#show as */*
873
+ Parameters: {"var"=>"HTTP_X_MIDDLEWARE_START"}
874
+ Rendered text template (0.0ms)
875
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
876
+  (0.1ms) rollback transaction
877
+  (0.1ms) begin transaction
878
+ Started GET "/env/HTTP_X_QUEUE_TIME" for 127.0.0.1 at 2013-02-17 17:30:28 -0500
879
+ Processing by EnvController#show as */*
880
+ Parameters: {"var"=>"HTTP_X_QUEUE_TIME"}
881
+ Rendered text template (0.0ms)
882
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
883
+  (0.1ms) rollback transaction