meerstats_rails 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +52 -0
  4. data/Rakefile +32 -0
  5. data/app/controllers/meerstats/api/health_check_controller.rb +7 -0
  6. data/app/controllers/meerstats/api/metrics_controller.rb +7 -0
  7. data/app/controllers/meerstats/api/statistics_controller.rb +7 -0
  8. data/app/controllers/meerstats/api_controller.rb +12 -0
  9. data/bin/meerstats +5 -0
  10. data/config/routes.rb +7 -0
  11. data/lib/meerstats/configuration.rb +5 -0
  12. data/lib/meerstats/engine.rb +18 -0
  13. data/lib/meerstats/installer.rb +24 -0
  14. data/lib/meerstats/lazy_metric.rb +27 -0
  15. data/lib/meerstats/runner.rb +12 -0
  16. data/lib/meerstats/version.rb +3 -0
  17. data/lib/meerstats.rb +45 -0
  18. data/spec/configuration_spec.rb +26 -0
  19. data/spec/dummy/Rakefile +6 -0
  20. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  21. data/spec/dummy/app/assets/javascripts/cable.js +13 -0
  22. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  23. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  24. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  25. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  26. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  27. data/spec/dummy/app/jobs/application_job.rb +2 -0
  28. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  29. data/spec/dummy/app/models/application_record.rb +3 -0
  30. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  31. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  32. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  33. data/spec/dummy/bin/bundle +3 -0
  34. data/spec/dummy/bin/rails +3 -0
  35. data/spec/dummy/bin/rake +4 -0
  36. data/spec/dummy/bin/setup +38 -0
  37. data/spec/dummy/bin/update +29 -0
  38. data/spec/dummy/bin/yarn +11 -0
  39. data/spec/dummy/config/application.rb +18 -0
  40. data/spec/dummy/config/boot.rb +5 -0
  41. data/spec/dummy/config/cable.yml +10 -0
  42. data/spec/dummy/config/database.yml +25 -0
  43. data/spec/dummy/config/environment.rb +5 -0
  44. data/spec/dummy/config/environments/development.rb +54 -0
  45. data/spec/dummy/config/environments/production.rb +91 -0
  46. data/spec/dummy/config/environments/test.rb +42 -0
  47. data/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
  48. data/spec/dummy/config/initializers/assets.rb +14 -0
  49. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  50. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  51. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  52. data/spec/dummy/config/initializers/inflections.rb +16 -0
  53. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  54. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  55. data/spec/dummy/config/locales/en.yml +33 -0
  56. data/spec/dummy/config/puma.rb +56 -0
  57. data/spec/dummy/config/routes.rb +2 -0
  58. data/spec/dummy/config/secrets.yml +32 -0
  59. data/spec/dummy/config/spring.rb +6 -0
  60. data/spec/dummy/config.ru +5 -0
  61. data/spec/dummy/db/development.sqlite3 +0 -0
  62. data/spec/dummy/db/schema.rb +15 -0
  63. data/spec/dummy/db/test.sqlite3 +0 -0
  64. data/spec/dummy/log/development.log +8 -0
  65. data/spec/dummy/log/test.log +2483 -0
  66. data/spec/dummy/package.json +5 -0
  67. data/spec/dummy/public/404.html +67 -0
  68. data/spec/dummy/public/422.html +67 -0
  69. data/spec/dummy/public/500.html +66 -0
  70. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  71. data/spec/dummy/public/apple-touch-icon.png +0 -0
  72. data/spec/dummy/public/favicon.ico +0 -0
  73. data/spec/installer_spec.rb +19 -0
  74. data/spec/requests/api/health_check_spec.rb +27 -0
  75. data/spec/requests/api/metrics_spec.rb +39 -0
  76. data/spec/requests/api/statistics_spec.rb +52 -0
  77. data/spec/spec_helper.rb +23 -0
  78. data/spec/support/stub_access_token.rb +17 -0
  79. metadata +253 -0
@@ -0,0 +1,2483 @@
1
+  (0.0ms) begin transaction
2
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-26 22:53:11 -0400
3
+ Processing by SecondChute::Api::StatisticsController#show as HTML
4
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
5
+ Filter chain halted as :verify_access_token rendered or redirected
6
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
7
+  (0.1ms) rollback transaction
8
+  (0.0ms) begin transaction
9
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-26 22:53:11 -0400
10
+ Processing by SecondChute::Api::StatisticsController#show as HTML
11
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
12
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
13
+  (0.0ms) rollback transaction
14
+  (0.0ms) begin transaction
15
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-26 22:53:11 -0400
16
+ Processing by SecondChute::Api::StatisticsController#show as HTML
17
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
18
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
19
+  (0.1ms) rollback transaction
20
+  (0.1ms) begin transaction
21
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-26 22:53:11 -0400
22
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
23
+ Parameters: {"access_token"=>"1234"}
24
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
25
+  (0.1ms) rollback transaction
26
+  (0.5ms) begin transaction
27
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-26 22:53:11 -0400
28
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
29
+ Parameters: {"access_token"=>"1234"}
30
+ Filter chain halted as :verify_access_token rendered or redirected
31
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
32
+  (0.0ms) rollback transaction
33
+  (0.0ms) begin transaction
34
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-26 22:53:11 -0400
35
+ Processing by SecondChute::Api::MetricsController#index as HTML
36
+ Parameters: {"access_token"=>"1234"}
37
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
38
+  (0.1ms) rollback transaction
39
+  (0.0ms) begin transaction
40
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-26 22:53:11 -0400
41
+ Processing by SecondChute::Api::MetricsController#index as HTML
42
+ Parameters: {"access_token"=>"1234"}
43
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
44
+  (0.0ms) rollback transaction
45
+  (0.0ms) begin transaction
46
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-26 22:53:11 -0400
47
+ Processing by SecondChute::Api::MetricsController#index as HTML
48
+ Parameters: {"access_token"=>"1234"}
49
+ Filter chain halted as :verify_access_token rendered or redirected
50
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
51
+  (0.0ms) rollback transaction
52
+  (0.0ms) begin transaction
53
+  (0.0ms) rollback transaction
54
+  (0.0ms) begin transaction
55
+  (0.0ms) rollback transaction
56
+  (0.0ms) begin transaction
57
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-27 12:38:45 -0400
58
+ Processing by SecondChute::Api::MetricsController#index as HTML
59
+ Parameters: {"access_token"=>"1234"}
60
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
61
+  (0.1ms) rollback transaction
62
+  (0.0ms) begin transaction
63
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-27 12:38:45 -0400
64
+ Processing by SecondChute::Api::MetricsController#index as HTML
65
+ Parameters: {"access_token"=>"1234"}
66
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
67
+  (0.0ms) rollback transaction
68
+  (0.0ms) begin transaction
69
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-27 12:38:45 -0400
70
+ Processing by SecondChute::Api::MetricsController#index as HTML
71
+ Parameters: {"access_token"=>"1234"}
72
+ Filter chain halted as :verify_access_token rendered or redirected
73
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
74
+  (0.0ms) rollback transaction
75
+  (0.0ms) begin transaction
76
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-27 12:38:45 -0400
77
+ Processing by SecondChute::Api::StatisticsController#show as HTML
78
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
79
+ Filter chain halted as :verify_access_token rendered or redirected
80
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
81
+  (0.1ms) rollback transaction
82
+  (0.0ms) begin transaction
83
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-27 12:38:45 -0400
84
+ Processing by SecondChute::Api::StatisticsController#show as HTML
85
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
86
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
87
+  (0.0ms) rollback transaction
88
+  (0.0ms) begin transaction
89
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-27 12:38:45 -0400
90
+ Processing by SecondChute::Api::StatisticsController#show as HTML
91
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
92
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
93
+  (0.0ms) rollback transaction
94
+  (0.0ms) begin transaction
95
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-27 12:38:45 -0400
96
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
97
+ Parameters: {"access_token"=>"1234"}
98
+ Filter chain halted as :verify_access_token rendered or redirected
99
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
100
+  (0.1ms) rollback transaction
101
+  (0.0ms) begin transaction
102
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-27 12:38:45 -0400
103
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
104
+ Parameters: {"access_token"=>"1234"}
105
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
106
+  (0.0ms) rollback transaction
107
+  (0.0ms) begin transaction
108
+  (0.0ms) rollback transaction
109
+  (0.0ms) begin transaction
110
+  (0.0ms) rollback transaction
111
+  (0.0ms) begin transaction
112
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:12:58 -0400
113
+ Processing by SecondChute::Api::MetricsController#index as HTML
114
+ Parameters: {"access_token"=>"1234"}
115
+ Filter chain halted as :verify_access_token rendered or redirected
116
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
117
+  (0.1ms) rollback transaction
118
+  (0.1ms) begin transaction
119
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:12:58 -0400
120
+ Processing by SecondChute::Api::MetricsController#index as HTML
121
+ Parameters: {"access_token"=>"1234"}
122
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
123
+  (0.1ms) rollback transaction
124
+  (0.0ms) begin transaction
125
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:12:58 -0400
126
+ Processing by SecondChute::Api::MetricsController#index as HTML
127
+ Parameters: {"access_token"=>"1234"}
128
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
129
+  (0.1ms) rollback transaction
130
+  (0.1ms) begin transaction
131
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:12:58 -0400
132
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
133
+ Parameters: {"access_token"=>"1234"}
134
+ Filter chain halted as :verify_access_token rendered or redirected
135
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
136
+  (0.0ms) rollback transaction
137
+  (0.0ms) begin transaction
138
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:12:58 -0400
139
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
140
+ Parameters: {"access_token"=>"1234"}
141
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
142
+  (0.0ms) rollback transaction
143
+  (0.0ms) begin transaction
144
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:12:58 -0400
145
+ Processing by SecondChute::Api::StatisticsController#show as HTML
146
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
147
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
148
+  (0.0ms) rollback transaction
149
+  (0.0ms) begin transaction
150
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:12:58 -0400
151
+ Processing by SecondChute::Api::StatisticsController#show as HTML
152
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
153
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
154
+  (0.0ms) rollback transaction
155
+  (0.0ms) begin transaction
156
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:12:58 -0400
157
+ Processing by SecondChute::Api::StatisticsController#show as HTML
158
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
159
+ Filter chain halted as :verify_access_token rendered or redirected
160
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
161
+  (0.1ms) rollback transaction
162
+  (0.1ms) begin transaction
163
+  (0.1ms) rollback transaction
164
+  (0.0ms) begin transaction
165
+  (0.0ms) rollback transaction
166
+  (0.0ms) begin transaction
167
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:25:14 -0400
168
+ Processing by SecondChute::Api::StatisticsController#show as HTML
169
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
170
+ Filter chain halted as :verify_access_token rendered or redirected
171
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
172
+  (0.1ms) rollback transaction
173
+  (0.0ms) begin transaction
174
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:25:14 -0400
175
+ Processing by SecondChute::Api::StatisticsController#show as HTML
176
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
177
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
178
+  (0.0ms) rollback transaction
179
+  (0.0ms) begin transaction
180
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:25:14 -0400
181
+ Processing by SecondChute::Api::StatisticsController#show as HTML
182
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
183
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
184
+  (0.0ms) rollback transaction
185
+  (0.0ms) begin transaction
186
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:25:14 -0400
187
+ Processing by SecondChute::Api::MetricsController#index as HTML
188
+ Parameters: {"access_token"=>"1234"}
189
+ Filter chain halted as :verify_access_token rendered or redirected
190
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
191
+  (0.1ms) rollback transaction
192
+  (0.0ms) begin transaction
193
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:25:14 -0400
194
+ Processing by SecondChute::Api::MetricsController#index as HTML
195
+ Parameters: {"access_token"=>"1234"}
196
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
197
+  (0.1ms) rollback transaction
198
+  (0.0ms) begin transaction
199
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:25:14 -0400
200
+ Processing by SecondChute::Api::MetricsController#index as HTML
201
+ Parameters: {"access_token"=>"1234"}
202
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
203
+  (0.0ms) rollback transaction
204
+  (0.0ms) begin transaction
205
+  (0.0ms) rollback transaction
206
+  (0.0ms) begin transaction
207
+  (0.0ms) rollback transaction
208
+  (0.0ms) begin transaction
209
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:25:14 -0400
210
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
211
+ Parameters: {"access_token"=>"1234"}
212
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
213
+  (0.0ms) rollback transaction
214
+  (0.0ms) begin transaction
215
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:25:14 -0400
216
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
217
+ Parameters: {"access_token"=>"1234"}
218
+ Filter chain halted as :verify_access_token rendered or redirected
219
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
220
+  (0.0ms) rollback transaction
221
+  (0.0ms) begin transaction
222
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:38:40 -0400
223
+ Processing by SecondChute::Api::MetricsController#index as HTML
224
+ Parameters: {"access_token"=>"1234"}
225
+ Filter chain halted as :verify_access_token rendered or redirected
226
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
227
+  (0.1ms) rollback transaction
228
+  (0.0ms) begin transaction
229
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:38:40 -0400
230
+ Processing by SecondChute::Api::MetricsController#index as HTML
231
+ Parameters: {"access_token"=>"1234"}
232
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
233
+  (0.0ms) rollback transaction
234
+  (0.0ms) begin transaction
235
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:38:40 -0400
236
+ Processing by SecondChute::Api::MetricsController#index as HTML
237
+ Parameters: {"access_token"=>"1234"}
238
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
239
+  (0.0ms) rollback transaction
240
+  (0.0ms) begin transaction
241
+  (0.0ms) rollback transaction
242
+  (0.0ms) begin transaction
243
+  (0.0ms) rollback transaction
244
+  (0.0ms) begin transaction
245
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:38:40 -0400
246
+ Processing by SecondChute::Api::StatisticsController#show as HTML
247
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
248
+ Filter chain halted as :verify_access_token rendered or redirected
249
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
250
+  (0.0ms) rollback transaction
251
+  (0.0ms) begin transaction
252
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:38:40 -0400
253
+ Processing by SecondChute::Api::StatisticsController#show as HTML
254
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
255
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
256
+  (0.0ms) rollback transaction
257
+  (0.0ms) begin transaction
258
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:38:40 -0400
259
+ Processing by SecondChute::Api::StatisticsController#show as HTML
260
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
261
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
262
+  (0.1ms) rollback transaction
263
+  (0.1ms) begin transaction
264
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:38:40 -0400
265
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
266
+ Parameters: {"access_token"=>"1234"}
267
+ Filter chain halted as :verify_access_token rendered or redirected
268
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
269
+  (0.0ms) rollback transaction
270
+  (0.0ms) begin transaction
271
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:38:40 -0400
272
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
273
+ Parameters: {"access_token"=>"1234"}
274
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
275
+  (0.1ms) rollback transaction
276
+  (0.0ms) begin transaction
277
+  (0.0ms) rollback transaction
278
+  (0.0ms) begin transaction
279
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:40:06 -0400
280
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
281
+ Parameters: {"access_token"=>"1234"}
282
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
283
+  (0.1ms) rollback transaction
284
+  (0.0ms) begin transaction
285
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:40:06 -0400
286
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
287
+ Parameters: {"access_token"=>"1234"}
288
+ Filter chain halted as :verify_access_token rendered or redirected
289
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
290
+  (0.0ms) rollback transaction
291
+  (0.0ms) begin transaction
292
+  (0.0ms) rollback transaction
293
+  (0.0ms) begin transaction
294
+  (0.0ms) rollback transaction
295
+  (0.0ms) begin transaction
296
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:40:06 -0400
297
+ Processing by SecondChute::Api::MetricsController#index as HTML
298
+ Parameters: {"access_token"=>"1234"}
299
+ Filter chain halted as :verify_access_token rendered or redirected
300
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
301
+  (0.0ms) rollback transaction
302
+  (0.0ms) begin transaction
303
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:40:06 -0400
304
+ Processing by SecondChute::Api::MetricsController#index as HTML
305
+ Parameters: {"access_token"=>"1234"}
306
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
307
+  (0.0ms) rollback transaction
308
+  (0.0ms) begin transaction
309
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:40:06 -0400
310
+ Processing by SecondChute::Api::MetricsController#index as HTML
311
+ Parameters: {"access_token"=>"1234"}
312
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
313
+  (0.0ms) rollback transaction
314
+  (0.0ms) begin transaction
315
+  (0.0ms) rollback transaction
316
+  (0.0ms) begin transaction
317
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:40:06 -0400
318
+ Processing by SecondChute::Api::StatisticsController#show as HTML
319
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
320
+ Filter chain halted as :verify_access_token rendered or redirected
321
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
322
+  (0.0ms) rollback transaction
323
+  (0.1ms) begin transaction
324
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:40:06 -0400
325
+ Processing by SecondChute::Api::StatisticsController#show as HTML
326
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
327
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
328
+  (0.0ms) rollback transaction
329
+  (0.0ms) begin transaction
330
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:40:06 -0400
331
+ Processing by SecondChute::Api::StatisticsController#show as HTML
332
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
333
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
334
+  (0.0ms) rollback transaction
335
+  (0.0ms) begin transaction
336
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:40:11 -0400
337
+ Processing by SecondChute::Api::MetricsController#index as HTML
338
+ Parameters: {"access_token"=>"1234"}
339
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
340
+  (0.1ms) rollback transaction
341
+  (0.1ms) begin transaction
342
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:40:11 -0400
343
+ Processing by SecondChute::Api::MetricsController#index as HTML
344
+ Parameters: {"access_token"=>"1234"}
345
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
346
+  (0.1ms) rollback transaction
347
+  (0.0ms) begin transaction
348
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:40:11 -0400
349
+ Processing by SecondChute::Api::MetricsController#index as HTML
350
+ Parameters: {"access_token"=>"1234"}
351
+ Filter chain halted as :verify_access_token rendered or redirected
352
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
353
+  (0.0ms) rollback transaction
354
+  (0.0ms) begin transaction
355
+  (0.1ms) rollback transaction
356
+  (0.0ms) begin transaction
357
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:40:11 -0400
358
+ Processing by SecondChute::Api::StatisticsController#show as HTML
359
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
360
+ Filter chain halted as :verify_access_token rendered or redirected
361
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
362
+  (0.0ms) rollback transaction
363
+  (0.1ms) begin transaction
364
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:40:11 -0400
365
+ Processing by SecondChute::Api::StatisticsController#show as HTML
366
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
367
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
368
+  (0.0ms) rollback transaction
369
+  (0.1ms) begin transaction
370
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:40:11 -0400
371
+ Processing by SecondChute::Api::StatisticsController#show as HTML
372
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
373
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
374
+  (0.0ms) rollback transaction
375
+  (0.0ms) begin transaction
376
+  (0.0ms) rollback transaction
377
+  (0.1ms) begin transaction
378
+  (0.0ms) rollback transaction
379
+  (0.0ms) begin transaction
380
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:40:11 -0400
381
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
382
+ Parameters: {"access_token"=>"1234"}
383
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
384
+  (0.0ms) rollback transaction
385
+  (0.0ms) begin transaction
386
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:40:11 -0400
387
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
388
+ Parameters: {"access_token"=>"1234"}
389
+ Filter chain halted as :verify_access_token rendered or redirected
390
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
391
+  (0.0ms) rollback transaction
392
+  (0.0ms) begin transaction
393
+  (0.0ms) rollback transaction
394
+  (0.0ms) begin transaction
395
+  (0.0ms) rollback transaction
396
+  (0.0ms) begin transaction
397
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:21 -0400
398
+ Processing by SecondChute::Api::StatisticsController#show as HTML
399
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
400
+ Filter chain halted as :verify_access_token rendered or redirected
401
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
402
+  (0.1ms) rollback transaction
403
+  (0.0ms) begin transaction
404
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:21 -0400
405
+ Processing by SecondChute::Api::StatisticsController#show as HTML
406
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
407
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
408
+  (0.0ms) rollback transaction
409
+  (0.0ms) begin transaction
410
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:21 -0400
411
+ Processing by SecondChute::Api::StatisticsController#show as HTML
412
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
413
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
414
+  (0.0ms) rollback transaction
415
+  (0.0ms) begin transaction
416
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:21 -0400
417
+ Processing by SecondChute::Api::MetricsController#index as HTML
418
+ Parameters: {"access_token"=>"1234"}
419
+ Filter chain halted as :verify_access_token rendered or redirected
420
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
421
+  (0.0ms) rollback transaction
422
+  (0.0ms) begin transaction
423
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:21 -0400
424
+ Processing by SecondChute::Api::MetricsController#index as HTML
425
+ Parameters: {"access_token"=>"1234"}
426
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
427
+  (0.0ms) rollback transaction
428
+  (0.0ms) begin transaction
429
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:21 -0400
430
+ Processing by SecondChute::Api::MetricsController#index as HTML
431
+ Parameters: {"access_token"=>"1234"}
432
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
433
+  (0.0ms) rollback transaction
434
+  (0.0ms) begin transaction
435
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:21 -0400
436
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
437
+ Parameters: {"access_token"=>"1234"}
438
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
439
+  (0.0ms) rollback transaction
440
+  (0.0ms) begin transaction
441
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:21 -0400
442
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
443
+ Parameters: {"access_token"=>"1234"}
444
+ Filter chain halted as :verify_access_token rendered or redirected
445
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
446
+  (0.0ms) rollback transaction
447
+  (0.0ms) begin transaction
448
+  (0.1ms) rollback transaction
449
+  (0.1ms) begin transaction
450
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:27 -0400
451
+ Processing by SecondChute::Api::StatisticsController#show as HTML
452
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
453
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
454
+  (0.1ms) rollback transaction
455
+  (0.0ms) begin transaction
456
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:27 -0400
457
+ Processing by SecondChute::Api::StatisticsController#show as HTML
458
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
459
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
460
+  (0.0ms) rollback transaction
461
+  (0.0ms) begin transaction
462
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:27 -0400
463
+ Processing by SecondChute::Api::StatisticsController#show as HTML
464
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
465
+ Filter chain halted as :verify_access_token rendered or redirected
466
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
467
+  (0.0ms) rollback transaction
468
+  (0.0ms) begin transaction
469
+  (0.0ms) rollback transaction
470
+  (0.0ms) begin transaction
471
+  (0.0ms) rollback transaction
472
+  (0.0ms) begin transaction
473
+  (0.0ms) rollback transaction
474
+  (0.0ms) begin transaction
475
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:27 -0400
476
+ Processing by SecondChute::Api::MetricsController#index as HTML
477
+ Parameters: {"access_token"=>"1234"}
478
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
479
+  (0.0ms) rollback transaction
480
+  (0.0ms) begin transaction
481
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:27 -0400
482
+ Processing by SecondChute::Api::MetricsController#index as HTML
483
+ Parameters: {"access_token"=>"1234"}
484
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
485
+  (0.0ms) rollback transaction
486
+  (0.0ms) begin transaction
487
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:27 -0400
488
+ Processing by SecondChute::Api::MetricsController#index as HTML
489
+ Parameters: {"access_token"=>"1234"}
490
+ Filter chain halted as :verify_access_token rendered or redirected
491
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
492
+  (0.1ms) rollback transaction
493
+  (0.0ms) begin transaction
494
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:27 -0400
495
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
496
+ Parameters: {"access_token"=>"1234"}
497
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
498
+  (0.0ms) rollback transaction
499
+  (0.0ms) begin transaction
500
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:27 -0400
501
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
502
+ Parameters: {"access_token"=>"1234"}
503
+ Filter chain halted as :verify_access_token rendered or redirected
504
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
505
+  (0.0ms) rollback transaction
506
+  (0.1ms) begin transaction
507
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:48 -0400
508
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
509
+ Parameters: {"access_token"=>"1234"}
510
+ Filter chain halted as :verify_access_token rendered or redirected
511
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
512
+  (0.1ms) rollback transaction
513
+  (0.0ms) begin transaction
514
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:48 -0400
515
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
516
+ Parameters: {"access_token"=>"1234"}
517
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
518
+  (0.0ms) rollback transaction
519
+  (0.0ms) begin transaction
520
+  (0.0ms) rollback transaction
521
+  (0.0ms) begin transaction
522
+  (0.0ms) rollback transaction
523
+  (0.0ms) begin transaction
524
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:48 -0400
525
+ Processing by SecondChute::Api::StatisticsController#show as HTML
526
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
527
+ Filter chain halted as :verify_access_token rendered or redirected
528
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
529
+  (0.1ms) rollback transaction
530
+  (0.0ms) begin transaction
531
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:48 -0400
532
+ Processing by SecondChute::Api::StatisticsController#show as HTML
533
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
534
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
535
+  (0.0ms) rollback transaction
536
+  (0.0ms) begin transaction
537
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:48 -0400
538
+ Processing by SecondChute::Api::StatisticsController#show as HTML
539
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
540
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
541
+  (0.0ms) rollback transaction
542
+  (0.0ms) begin transaction
543
+  (0.1ms) rollback transaction
544
+  (0.0ms) begin transaction
545
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:48 -0400
546
+ Processing by SecondChute::Api::MetricsController#index as HTML
547
+ Parameters: {"access_token"=>"1234"}
548
+ Filter chain halted as :verify_access_token rendered or redirected
549
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
550
+  (0.0ms) rollback transaction
551
+  (0.1ms) begin transaction
552
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:48 -0400
553
+ Processing by SecondChute::Api::MetricsController#index as HTML
554
+ Parameters: {"access_token"=>"1234"}
555
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
556
+  (0.0ms) rollback transaction
557
+  (0.0ms) begin transaction
558
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:48 -0400
559
+ Processing by SecondChute::Api::MetricsController#index as HTML
560
+ Parameters: {"access_token"=>"1234"}
561
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
562
+  (0.2ms) rollback transaction
563
+  (0.0ms) begin transaction
564
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:51 -0400
565
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
566
+ Parameters: {"access_token"=>"1234"}
567
+ Filter chain halted as :verify_access_token rendered or redirected
568
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
569
+  (0.1ms) rollback transaction
570
+  (0.0ms) begin transaction
571
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:51 -0400
572
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
573
+ Parameters: {"access_token"=>"1234"}
574
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
575
+  (0.0ms) rollback transaction
576
+  (0.0ms) begin transaction
577
+  (0.1ms) rollback transaction
578
+  (0.0ms) begin transaction
579
+  (0.0ms) rollback transaction
580
+  (0.0ms) begin transaction
581
+  (0.0ms) rollback transaction
582
+  (0.0ms) begin transaction
583
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:51 -0400
584
+ Processing by SecondChute::Api::MetricsController#index as HTML
585
+ Parameters: {"access_token"=>"1234"}
586
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
587
+  (0.0ms) rollback transaction
588
+  (0.0ms) begin transaction
589
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:51 -0400
590
+ Processing by SecondChute::Api::MetricsController#index as HTML
591
+ Parameters: {"access_token"=>"1234"}
592
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
593
+  (0.0ms) rollback transaction
594
+  (0.0ms) begin transaction
595
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:51 -0400
596
+ Processing by SecondChute::Api::MetricsController#index as HTML
597
+ Parameters: {"access_token"=>"1234"}
598
+ Filter chain halted as :verify_access_token rendered or redirected
599
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
600
+  (0.1ms) rollback transaction
601
+  (0.0ms) begin transaction
602
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:52 -0400
603
+ Processing by SecondChute::Api::StatisticsController#show as HTML
604
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
605
+ Filter chain halted as :verify_access_token rendered or redirected
606
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
607
+  (0.0ms) rollback transaction
608
+  (0.0ms) begin transaction
609
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:52 -0400
610
+ Processing by SecondChute::Api::StatisticsController#show as HTML
611
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
612
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
613
+  (0.0ms) rollback transaction
614
+  (0.0ms) begin transaction
615
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:52 -0400
616
+ Processing by SecondChute::Api::StatisticsController#show as HTML
617
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
618
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
619
+  (0.1ms) rollback transaction
620
+  (0.0ms) begin transaction
621
+  (0.0ms) rollback transaction
622
+  (0.0ms) begin transaction
623
+  (0.0ms) rollback transaction
624
+  (0.0ms) begin transaction
625
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:55 -0400
626
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
627
+ Parameters: {"access_token"=>"1234"}
628
+ Filter chain halted as :verify_access_token rendered or redirected
629
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
630
+  (0.0ms) rollback transaction
631
+  (0.0ms) begin transaction
632
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:55 -0400
633
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
634
+ Parameters: {"access_token"=>"1234"}
635
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
636
+  (0.0ms) rollback transaction
637
+  (0.0ms) begin transaction
638
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:55 -0400
639
+ Processing by SecondChute::Api::StatisticsController#show as HTML
640
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
641
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
642
+  (0.0ms) rollback transaction
643
+  (0.1ms) begin transaction
644
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:55 -0400
645
+ Processing by SecondChute::Api::StatisticsController#show as HTML
646
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
647
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
648
+  (0.0ms) rollback transaction
649
+  (0.0ms) begin transaction
650
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:55 -0400
651
+ Processing by SecondChute::Api::StatisticsController#show as HTML
652
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
653
+ Filter chain halted as :verify_access_token rendered or redirected
654
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
655
+  (0.0ms) rollback transaction
656
+  (0.0ms) begin transaction
657
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:55 -0400
658
+ Processing by SecondChute::Api::MetricsController#index as HTML
659
+ Parameters: {"access_token"=>"1234"}
660
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
661
+  (0.0ms) rollback transaction
662
+  (0.1ms) begin transaction
663
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:55 -0400
664
+ Processing by SecondChute::Api::MetricsController#index as HTML
665
+ Parameters: {"access_token"=>"1234"}
666
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
667
+  (0.0ms) rollback transaction
668
+  (0.0ms) begin transaction
669
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:42:55 -0400
670
+ Processing by SecondChute::Api::MetricsController#index as HTML
671
+ Parameters: {"access_token"=>"1234"}
672
+ Filter chain halted as :verify_access_token rendered or redirected
673
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
674
+  (0.0ms) rollback transaction
675
+  (0.0ms) begin transaction
676
+  (0.1ms) rollback transaction
677
+  (0.0ms) begin transaction
678
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:48:22 -0400
679
+ Processing by SecondChute::Api::MetricsController#index as HTML
680
+ Parameters: {"access_token"=>"1234"}
681
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
682
+  (0.1ms) rollback transaction
683
+  (0.0ms) begin transaction
684
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:48:22 -0400
685
+ Processing by SecondChute::Api::MetricsController#index as HTML
686
+ Parameters: {"access_token"=>"1234"}
687
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
688
+  (0.0ms) rollback transaction
689
+  (0.0ms) begin transaction
690
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:48:22 -0400
691
+ Processing by SecondChute::Api::MetricsController#index as HTML
692
+ Parameters: {"access_token"=>"1234"}
693
+ Filter chain halted as :verify_access_token rendered or redirected
694
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
695
+  (0.0ms) rollback transaction
696
+  (0.0ms) begin transaction
697
+  (0.0ms) rollback transaction
698
+  (0.0ms) begin transaction
699
+  (0.0ms) rollback transaction
700
+  (0.0ms) begin transaction
701
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:48:22 -0400
702
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
703
+ Parameters: {"access_token"=>"1234"}
704
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
705
+  (0.0ms) rollback transaction
706
+  (0.1ms) begin transaction
707
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:48:22 -0400
708
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
709
+ Parameters: {"access_token"=>"1234"}
710
+ Filter chain halted as :verify_access_token rendered or redirected
711
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
712
+  (0.0ms) rollback transaction
713
+  (0.0ms) begin transaction
714
+  (0.0ms) rollback transaction
715
+  (0.0ms) begin transaction
716
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:48:22 -0400
717
+ Processing by SecondChute::Api::StatisticsController#show as HTML
718
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
719
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
720
+  (0.0ms) rollback transaction
721
+  (0.0ms) begin transaction
722
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:48:22 -0400
723
+ Processing by SecondChute::Api::StatisticsController#show as HTML
724
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
725
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
726
+  (0.0ms) rollback transaction
727
+  (0.0ms) begin transaction
728
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:48:22 -0400
729
+ Processing by SecondChute::Api::StatisticsController#show as HTML
730
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
731
+ Filter chain halted as :verify_access_token rendered or redirected
732
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
733
+  (0.0ms) rollback transaction
734
+  (0.0ms) begin transaction
735
+  (0.0ms) rollback transaction
736
+  (0.0ms) begin transaction
737
+  (0.0ms) rollback transaction
738
+  (0.0ms) begin transaction
739
+  (0.1ms) rollback transaction
740
+  (0.0ms) begin transaction
741
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:49:21 -0400
742
+ Processing by SecondChute::Api::MetricsController#index as HTML
743
+ Parameters: {"access_token"=>"1234"}
744
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
745
+  (0.1ms) rollback transaction
746
+  (0.0ms) begin transaction
747
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:49:21 -0400
748
+ Processing by SecondChute::Api::MetricsController#index as HTML
749
+ Parameters: {"access_token"=>"1234"}
750
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
751
+  (0.0ms) rollback transaction
752
+  (0.0ms) begin transaction
753
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 20:49:21 -0400
754
+ Processing by SecondChute::Api::MetricsController#index as HTML
755
+ Parameters: {"access_token"=>"1234"}
756
+ Filter chain halted as :verify_access_token rendered or redirected
757
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
758
+  (0.0ms) rollback transaction
759
+  (0.0ms) begin transaction
760
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:49:21 -0400
761
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
762
+ Parameters: {"access_token"=>"1234"}
763
+ Filter chain halted as :verify_access_token rendered or redirected
764
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
765
+  (0.0ms) rollback transaction
766
+  (0.1ms) begin transaction
767
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 20:49:21 -0400
768
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
769
+ Parameters: {"access_token"=>"1234"}
770
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
771
+  (0.1ms) rollback transaction
772
+  (0.0ms) begin transaction
773
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:49:21 -0400
774
+ Processing by SecondChute::Api::StatisticsController#show as HTML
775
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
776
+ Filter chain halted as :verify_access_token rendered or redirected
777
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
778
+  (0.0ms) rollback transaction
779
+  (0.0ms) begin transaction
780
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:49:21 -0400
781
+ Processing by SecondChute::Api::StatisticsController#show as HTML
782
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
783
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
784
+  (0.0ms) rollback transaction
785
+  (0.1ms) begin transaction
786
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 20:49:21 -0400
787
+ Processing by SecondChute::Api::StatisticsController#show as HTML
788
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
789
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
790
+  (0.0ms) rollback transaction
791
+  (0.0ms) begin transaction
792
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 21:40:04 -0400
793
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
794
+ Parameters: {"access_token"=>"1234"}
795
+ Filter chain halted as :verify_access_token rendered or redirected
796
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
797
+  (0.1ms) rollback transaction
798
+  (0.0ms) begin transaction
799
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 21:40:04 -0400
800
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
801
+ Parameters: {"access_token"=>"1234"}
802
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
803
+  (0.0ms) rollback transaction
804
+  (0.0ms) begin transaction
805
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 21:40:04 -0400
806
+ Processing by SecondChute::Api::StatisticsController#show as HTML
807
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
808
+ Filter chain halted as :verify_access_token rendered or redirected
809
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
810
+  (0.1ms) rollback transaction
811
+  (0.0ms) begin transaction
812
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 21:40:04 -0400
813
+ Processing by SecondChute::Api::StatisticsController#show as HTML
814
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
815
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
816
+  (0.0ms) rollback transaction
817
+  (0.0ms) begin transaction
818
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 21:40:04 -0400
819
+ Processing by SecondChute::Api::StatisticsController#show as HTML
820
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
821
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
822
+  (0.1ms) rollback transaction
823
+  (0.0ms) begin transaction
824
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 21:40:04 -0400
825
+ Processing by SecondChute::Api::MetricsController#index as HTML
826
+ Parameters: {"access_token"=>"1234"}
827
+ Filter chain halted as :verify_access_token rendered or redirected
828
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
829
+  (0.0ms) rollback transaction
830
+  (0.1ms) begin transaction
831
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 21:40:04 -0400
832
+ Processing by SecondChute::Api::MetricsController#index as HTML
833
+ Parameters: {"access_token"=>"1234"}
834
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
835
+  (0.0ms) rollback transaction
836
+  (0.0ms) begin transaction
837
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 21:40:04 -0400
838
+ Processing by SecondChute::Api::MetricsController#index as HTML
839
+ Parameters: {"access_token"=>"1234"}
840
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
841
+  (0.0ms) rollback transaction
842
+  (0.0ms) begin transaction
843
+  (0.0ms) rollback transaction
844
+  (0.0ms) begin transaction
845
+  (0.0ms) rollback transaction
846
+  (0.0ms) begin transaction
847
+  (0.0ms) rollback transaction
848
+  (0.0ms) begin transaction
849
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 21:41:23 -0400
850
+ Processing by SecondChute::Api::MetricsController#index as HTML
851
+ Parameters: {"access_token"=>"1234"}
852
+ Filter chain halted as :verify_access_token rendered or redirected
853
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
854
+  (0.1ms) rollback transaction
855
+  (0.0ms) begin transaction
856
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 21:41:23 -0400
857
+ Processing by SecondChute::Api::MetricsController#index as HTML
858
+ Parameters: {"access_token"=>"1234"}
859
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
860
+  (0.0ms) rollback transaction
861
+  (0.0ms) begin transaction
862
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 21:41:23 -0400
863
+ Processing by SecondChute::Api::MetricsController#index as HTML
864
+ Parameters: {"access_token"=>"1234"}
865
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
866
+  (0.0ms) rollback transaction
867
+  (0.0ms) begin transaction
868
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 21:41:23 -0400
869
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
870
+ Parameters: {"access_token"=>"1234"}
871
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
872
+  (0.0ms) rollback transaction
873
+  (0.0ms) begin transaction
874
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 21:41:23 -0400
875
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
876
+ Parameters: {"access_token"=>"1234"}
877
+ Filter chain halted as :verify_access_token rendered or redirected
878
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
879
+  (0.0ms) rollback transaction
880
+  (0.0ms) begin transaction
881
+  (0.0ms) rollback transaction
882
+  (0.0ms) begin transaction
883
+  (0.0ms) rollback transaction
884
+  (0.0ms) begin transaction
885
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 21:41:23 -0400
886
+ Processing by SecondChute::Api::StatisticsController#show as HTML
887
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
888
+ Filter chain halted as :verify_access_token rendered or redirected
889
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
890
+  (0.1ms) rollback transaction
891
+  (0.1ms) begin transaction
892
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 21:41:23 -0400
893
+ Processing by SecondChute::Api::StatisticsController#show as HTML
894
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
895
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
896
+  (0.0ms) rollback transaction
897
+  (0.0ms) begin transaction
898
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 21:41:23 -0400
899
+ Processing by SecondChute::Api::StatisticsController#show as HTML
900
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
901
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
902
+  (0.0ms) rollback transaction
903
+  (0.0ms) begin transaction
904
+  (0.1ms) rollback transaction
905
+  (0.0ms) begin transaction
906
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 21:44:04 -0400
907
+ Processing by SecondChute::Api::MetricsController#index as HTML
908
+ Parameters: {"access_token"=>"1234"}
909
+ Filter chain halted as :verify_access_token rendered or redirected
910
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
911
+  (0.1ms) rollback transaction
912
+  (0.0ms) begin transaction
913
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 21:44:04 -0400
914
+ Processing by SecondChute::Api::MetricsController#index as HTML
915
+ Parameters: {"access_token"=>"1234"}
916
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
917
+  (0.0ms) rollback transaction
918
+  (0.0ms) begin transaction
919
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 21:44:04 -0400
920
+ Processing by SecondChute::Api::MetricsController#index as HTML
921
+ Parameters: {"access_token"=>"1234"}
922
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
923
+  (0.0ms) rollback transaction
924
+  (0.0ms) begin transaction
925
+  (0.0ms) rollback transaction
926
+  (0.0ms) begin transaction
927
+  (0.0ms) rollback transaction
928
+  (0.0ms) begin transaction
929
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 21:44:04 -0400
930
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
931
+ Parameters: {"access_token"=>"1234"}
932
+ Filter chain halted as :verify_access_token rendered or redirected
933
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
934
+  (0.0ms) rollback transaction
935
+  (0.0ms) begin transaction
936
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 21:44:04 -0400
937
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
938
+ Parameters: {"access_token"=>"1234"}
939
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
940
+  (0.0ms) rollback transaction
941
+  (0.0ms) begin transaction
942
+  (0.0ms) rollback transaction
943
+  (0.0ms) begin transaction
944
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 21:44:04 -0400
945
+ Processing by SecondChute::Api::StatisticsController#show as HTML
946
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
947
+ Filter chain halted as :verify_access_token rendered or redirected
948
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
949
+  (0.1ms) rollback transaction
950
+  (0.0ms) begin transaction
951
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 21:44:04 -0400
952
+ Processing by SecondChute::Api::StatisticsController#show as HTML
953
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
954
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
955
+  (0.0ms) rollback transaction
956
+  (0.0ms) begin transaction
957
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 21:44:04 -0400
958
+ Processing by SecondChute::Api::StatisticsController#show as HTML
959
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
960
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
961
+  (0.0ms) rollback transaction
962
+  (0.0ms) begin transaction
963
+  (0.1ms) rollback transaction
964
+  (0.0ms) begin transaction
965
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 21:44:54 -0400
966
+ Processing by SecondChute::Api::StatisticsController#show as HTML
967
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
968
+ Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.7ms)
969
+  (2.9ms) rollback transaction
970
+  (0.0ms) begin transaction
971
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 21:44:54 -0400
972
+ Processing by SecondChute::Api::StatisticsController#show as HTML
973
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
974
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
975
+  (0.0ms) rollback transaction
976
+  (0.0ms) begin transaction
977
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 21:44:54 -0400
978
+ Processing by SecondChute::Api::StatisticsController#show as HTML
979
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
980
+ Filter chain halted as :verify_access_token rendered or redirected
981
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
982
+  (0.0ms) rollback transaction
983
+  (0.0ms) begin transaction
984
+  (0.1ms) rollback transaction
985
+  (0.0ms) begin transaction
986
+  (0.0ms) rollback transaction
987
+  (0.0ms) begin transaction
988
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 21:44:54 -0400
989
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
990
+ Parameters: {"access_token"=>"1234"}
991
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
992
+  (0.1ms) rollback transaction
993
+  (0.0ms) begin transaction
994
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 21:44:54 -0400
995
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
996
+ Parameters: {"access_token"=>"1234"}
997
+ Filter chain halted as :verify_access_token rendered or redirected
998
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
999
+  (0.0ms) rollback transaction
1000
+  (0.0ms) begin transaction
1001
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 21:44:54 -0400
1002
+ Processing by SecondChute::Api::MetricsController#index as HTML
1003
+ Parameters: {"access_token"=>"1234"}
1004
+ Filter chain halted as :verify_access_token rendered or redirected
1005
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1006
+  (0.0ms) rollback transaction
1007
+  (0.0ms) begin transaction
1008
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 21:44:54 -0400
1009
+ Processing by SecondChute::Api::MetricsController#index as HTML
1010
+ Parameters: {"access_token"=>"1234"}
1011
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1012
+  (0.0ms) rollback transaction
1013
+  (0.0ms) begin transaction
1014
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 21:44:54 -0400
1015
+ Processing by SecondChute::Api::MetricsController#index as HTML
1016
+ Parameters: {"access_token"=>"1234"}
1017
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1018
+  (0.0ms) rollback transaction
1019
+  (0.0ms) begin transaction
1020
+  (0.1ms) rollback transaction
1021
+  (0.0ms) begin transaction
1022
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 21:55:20 -0400
1023
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1024
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1025
+ Filter chain halted as :verify_access_token rendered or redirected
1026
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1027
+  (0.0ms) rollback transaction
1028
+  (0.1ms) begin transaction
1029
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 21:55:20 -0400
1030
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1031
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1032
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1033
+  (0.0ms) rollback transaction
1034
+  (0.0ms) begin transaction
1035
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-10-30 21:55:20 -0400
1036
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1037
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1038
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1039
+  (0.0ms) rollback transaction
1040
+  (0.0ms) begin transaction
1041
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 21:55:20 -0400
1042
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
1043
+ Parameters: {"access_token"=>"1234"}
1044
+ Filter chain halted as :verify_access_token rendered or redirected
1045
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1046
+  (0.0ms) rollback transaction
1047
+  (0.0ms) begin transaction
1048
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-10-30 21:55:20 -0400
1049
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
1050
+ Parameters: {"access_token"=>"1234"}
1051
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1052
+  (0.0ms) rollback transaction
1053
+  (0.0ms) begin transaction
1054
+  (0.0ms) rollback transaction
1055
+  (0.0ms) begin transaction
1056
+  (0.0ms) rollback transaction
1057
+  (0.0ms) begin transaction
1058
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 21:55:20 -0400
1059
+ Processing by SecondChute::Api::MetricsController#index as HTML
1060
+ Parameters: {"access_token"=>"1234"}
1061
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1062
+  (0.0ms) rollback transaction
1063
+  (0.1ms) begin transaction
1064
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 21:55:20 -0400
1065
+ Processing by SecondChute::Api::MetricsController#index as HTML
1066
+ Parameters: {"access_token"=>"1234"}
1067
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1068
+  (0.0ms) rollback transaction
1069
+  (0.0ms) begin transaction
1070
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-10-30 21:55:20 -0400
1071
+ Processing by SecondChute::Api::MetricsController#index as HTML
1072
+ Parameters: {"access_token"=>"1234"}
1073
+ Filter chain halted as :verify_access_token rendered or redirected
1074
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1075
+  (0.0ms) rollback transaction
1076
+  (0.0ms) begin transaction
1077
+  (0.1ms) rollback transaction
1078
+  (0.0ms) begin transaction
1079
+  (0.0ms) rollback transaction
1080
+  (0.0ms) begin transaction
1081
+  (0.0ms) rollback transaction
1082
+  (0.0ms) begin transaction
1083
+  (0.0ms) rollback transaction
1084
+  (0.0ms) begin transaction
1085
+  (0.0ms) rollback transaction
1086
+  (0.0ms) begin transaction
1087
+  (0.0ms) rollback transaction
1088
+  (0.0ms) begin transaction
1089
+  (0.0ms) rollback transaction
1090
+  (0.0ms) begin transaction
1091
+  (0.0ms) rollback transaction
1092
+  (0.0ms) begin transaction
1093
+  (0.0ms) rollback transaction
1094
+  (0.0ms) begin transaction
1095
+  (0.0ms) rollback transaction
1096
+  (0.0ms) begin transaction
1097
+  (0.0ms) rollback transaction
1098
+  (0.0ms) begin transaction
1099
+  (0.1ms) rollback transaction
1100
+  (0.0ms) begin transaction
1101
+  (0.0ms) rollback transaction
1102
+  (0.0ms) begin transaction
1103
+  (0.0ms) rollback transaction
1104
+  (0.0ms) begin transaction
1105
+  (0.0ms) rollback transaction
1106
+  (0.0ms) begin transaction
1107
+  (0.0ms) rollback transaction
1108
+  (0.0ms) begin transaction
1109
+  (0.0ms) rollback transaction
1110
+  (0.0ms) begin transaction
1111
+  (0.0ms) rollback transaction
1112
+  (0.0ms) begin transaction
1113
+  (0.0ms) rollback transaction
1114
+  (0.0ms) begin transaction
1115
+  (0.0ms) rollback transaction
1116
+  (0.0ms) begin transaction
1117
+  (0.0ms) rollback transaction
1118
+  (0.0ms) begin transaction
1119
+  (0.0ms) rollback transaction
1120
+  (0.1ms) begin transaction
1121
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-01 16:00:44 -0400
1122
+  (0.1ms) rollback transaction
1123
+  (0.0ms) begin transaction
1124
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-01 16:00:44 -0400
1125
+  (0.0ms) rollback transaction
1126
+  (0.0ms) begin transaction
1127
+  (0.0ms) rollback transaction
1128
+  (0.0ms) begin transaction
1129
+  (0.0ms) rollback transaction
1130
+  (0.0ms) begin transaction
1131
+  (0.0ms) rollback transaction
1132
+  (0.0ms) begin transaction
1133
+  (0.0ms) rollback transaction
1134
+  (0.0ms) begin transaction
1135
+  (0.0ms) rollback transaction
1136
+  (0.0ms) begin transaction
1137
+  (0.0ms) rollback transaction
1138
+  (0.0ms) begin transaction
1139
+  (0.0ms) rollback transaction
1140
+  (0.0ms) begin transaction
1141
+  (0.0ms) rollback transaction
1142
+  (0.0ms) begin transaction
1143
+  (0.1ms) rollback transaction
1144
+  (0.0ms) begin transaction
1145
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-01 16:01:14 -0400
1146
+  (0.1ms) rollback transaction
1147
+  (0.0ms) begin transaction
1148
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-01 16:01:14 -0400
1149
+  (0.0ms) rollback transaction
1150
+  (0.0ms) begin transaction
1151
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:01:14 -0400
1152
+  (0.0ms) rollback transaction
1153
+  (0.0ms) begin transaction
1154
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:01:14 -0400
1155
+  (0.0ms) rollback transaction
1156
+  (0.0ms) begin transaction
1157
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:01:14 -0400
1158
+  (0.0ms) rollback transaction
1159
+  (0.0ms) begin transaction
1160
+  (0.0ms) rollback transaction
1161
+  (0.0ms) begin transaction
1162
+  (0.0ms) rollback transaction
1163
+  (0.0ms) begin transaction
1164
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:01:14 -0400
1165
+  (0.1ms) rollback transaction
1166
+  (0.0ms) begin transaction
1167
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:01:14 -0400
1168
+  (0.0ms) rollback transaction
1169
+  (0.0ms) begin transaction
1170
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:01:14 -0400
1171
+  (0.0ms) rollback transaction
1172
+  (0.0ms) begin transaction
1173
+  (0.0ms) rollback transaction
1174
+  (0.0ms) begin transaction
1175
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:00 -0400
1176
+  (0.1ms) rollback transaction
1177
+  (0.0ms) begin transaction
1178
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:00 -0400
1179
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1180
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1181
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1182
+  (0.1ms) rollback transaction
1183
+  (0.0ms) begin transaction
1184
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:00 -0400
1185
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1186
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1187
+ Filter chain halted as :verify_access_token rendered or redirected
1188
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1189
+  (0.0ms) rollback transaction
1190
+  (0.1ms) begin transaction
1191
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:00 -0400
1192
+  (0.0ms) rollback transaction
1193
+  (0.0ms) begin transaction
1194
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:00 -0400
1195
+  (0.0ms) rollback transaction
1196
+  (0.0ms) begin transaction
1197
+  (0.0ms) rollback transaction
1198
+  (0.0ms) begin transaction
1199
+  (0.1ms) rollback transaction
1200
+  (0.0ms) begin transaction
1201
+  (0.0ms) rollback transaction
1202
+  (0.0ms) begin transaction
1203
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:00 -0400
1204
+  (0.0ms) rollback transaction
1205
+  (0.1ms) begin transaction
1206
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:00 -0400
1207
+  (0.0ms) rollback transaction
1208
+  (0.0ms) begin transaction
1209
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:00 -0400
1210
+  (0.1ms) rollback transaction
1211
+  (0.0ms) begin transaction
1212
+  (0.0ms) rollback transaction
1213
+  (0.0ms) begin transaction
1214
+  (0.0ms) rollback transaction
1215
+  (0.0ms) begin transaction
1216
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:17 -0400
1217
+  (0.1ms) rollback transaction
1218
+  (0.0ms) begin transaction
1219
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:17 -0400
1220
+  (0.0ms) rollback transaction
1221
+  (0.0ms) begin transaction
1222
+  (0.0ms) rollback transaction
1223
+  (0.0ms) begin transaction
1224
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:17 -0400
1225
+  (0.0ms) rollback transaction
1226
+  (0.0ms) begin transaction
1227
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:17 -0400
1228
+ Processing by SecondChute::Api::MetricsController#index as HTML
1229
+ Parameters: {"access_token"=>"1234"}
1230
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1231
+  (0.0ms) rollback transaction
1232
+  (0.0ms) begin transaction
1233
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:17 -0400
1234
+ Processing by SecondChute::Api::MetricsController#index as HTML
1235
+ Parameters: {"access_token"=>"1234"}
1236
+ Filter chain halted as :verify_access_token rendered or redirected
1237
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1238
+  (0.0ms) rollback transaction
1239
+  (0.0ms) begin transaction
1240
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:17 -0400
1241
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1242
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1243
+ Filter chain halted as :verify_access_token rendered or redirected
1244
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1245
+  (0.0ms) rollback transaction
1246
+  (0.0ms) begin transaction
1247
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:17 -0400
1248
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1249
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1250
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1251
+  (0.1ms) rollback transaction
1252
+  (0.0ms) begin transaction
1253
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:17 -0400
1254
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1255
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1256
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1257
+  (0.0ms) rollback transaction
1258
+  (0.0ms) begin transaction
1259
+  (0.0ms) rollback transaction
1260
+  (0.0ms) begin transaction
1261
+  (0.0ms) rollback transaction
1262
+  (0.0ms) begin transaction
1263
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:52 -0400
1264
+  (0.1ms) rollback transaction
1265
+  (0.0ms) begin transaction
1266
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:52 -0400
1267
+  (0.0ms) rollback transaction
1268
+  (0.0ms) begin transaction
1269
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:52 -0400
1270
+  (0.0ms) rollback transaction
1271
+  (0.0ms) begin transaction
1272
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:52 -0400
1273
+  (0.0ms) rollback transaction
1274
+  (0.0ms) begin transaction
1275
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:52 -0400
1276
+  (0.0ms) rollback transaction
1277
+  (0.0ms) begin transaction
1278
+  (0.1ms) rollback transaction
1279
+  (0.0ms) begin transaction
1280
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:52 -0400
1281
+  (0.0ms) rollback transaction
1282
+  (0.0ms) begin transaction
1283
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:52 -0400
1284
+  (0.1ms) rollback transaction
1285
+  (0.0ms) begin transaction
1286
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:02:52 -0400
1287
+  (0.0ms) rollback transaction
1288
+  (0.0ms) begin transaction
1289
+  (0.1ms) rollback transaction
1290
+  (0.0ms) begin transaction
1291
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:03:31 -0400
1292
+  (0.1ms) rollback transaction
1293
+  (0.1ms) begin transaction
1294
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:03:31 -0400
1295
+  (0.1ms) rollback transaction
1296
+  (0.1ms) begin transaction
1297
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:03:31 -0400
1298
+  (0.0ms) rollback transaction
1299
+  (0.0ms) begin transaction
1300
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:03:31 -0400
1301
+  (0.0ms) rollback transaction
1302
+  (0.0ms) begin transaction
1303
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:03:31 -0400
1304
+  (0.1ms) rollback transaction
1305
+  (0.1ms) begin transaction
1306
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:03:31 -0400
1307
+  (0.0ms) rollback transaction
1308
+  (0.0ms) begin transaction
1309
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-01 16:03:31 -0400
1310
+  (0.0ms) rollback transaction
1311
+  (0.0ms) begin transaction
1312
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-01 16:03:31 -0400
1313
+  (0.0ms) rollback transaction
1314
+  (0.1ms) begin transaction
1315
+  (0.0ms) rollback transaction
1316
+  (0.0ms) begin transaction
1317
+  (0.0ms) rollback transaction
1318
+  (0.0ms) begin transaction
1319
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:04:07 -0400
1320
+  (0.1ms) rollback transaction
1321
+  (0.0ms) begin transaction
1322
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:04:07 -0400
1323
+  (0.0ms) rollback transaction
1324
+  (0.0ms) begin transaction
1325
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-01 16:04:07 -0400
1326
+  (0.0ms) rollback transaction
1327
+  (0.0ms) begin transaction
1328
+  (0.0ms) rollback transaction
1329
+  (0.0ms) begin transaction
1330
+  (0.0ms) rollback transaction
1331
+  (0.0ms) begin transaction
1332
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:04:07 -0400
1333
+  (0.0ms) rollback transaction
1334
+  (0.0ms) begin transaction
1335
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:04:07 -0400
1336
+  (0.2ms) rollback transaction
1337
+  (0.0ms) begin transaction
1338
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-01 16:04:07 -0400
1339
+  (0.0ms) rollback transaction
1340
+  (0.0ms) begin transaction
1341
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-01 16:04:07 -0400
1342
+  (0.0ms) rollback transaction
1343
+  (0.0ms) begin transaction
1344
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-01 16:04:07 -0400
1345
+  (0.0ms) rollback transaction
1346
+  (0.0ms) begin transaction
1347
+  (0.1ms) rollback transaction
1348
+  (0.0ms) begin transaction
1349
+  (0.1ms) rollback transaction
1350
+  (0.0ms) begin transaction
1351
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-03 00:41:24 -0400
1352
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1353
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1354
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1355
+  (0.1ms) rollback transaction
1356
+  (0.0ms) begin transaction
1357
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-03 00:41:24 -0400
1358
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1359
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1360
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1361
+  (0.0ms) rollback transaction
1362
+  (0.0ms) begin transaction
1363
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-03 00:41:24 -0400
1364
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1365
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1366
+ Filter chain halted as :verify_access_token rendered or redirected
1367
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1368
+  (0.0ms) rollback transaction
1369
+  (0.0ms) begin transaction
1370
+  (0.0ms) rollback transaction
1371
+  (0.0ms) begin transaction
1372
+  (0.0ms) rollback transaction
1373
+  (0.0ms) begin transaction
1374
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-03 00:41:24 -0400
1375
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
1376
+ Parameters: {"access_token"=>"1234"}
1377
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1378
+  (0.1ms) rollback transaction
1379
+  (0.0ms) begin transaction
1380
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-03 00:41:24 -0400
1381
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
1382
+ Parameters: {"access_token"=>"1234"}
1383
+ Filter chain halted as :verify_access_token rendered or redirected
1384
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1385
+  (0.0ms) rollback transaction
1386
+  (0.0ms) begin transaction
1387
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-03 00:41:24 -0400
1388
+ Processing by SecondChute::Api::MetricsController#index as HTML
1389
+ Parameters: {"access_token"=>"1234"}
1390
+ Filter chain halted as :verify_access_token rendered or redirected
1391
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1392
+  (0.1ms) rollback transaction
1393
+  (0.0ms) begin transaction
1394
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-03 00:41:24 -0400
1395
+ Processing by SecondChute::Api::MetricsController#index as HTML
1396
+ Parameters: {"access_token"=>"1234"}
1397
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1398
+  (0.1ms) rollback transaction
1399
+  (0.1ms) begin transaction
1400
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-03 00:41:24 -0400
1401
+ Processing by SecondChute::Api::MetricsController#index as HTML
1402
+ Parameters: {"access_token"=>"1234"}
1403
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1404
+  (0.0ms) rollback transaction
1405
+  (0.0ms) begin transaction
1406
+  (0.1ms) rollback transaction
1407
+  (0.1ms) begin transaction
1408
+  (0.1ms) rollback transaction
1409
+  (0.1ms) begin transaction
1410
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-04 22:49:00 -0400
1411
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
1412
+ Parameters: {"access_token"=>"1234"}
1413
+ Filter chain halted as :verify_access_token rendered or redirected
1414
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1415
+  (0.1ms) rollback transaction
1416
+  (0.0ms) begin transaction
1417
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-04 22:49:00 -0400
1418
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
1419
+ Parameters: {"access_token"=>"1234"}
1420
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1421
+  (0.0ms) rollback transaction
1422
+  (0.0ms) begin transaction
1423
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-04 22:49:00 -0400
1424
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1425
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1426
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1427
+  (0.1ms) rollback transaction
1428
+  (0.0ms) begin transaction
1429
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-04 22:49:00 -0400
1430
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1431
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1432
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1433
+  (0.0ms) rollback transaction
1434
+  (0.0ms) begin transaction
1435
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-04 22:49:00 -0400
1436
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1437
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1438
+ Filter chain halted as :verify_access_token rendered or redirected
1439
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1440
+  (0.0ms) rollback transaction
1441
+  (0.0ms) begin transaction
1442
+  (0.0ms) rollback transaction
1443
+  (0.0ms) begin transaction
1444
+  (0.0ms) rollback transaction
1445
+  (0.0ms) begin transaction
1446
+  (0.0ms) rollback transaction
1447
+  (0.0ms) begin transaction
1448
+  (0.0ms) rollback transaction
1449
+  (0.0ms) begin transaction
1450
+  (0.1ms) rollback transaction
1451
+  (0.0ms) begin transaction
1452
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-04 22:49:58 -0400
1453
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1454
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1455
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1456
+  (0.0ms) rollback transaction
1457
+  (0.0ms) begin transaction
1458
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-04 22:49:58 -0400
1459
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1460
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1461
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1462
+  (0.0ms) rollback transaction
1463
+  (0.0ms) begin transaction
1464
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-04 22:49:58 -0400
1465
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1466
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1467
+ Filter chain halted as :verify_access_token rendered or redirected
1468
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1469
+  (0.0ms) rollback transaction
1470
+  (0.0ms) begin transaction
1471
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-04 22:49:58 -0400
1472
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
1473
+ Parameters: {"access_token"=>"1234"}
1474
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1475
+  (0.0ms) rollback transaction
1476
+  (0.0ms) begin transaction
1477
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-04 22:49:58 -0400
1478
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
1479
+ Parameters: {"access_token"=>"1234"}
1480
+ Filter chain halted as :verify_access_token rendered or redirected
1481
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1482
+  (0.0ms) rollback transaction
1483
+  (0.0ms) begin transaction
1484
+  (0.0ms) rollback transaction
1485
+  (0.0ms) begin transaction
1486
+  (0.0ms) rollback transaction
1487
+  (0.0ms) begin transaction
1488
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-04 22:49:58 -0400
1489
+ Processing by SecondChute::Api::MetricsController#index as HTML
1490
+ Parameters: {"access_token"=>"1234"}
1491
+ Filter chain halted as :verify_access_token rendered or redirected
1492
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1493
+  (0.0ms) rollback transaction
1494
+  (0.0ms) begin transaction
1495
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-04 22:49:58 -0400
1496
+ Processing by SecondChute::Api::MetricsController#index as HTML
1497
+ Parameters: {"access_token"=>"1234"}
1498
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1499
+  (0.1ms) rollback transaction
1500
+  (0.0ms) begin transaction
1501
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-04 22:49:58 -0400
1502
+ Processing by SecondChute::Api::MetricsController#index as HTML
1503
+ Parameters: {"access_token"=>"1234"}
1504
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1505
+  (0.0ms) rollback transaction
1506
+  (0.0ms) begin transaction
1507
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-04 22:56:58 -0400
1508
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1509
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1510
+ Filter chain halted as :verify_access_token rendered or redirected
1511
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1512
+  (0.1ms) rollback transaction
1513
+  (0.0ms) begin transaction
1514
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-04 22:56:58 -0400
1515
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1516
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1517
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1518
+  (0.0ms) rollback transaction
1519
+  (0.0ms) begin transaction
1520
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-04 22:56:58 -0400
1521
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1522
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1523
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1524
+  (0.0ms) rollback transaction
1525
+  (0.0ms) begin transaction
1526
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-04 22:56:58 -0400
1527
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
1528
+ Parameters: {"access_token"=>"1234"}
1529
+ Filter chain halted as :verify_access_token rendered or redirected
1530
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1531
+  (0.0ms) rollback transaction
1532
+  (0.0ms) begin transaction
1533
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-04 22:56:58 -0400
1534
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
1535
+ Parameters: {"access_token"=>"1234"}
1536
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1537
+  (0.0ms) rollback transaction
1538
+  (0.0ms) begin transaction
1539
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-04 22:56:58 -0400
1540
+ Processing by SecondChute::Api::MetricsController#index as HTML
1541
+ Parameters: {"access_token"=>"1234"}
1542
+ Filter chain halted as :verify_access_token rendered or redirected
1543
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1544
+  (0.0ms) rollback transaction
1545
+  (0.0ms) begin transaction
1546
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-04 22:56:58 -0400
1547
+ Processing by SecondChute::Api::MetricsController#index as HTML
1548
+ Parameters: {"access_token"=>"1234"}
1549
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1550
+  (0.0ms) rollback transaction
1551
+  (0.0ms) begin transaction
1552
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-04 22:56:58 -0400
1553
+ Processing by SecondChute::Api::MetricsController#index as HTML
1554
+ Parameters: {"access_token"=>"1234"}
1555
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1556
+  (0.1ms) rollback transaction
1557
+  (0.0ms) begin transaction
1558
+  (0.0ms) rollback transaction
1559
+  (0.0ms) begin transaction
1560
+  (0.0ms) rollback transaction
1561
+  (0.0ms) begin transaction
1562
+  (0.0ms) rollback transaction
1563
+  (0.0ms) begin transaction
1564
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-04 22:57:31 -0400
1565
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1566
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1567
+ Filter chain halted as :verify_access_token rendered or redirected
1568
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1569
+  (0.1ms) rollback transaction
1570
+  (0.1ms) begin transaction
1571
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-04 22:57:31 -0400
1572
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1573
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1574
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1575
+  (0.0ms) rollback transaction
1576
+  (0.0ms) begin transaction
1577
+ Started GET "/second_chute/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-04 22:57:31 -0400
1578
+ Processing by SecondChute::Api::StatisticsController#show as HTML
1579
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1580
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1581
+  (0.0ms) rollback transaction
1582
+  (0.0ms) begin transaction
1583
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-04 22:57:31 -0400
1584
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
1585
+ Parameters: {"access_token"=>"1234"}
1586
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1587
+  (0.0ms) rollback transaction
1588
+  (0.0ms) begin transaction
1589
+ Started GET "/second_chute/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-04 22:57:31 -0400
1590
+ Processing by SecondChute::Api::HealthCheckController#index as HTML
1591
+ Parameters: {"access_token"=>"1234"}
1592
+ Filter chain halted as :verify_access_token rendered or redirected
1593
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1594
+  (0.0ms) rollback transaction
1595
+  (0.0ms) begin transaction
1596
+  (0.1ms) rollback transaction
1597
+  (0.1ms) begin transaction
1598
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-04 22:57:31 -0400
1599
+ Processing by SecondChute::Api::MetricsController#index as HTML
1600
+ Parameters: {"access_token"=>"1234"}
1601
+ Filter chain halted as :verify_access_token rendered or redirected
1602
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1603
+  (0.0ms) rollback transaction
1604
+  (0.0ms) begin transaction
1605
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-04 22:57:31 -0400
1606
+ Processing by SecondChute::Api::MetricsController#index as HTML
1607
+ Parameters: {"access_token"=>"1234"}
1608
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1609
+  (0.0ms) rollback transaction
1610
+  (0.0ms) begin transaction
1611
+ Started GET "/second_chute/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-04 22:57:31 -0400
1612
+ Processing by SecondChute::Api::MetricsController#index as HTML
1613
+ Parameters: {"access_token"=>"1234"}
1614
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1615
+  (0.0ms) rollback transaction
1616
+  (0.0ms) begin transaction
1617
+  (0.0ms) rollback transaction
1618
+  (0.0ms) begin transaction
1619
+  (0.0ms) rollback transaction
1620
+  (0.0ms) begin transaction
1621
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-06 01:19:22 -0500
1622
+ Processing by StatMonster::Api::HealthCheckController#index as HTML
1623
+ Parameters: {"access_token"=>"1234"}
1624
+ Filter chain halted as :verify_access_token rendered or redirected
1625
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1626
+  (0.1ms) rollback transaction
1627
+  (0.0ms) begin transaction
1628
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-06 01:19:22 -0500
1629
+ Processing by StatMonster::Api::HealthCheckController#index as HTML
1630
+ Parameters: {"access_token"=>"1234"}
1631
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1632
+  (0.0ms) rollback transaction
1633
+  (0.0ms) begin transaction
1634
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-06 01:19:22 -0500
1635
+ Processing by StatMonster::Api::MetricsController#index as HTML
1636
+ Parameters: {"access_token"=>"1234"}
1637
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1638
+  (0.0ms) rollback transaction
1639
+  (0.0ms) begin transaction
1640
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-06 01:19:22 -0500
1641
+ Processing by StatMonster::Api::MetricsController#index as HTML
1642
+ Parameters: {"access_token"=>"1234"}
1643
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1644
+  (0.0ms) rollback transaction
1645
+  (0.0ms) begin transaction
1646
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-06 01:19:22 -0500
1647
+ Processing by StatMonster::Api::MetricsController#index as HTML
1648
+ Parameters: {"access_token"=>"1234"}
1649
+ Filter chain halted as :verify_access_token rendered or redirected
1650
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1651
+  (0.0ms) rollback transaction
1652
+  (0.0ms) begin transaction
1653
+  (0.0ms) rollback transaction
1654
+  (0.0ms) begin transaction
1655
+  (0.0ms) rollback transaction
1656
+  (0.0ms) begin transaction
1657
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-06 01:19:22 -0500
1658
+ Processing by StatMonster::Api::StatisticsController#show as HTML
1659
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1660
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1661
+  (0.0ms) rollback transaction
1662
+  (0.0ms) begin transaction
1663
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-06 01:19:22 -0500
1664
+ Processing by StatMonster::Api::StatisticsController#show as HTML
1665
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1666
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1667
+  (0.0ms) rollback transaction
1668
+  (0.0ms) begin transaction
1669
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-06 01:19:22 -0500
1670
+ Processing by StatMonster::Api::StatisticsController#show as HTML
1671
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1672
+ Filter chain halted as :verify_access_token rendered or redirected
1673
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1674
+  (0.0ms) rollback transaction
1675
+  (0.0ms) begin transaction
1676
+  (0.0ms) rollback transaction
1677
+  (0.0ms) begin transaction
1678
+  (0.1ms) rollback transaction
1679
+  (0.0ms) begin transaction
1680
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-07 10:08:15 -0500
1681
+ Processing by StatMonster::Api::MetricsController#index as HTML
1682
+ Parameters: {"access_token"=>"1234"}
1683
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1684
+  (0.1ms) rollback transaction
1685
+  (0.0ms) begin transaction
1686
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-07 10:08:15 -0500
1687
+ Processing by StatMonster::Api::MetricsController#index as HTML
1688
+ Parameters: {"access_token"=>"1234"}
1689
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1690
+  (0.0ms) rollback transaction
1691
+  (0.0ms) begin transaction
1692
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-07 10:08:15 -0500
1693
+ Processing by StatMonster::Api::MetricsController#index as HTML
1694
+ Parameters: {"access_token"=>"1234"}
1695
+ Filter chain halted as :verify_access_token rendered or redirected
1696
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1697
+  (0.0ms) rollback transaction
1698
+  (0.0ms) begin transaction
1699
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-07 10:08:15 -0500
1700
+ Processing by StatMonster::Api::StatisticsController#show as HTML
1701
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1702
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1703
+  (0.0ms) rollback transaction
1704
+  (0.0ms) begin transaction
1705
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-07 10:08:15 -0500
1706
+ Processing by StatMonster::Api::StatisticsController#show as HTML
1707
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1708
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1709
+  (0.0ms) rollback transaction
1710
+  (0.0ms) begin transaction
1711
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-07 10:08:15 -0500
1712
+ Processing by StatMonster::Api::StatisticsController#show as HTML
1713
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1714
+ Filter chain halted as :verify_access_token rendered or redirected
1715
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1716
+  (0.0ms) rollback transaction
1717
+  (0.0ms) begin transaction
1718
+  (0.0ms) rollback transaction
1719
+  (0.0ms) begin transaction
1720
+  (0.0ms) rollback transaction
1721
+  (0.0ms) begin transaction
1722
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-07 10:08:15 -0500
1723
+ Processing by StatMonster::Api::HealthCheckController#index as HTML
1724
+ Parameters: {"access_token"=>"1234"}
1725
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1726
+  (0.0ms) rollback transaction
1727
+  (0.1ms) begin transaction
1728
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-07 10:08:15 -0500
1729
+ Processing by StatMonster::Api::HealthCheckController#index as HTML
1730
+ Parameters: {"access_token"=>"1234"}
1731
+ Filter chain halted as :verify_access_token rendered or redirected
1732
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1733
+  (0.0ms) rollback transaction
1734
+  (0.0ms) begin transaction
1735
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-07 10:08:56 -0500
1736
+ Processing by StatMonster::Api::HealthCheckController#index as HTML
1737
+ Parameters: {"access_token"=>"1234"}
1738
+ Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1739
+  (0.1ms) rollback transaction
1740
+  (0.0ms) begin transaction
1741
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-07 10:08:56 -0500
1742
+ Processing by StatMonster::Api::HealthCheckController#index as HTML
1743
+ Parameters: {"access_token"=>"1234"}
1744
+ Filter chain halted as :verify_access_token rendered or redirected
1745
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1746
+  (0.0ms) rollback transaction
1747
+  (0.0ms) begin transaction
1748
+  (0.0ms) rollback transaction
1749
+  (0.0ms) begin transaction
1750
+  (0.0ms) rollback transaction
1751
+  (0.0ms) begin transaction
1752
+  (0.0ms) rollback transaction
1753
+  (0.0ms) begin transaction
1754
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-07 10:08:56 -0500
1755
+ Processing by StatMonster::Api::MetricsController#index as HTML
1756
+ Parameters: {"access_token"=>"1234"}
1757
+ Filter chain halted as :verify_access_token rendered or redirected
1758
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1759
+  (0.0ms) rollback transaction
1760
+  (0.0ms) begin transaction
1761
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-07 10:08:56 -0500
1762
+ Processing by StatMonster::Api::MetricsController#index as HTML
1763
+ Parameters: {"access_token"=>"1234"}
1764
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1765
+  (0.0ms) rollback transaction
1766
+  (0.1ms) begin transaction
1767
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-07 10:08:56 -0500
1768
+ Processing by StatMonster::Api::MetricsController#index as HTML
1769
+ Parameters: {"access_token"=>"1234"}
1770
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1771
+  (0.0ms) rollback transaction
1772
+  (0.0ms) begin transaction
1773
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-07 10:08:56 -0500
1774
+ Processing by StatMonster::Api::StatisticsController#show as HTML
1775
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1776
+ Filter chain halted as :verify_access_token rendered or redirected
1777
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1778
+  (0.0ms) rollback transaction
1779
+  (0.0ms) begin transaction
1780
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-07 10:08:56 -0500
1781
+ Processing by StatMonster::Api::StatisticsController#show as HTML
1782
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1783
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1784
+  (0.0ms) rollback transaction
1785
+  (0.0ms) begin transaction
1786
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-07 10:08:56 -0500
1787
+ Processing by StatMonster::Api::StatisticsController#show as HTML
1788
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1789
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1790
+  (0.0ms) rollback transaction
1791
+  (0.0ms) begin transaction
1792
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-07 10:09:10 -0500
1793
+ Processing by StatMonster::Api::StatisticsController#show as HTML
1794
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1795
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1796
+  (0.0ms) rollback transaction
1797
+  (0.0ms) begin transaction
1798
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-07 10:09:10 -0500
1799
+ Processing by StatMonster::Api::StatisticsController#show as HTML
1800
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1801
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1802
+  (0.0ms) rollback transaction
1803
+  (0.0ms) begin transaction
1804
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-07 10:09:10 -0500
1805
+ Processing by StatMonster::Api::StatisticsController#show as HTML
1806
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
1807
+ Filter chain halted as :verify_access_token rendered or redirected
1808
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1809
+  (0.0ms) rollback transaction
1810
+  (0.0ms) begin transaction
1811
+  (0.0ms) rollback transaction
1812
+  (0.0ms) begin transaction
1813
+  (0.0ms) rollback transaction
1814
+  (0.0ms) begin transaction
1815
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-07 10:09:10 -0500
1816
+ Processing by StatMonster::Api::HealthCheckController#index as HTML
1817
+ Parameters: {"access_token"=>"1234"}
1818
+ Filter chain halted as :verify_access_token rendered or redirected
1819
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1820
+  (0.0ms) rollback transaction
1821
+  (0.0ms) begin transaction
1822
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-07 10:09:10 -0500
1823
+ Processing by StatMonster::Api::HealthCheckController#index as HTML
1824
+ Parameters: {"access_token"=>"1234"}
1825
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1826
+  (0.0ms) rollback transaction
1827
+  (0.0ms) begin transaction
1828
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-07 10:09:10 -0500
1829
+ Processing by StatMonster::Api::MetricsController#index as HTML
1830
+ Parameters: {"access_token"=>"1234"}
1831
+ Filter chain halted as :verify_access_token rendered or redirected
1832
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1833
+  (0.0ms) rollback transaction
1834
+  (0.0ms) begin transaction
1835
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-07 10:09:10 -0500
1836
+ Processing by StatMonster::Api::MetricsController#index as HTML
1837
+ Parameters: {"access_token"=>"1234"}
1838
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1839
+  (0.0ms) rollback transaction
1840
+  (0.0ms) begin transaction
1841
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-07 10:09:10 -0500
1842
+ Processing by StatMonster::Api::MetricsController#index as HTML
1843
+ Parameters: {"access_token"=>"1234"}
1844
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1845
+  (0.0ms) rollback transaction
1846
+  (0.0ms) begin transaction
1847
+  (0.1ms) rollback transaction
1848
+  (0.0ms) begin transaction
1849
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:11:11 -0500
1850
+  (0.0ms) rollback transaction
1851
+  (0.0ms) begin transaction
1852
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:11:11 -0500
1853
+  (0.0ms) rollback transaction
1854
+  (0.0ms) begin transaction
1855
+  (0.0ms) rollback transaction
1856
+  (0.0ms) begin transaction
1857
+  (0.0ms) rollback transaction
1858
+  (0.0ms) begin transaction
1859
+  (0.1ms) rollback transaction
1860
+  (0.0ms) begin transaction
1861
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:11:11 -0500
1862
+  (0.0ms) rollback transaction
1863
+  (0.0ms) begin transaction
1864
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:11:11 -0500
1865
+  (0.0ms) rollback transaction
1866
+  (0.0ms) begin transaction
1867
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:11:11 -0500
1868
+  (0.0ms) rollback transaction
1869
+  (0.0ms) begin transaction
1870
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:11:11 -0500
1871
+  (0.1ms) rollback transaction
1872
+  (0.0ms) begin transaction
1873
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:11:11 -0500
1874
+  (0.0ms) rollback transaction
1875
+  (0.0ms) begin transaction
1876
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:11:11 -0500
1877
+  (0.0ms) rollback transaction
1878
+  (0.0ms) begin transaction
1879
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:12:18 -0500
1880
+  (0.0ms) rollback transaction
1881
+  (0.0ms) begin transaction
1882
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:12:18 -0500
1883
+  (0.1ms) rollback transaction
1884
+  (0.2ms) begin transaction
1885
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:12:18 -0500
1886
+  (0.0ms) rollback transaction
1887
+  (0.0ms) begin transaction
1888
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:12:18 -0500
1889
+  (0.0ms) rollback transaction
1890
+  (0.0ms) begin transaction
1891
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:12:18 -0500
1892
+  (0.0ms) rollback transaction
1893
+  (0.0ms) begin transaction
1894
+  (0.0ms) rollback transaction
1895
+  (0.0ms) begin transaction
1896
+  (0.0ms) rollback transaction
1897
+  (0.0ms) begin transaction
1898
+  (0.0ms) rollback transaction
1899
+  (0.0ms) begin transaction
1900
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:12:18 -0500
1901
+  (0.1ms) rollback transaction
1902
+  (0.1ms) begin transaction
1903
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:12:18 -0500
1904
+  (0.0ms) rollback transaction
1905
+  (0.0ms) begin transaction
1906
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:12:18 -0500
1907
+  (0.0ms) rollback transaction
1908
+  (0.0ms) begin transaction
1909
+  (0.0ms) rollback transaction
1910
+  (0.0ms) begin transaction
1911
+  (0.0ms) rollback transaction
1912
+  (0.0ms) begin transaction
1913
+  (0.0ms) rollback transaction
1914
+  (0.0ms) begin transaction
1915
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:13:28 -0500
1916
+  (0.0ms) rollback transaction
1917
+  (0.0ms) begin transaction
1918
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:13:28 -0500
1919
+  (0.0ms) rollback transaction
1920
+  (0.0ms) begin transaction
1921
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:13:28 -0500
1922
+  (0.0ms) rollback transaction
1923
+  (0.0ms) begin transaction
1924
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:13:28 -0500
1925
+  (0.1ms) rollback transaction
1926
+  (0.0ms) begin transaction
1927
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:13:28 -0500
1928
+  (0.0ms) rollback transaction
1929
+  (0.0ms) begin transaction
1930
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:13:28 -0500
1931
+  (0.0ms) rollback transaction
1932
+  (0.0ms) begin transaction
1933
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:13:28 -0500
1934
+  (0.0ms) rollback transaction
1935
+  (0.0ms) begin transaction
1936
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:13:28 -0500
1937
+  (0.0ms) rollback transaction
1938
+  (0.0ms) begin transaction
1939
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:14:28 -0500
1940
+  (0.1ms) rollback transaction
1941
+  (0.1ms) begin transaction
1942
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:14:28 -0500
1943
+  (0.0ms) rollback transaction
1944
+  (0.0ms) begin transaction
1945
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:14:28 -0500
1946
+  (0.0ms) rollback transaction
1947
+  (0.0ms) begin transaction
1948
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:14:28 -0500
1949
+  (0.0ms) rollback transaction
1950
+  (0.0ms) begin transaction
1951
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:14:28 -0500
1952
+  (0.0ms) rollback transaction
1953
+  (0.0ms) begin transaction
1954
+  (0.1ms) rollback transaction
1955
+  (0.1ms) begin transaction
1956
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:14:28 -0500
1957
+  (0.0ms) rollback transaction
1958
+  (0.0ms) begin transaction
1959
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:14:28 -0500
1960
+  (0.0ms) rollback transaction
1961
+  (0.0ms) begin transaction
1962
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:14:28 -0500
1963
+  (0.1ms) rollback transaction
1964
+  (0.0ms) begin transaction
1965
+  (0.0ms) rollback transaction
1966
+  (0.0ms) begin transaction
1967
+  (0.0ms) rollback transaction
1968
+  (0.0ms) begin transaction
1969
+  (0.0ms) rollback transaction
1970
+  (0.0ms) begin transaction
1971
+  (0.0ms) rollback transaction
1972
+  (0.0ms) begin transaction
1973
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:15:31 -0500
1974
+  (0.0ms) rollback transaction
1975
+  (0.0ms) begin transaction
1976
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:15:31 -0500
1977
+  (0.0ms) rollback transaction
1978
+  (0.0ms) begin transaction
1979
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:15:31 -0500
1980
+  (0.0ms) rollback transaction
1981
+  (0.0ms) begin transaction
1982
+  (0.1ms) rollback transaction
1983
+  (0.0ms) begin transaction
1984
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:15:31 -0500
1985
+  (0.0ms) rollback transaction
1986
+  (0.0ms) begin transaction
1987
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:15:31 -0500
1988
+  (0.1ms) rollback transaction
1989
+  (0.0ms) begin transaction
1990
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:15:31 -0500
1991
+  (0.0ms) rollback transaction
1992
+  (0.0ms) begin transaction
1993
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:15:31 -0500
1994
+  (0.1ms) rollback transaction
1995
+  (0.1ms) begin transaction
1996
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:15:31 -0500
1997
+  (0.0ms) rollback transaction
1998
+  (0.0ms) begin transaction
1999
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:16:20 -0500
2000
+  (0.0ms) rollback transaction
2001
+  (0.0ms) begin transaction
2002
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:16:20 -0500
2003
+  (0.1ms) rollback transaction
2004
+  (0.0ms) begin transaction
2005
+ Started GET "/statmonster/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:16:20 -0500
2006
+  (0.0ms) rollback transaction
2007
+  (0.0ms) begin transaction
2008
+  (0.1ms) rollback transaction
2009
+  (0.1ms) begin transaction
2010
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:16:20 -0500
2011
+  (0.0ms) rollback transaction
2012
+  (0.0ms) begin transaction
2013
+ Started GET "/statmonster/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:16:20 -0500
2014
+  (0.0ms) rollback transaction
2015
+  (0.0ms) begin transaction
2016
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:16:20 -0500
2017
+  (0.0ms) rollback transaction
2018
+  (0.0ms) begin transaction
2019
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:16:20 -0500
2020
+  (0.0ms) rollback transaction
2021
+  (0.0ms) begin transaction
2022
+ Started GET "/statmonster/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:16:20 -0500
2023
+  (0.0ms) rollback transaction
2024
+  (0.0ms) begin transaction
2025
+  (0.0ms) rollback transaction
2026
+  (0.0ms) begin transaction
2027
+  (0.0ms) rollback transaction
2028
+  (0.0ms) begin transaction
2029
+ Started GET "/swatter/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:46:03 -0500
2030
+ Processing by Swatter::Api::MetricsController#index as HTML
2031
+ Parameters: {"access_token"=>"1234"}
2032
+ Filter chain halted as :verify_access_token rendered or redirected
2033
+ Completed 401 Unauthorized in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2034
+  (0.1ms) rollback transaction
2035
+  (0.0ms) begin transaction
2036
+ Started GET "/swatter/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:46:03 -0500
2037
+ Processing by Swatter::Api::MetricsController#index as HTML
2038
+ Parameters: {"access_token"=>"1234"}
2039
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2040
+  (0.0ms) rollback transaction
2041
+  (0.0ms) begin transaction
2042
+ Started GET "/swatter/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:46:03 -0500
2043
+ Processing by Swatter::Api::MetricsController#index as HTML
2044
+ Parameters: {"access_token"=>"1234"}
2045
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2046
+  (0.1ms) rollback transaction
2047
+  (0.0ms) begin transaction
2048
+  (0.0ms) rollback transaction
2049
+  (0.0ms) begin transaction
2050
+  (0.0ms) rollback transaction
2051
+  (0.0ms) begin transaction
2052
+ Started GET "/swatter/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:46:03 -0500
2053
+ Processing by Swatter::Api::StatisticsController#show as HTML
2054
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2055
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2056
+  (0.1ms) rollback transaction
2057
+  (0.0ms) begin transaction
2058
+ Started GET "/swatter/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:46:03 -0500
2059
+ Processing by Swatter::Api::StatisticsController#show as HTML
2060
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2061
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2062
+  (0.0ms) rollback transaction
2063
+  (0.0ms) begin transaction
2064
+ Started GET "/swatter/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:46:03 -0500
2065
+ Processing by Swatter::Api::StatisticsController#show as HTML
2066
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2067
+ Filter chain halted as :verify_access_token rendered or redirected
2068
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2069
+  (0.2ms) rollback transaction
2070
+  (0.0ms) begin transaction
2071
+ Started GET "/swatter/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:46:03 -0500
2072
+ Processing by Swatter::Api::HealthCheckController#index as HTML
2073
+ Parameters: {"access_token"=>"1234"}
2074
+ Filter chain halted as :verify_access_token rendered or redirected
2075
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2076
+  (0.1ms) rollback transaction
2077
+  (0.0ms) begin transaction
2078
+ Started GET "/swatter/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:46:03 -0500
2079
+ Processing by Swatter::Api::HealthCheckController#index as HTML
2080
+ Parameters: {"access_token"=>"1234"}
2081
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2082
+  (0.0ms) rollback transaction
2083
+  (0.0ms) begin transaction
2084
+  (0.0ms) rollback transaction
2085
+  (0.1ms) begin transaction
2086
+  (0.1ms) rollback transaction
2087
+  (0.1ms) begin transaction
2088
+ Started GET "/swatter/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:53:30 -0500
2089
+ Processing by Swatter::Api::MetricsController#index as HTML
2090
+ Parameters: {"access_token"=>"1234"}
2091
+ Filter chain halted as :verify_access_token rendered or redirected
2092
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2093
+  (0.1ms) rollback transaction
2094
+  (0.0ms) begin transaction
2095
+ Started GET "/swatter/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:53:30 -0500
2096
+ Processing by Swatter::Api::MetricsController#index as HTML
2097
+ Parameters: {"access_token"=>"1234"}
2098
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2099
+  (0.0ms) rollback transaction
2100
+  (0.0ms) begin transaction
2101
+ Started GET "/swatter/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:53:30 -0500
2102
+ Processing by Swatter::Api::MetricsController#index as HTML
2103
+ Parameters: {"access_token"=>"1234"}
2104
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2105
+  (0.0ms) rollback transaction
2106
+  (0.0ms) begin transaction
2107
+  (0.0ms) rollback transaction
2108
+  (0.0ms) begin transaction
2109
+  (0.0ms) rollback transaction
2110
+  (0.0ms) begin transaction
2111
+ Started GET "/swatter/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:53:30 -0500
2112
+ Processing by Swatter::Api::HealthCheckController#index as HTML
2113
+ Parameters: {"access_token"=>"1234"}
2114
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2115
+  (0.0ms) rollback transaction
2116
+  (0.0ms) begin transaction
2117
+ Started GET "/swatter/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:53:30 -0500
2118
+ Processing by Swatter::Api::HealthCheckController#index as HTML
2119
+ Parameters: {"access_token"=>"1234"}
2120
+ Filter chain halted as :verify_access_token rendered or redirected
2121
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2122
+  (0.0ms) rollback transaction
2123
+  (0.0ms) begin transaction
2124
+ Started GET "/swatter/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:53:30 -0500
2125
+ Processing by Swatter::Api::StatisticsController#show as HTML
2126
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2127
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2128
+  (0.0ms) rollback transaction
2129
+  (0.0ms) begin transaction
2130
+ Started GET "/swatter/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:53:30 -0500
2131
+ Processing by Swatter::Api::StatisticsController#show as HTML
2132
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2133
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2134
+  (0.1ms) rollback transaction
2135
+  (0.0ms) begin transaction
2136
+ Started GET "/swatter/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:53:30 -0500
2137
+ Processing by Swatter::Api::StatisticsController#show as HTML
2138
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2139
+ Filter chain halted as :verify_access_token rendered or redirected
2140
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2141
+  (0.1ms) rollback transaction
2142
+  (0.0ms) begin transaction
2143
+  (0.0ms) rollback transaction
2144
+  (0.0ms) begin transaction
2145
+ Started GET "/swatter/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:58:40 -0500
2146
+ Processing by Swatter::Api::MetricsController#index as HTML
2147
+ Parameters: {"access_token"=>"1234"}
2148
+ Filter chain halted as :verify_access_token rendered or redirected
2149
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2150
+  (0.1ms) rollback transaction
2151
+  (0.1ms) begin transaction
2152
+ Started GET "/swatter/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:58:40 -0500
2153
+ Processing by Swatter::Api::MetricsController#index as HTML
2154
+ Parameters: {"access_token"=>"1234"}
2155
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2156
+  (0.0ms) rollback transaction
2157
+  (0.0ms) begin transaction
2158
+ Started GET "/swatter/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 22:58:40 -0500
2159
+ Processing by Swatter::Api::MetricsController#index as HTML
2160
+ Parameters: {"access_token"=>"1234"}
2161
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2162
+  (0.0ms) rollback transaction
2163
+  (0.0ms) begin transaction
2164
+ Started GET "/swatter/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:58:40 -0500
2165
+ Processing by Swatter::Api::HealthCheckController#index as HTML
2166
+ Parameters: {"access_token"=>"1234"}
2167
+ Filter chain halted as :verify_access_token rendered or redirected
2168
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2169
+  (0.0ms) rollback transaction
2170
+  (0.0ms) begin transaction
2171
+ Started GET "/swatter/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 22:58:40 -0500
2172
+ Processing by Swatter::Api::HealthCheckController#index as HTML
2173
+ Parameters: {"access_token"=>"1234"}
2174
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2175
+  (0.0ms) rollback transaction
2176
+  (0.0ms) begin transaction
2177
+ Started GET "/swatter/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:58:40 -0500
2178
+ Processing by Swatter::Api::StatisticsController#show as HTML
2179
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2180
+ Filter chain halted as :verify_access_token rendered or redirected
2181
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2182
+  (0.0ms) rollback transaction
2183
+  (0.1ms) begin transaction
2184
+ Started GET "/swatter/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:58:40 -0500
2185
+ Processing by Swatter::Api::StatisticsController#show as HTML
2186
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2187
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2188
+  (0.0ms) rollback transaction
2189
+  (0.0ms) begin transaction
2190
+ Started GET "/swatter/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 22:58:40 -0500
2191
+ Processing by Swatter::Api::StatisticsController#show as HTML
2192
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2193
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2194
+  (0.0ms) rollback transaction
2195
+  (0.1ms) begin transaction
2196
+  (0.1ms) rollback transaction
2197
+  (0.0ms) begin transaction
2198
+  (0.0ms) rollback transaction
2199
+  (0.0ms) begin transaction
2200
+ Started GET "/swatter/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 23:01:55 -0500
2201
+ Processing by Swatter::Api::StatisticsController#show as HTML
2202
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2203
+ Filter chain halted as :verify_access_token rendered or redirected
2204
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2205
+  (0.1ms) rollback transaction
2206
+  (0.0ms) begin transaction
2207
+ Started GET "/swatter/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 23:01:55 -0500
2208
+ Processing by Swatter::Api::StatisticsController#show as HTML
2209
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2210
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2211
+  (0.1ms) rollback transaction
2212
+  (0.0ms) begin transaction
2213
+ Started GET "/swatter/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-16 23:01:55 -0500
2214
+ Processing by Swatter::Api::StatisticsController#show as HTML
2215
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2216
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2217
+  (0.0ms) rollback transaction
2218
+  (0.0ms) begin transaction
2219
+ Started GET "/swatter/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 23:01:55 -0500
2220
+ Processing by Swatter::Api::HealthCheckController#index as HTML
2221
+ Parameters: {"access_token"=>"1234"}
2222
+ Filter chain halted as :verify_access_token rendered or redirected
2223
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2224
+  (0.1ms) rollback transaction
2225
+  (0.0ms) begin transaction
2226
+ Started GET "/swatter/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-16 23:01:55 -0500
2227
+ Processing by Swatter::Api::HealthCheckController#index as HTML
2228
+ Parameters: {"access_token"=>"1234"}
2229
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2230
+  (0.0ms) rollback transaction
2231
+  (0.0ms) begin transaction
2232
+  (0.0ms) rollback transaction
2233
+  (0.0ms) begin transaction
2234
+ Started GET "/swatter/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 23:01:55 -0500
2235
+ Processing by Swatter::Api::MetricsController#index as HTML
2236
+ Parameters: {"access_token"=>"1234"}
2237
+ Filter chain halted as :verify_access_token rendered or redirected
2238
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2239
+  (0.0ms) rollback transaction
2240
+  (0.0ms) begin transaction
2241
+ Started GET "/swatter/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 23:01:55 -0500
2242
+ Processing by Swatter::Api::MetricsController#index as HTML
2243
+ Parameters: {"access_token"=>"1234"}
2244
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2245
+  (0.0ms) rollback transaction
2246
+  (0.0ms) begin transaction
2247
+ Started GET "/swatter/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-16 23:01:55 -0500
2248
+ Processing by Swatter::Api::MetricsController#index as HTML
2249
+ Parameters: {"access_token"=>"1234"}
2250
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2251
+  (0.0ms) rollback transaction
2252
+  (0.0ms) begin transaction
2253
+  (0.0ms) rollback transaction
2254
+  (0.0ms) begin transaction
2255
+  (0.0ms) rollback transaction
2256
+  (0.1ms) begin transaction
2257
+  (0.1ms) rollback transaction
2258
+  (0.1ms) begin transaction
2259
+ Started GET "/floodlight/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-18 13:26:36 -0500
2260
+ Processing by Floodlight::Api::MetricsController#index as HTML
2261
+ Parameters: {"access_token"=>"1234"}
2262
+ Filter chain halted as :verify_access_token rendered or redirected
2263
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2264
+  (0.1ms) rollback transaction
2265
+  (0.1ms) begin transaction
2266
+ Started GET "/floodlight/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-18 13:26:36 -0500
2267
+ Processing by Floodlight::Api::MetricsController#index as HTML
2268
+ Parameters: {"access_token"=>"1234"}
2269
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2270
+  (0.0ms) rollback transaction
2271
+  (0.0ms) begin transaction
2272
+ Started GET "/floodlight/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-18 13:26:36 -0500
2273
+ Processing by Floodlight::Api::MetricsController#index as HTML
2274
+ Parameters: {"access_token"=>"1234"}
2275
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2276
+  (0.0ms) rollback transaction
2277
+  (0.0ms) begin transaction
2278
+ Started GET "/floodlight/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-18 13:26:36 -0500
2279
+ Processing by Floodlight::Api::HealthCheckController#index as HTML
2280
+ Parameters: {"access_token"=>"1234"}
2281
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2282
+  (0.0ms) rollback transaction
2283
+  (0.0ms) begin transaction
2284
+ Started GET "/floodlight/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-18 13:26:36 -0500
2285
+ Processing by Floodlight::Api::HealthCheckController#index as HTML
2286
+ Parameters: {"access_token"=>"1234"}
2287
+ Filter chain halted as :verify_access_token rendered or redirected
2288
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2289
+  (0.0ms) rollback transaction
2290
+  (0.0ms) begin transaction
2291
+ Started GET "/floodlight/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-18 13:26:36 -0500
2292
+ Processing by Floodlight::Api::StatisticsController#show as HTML
2293
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2294
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2295
+  (0.0ms) rollback transaction
2296
+  (0.0ms) begin transaction
2297
+ Started GET "/floodlight/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-18 13:26:36 -0500
2298
+ Processing by Floodlight::Api::StatisticsController#show as HTML
2299
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2300
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2301
+  (0.0ms) rollback transaction
2302
+  (0.0ms) begin transaction
2303
+ Started GET "/floodlight/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-18 13:26:36 -0500
2304
+ Processing by Floodlight::Api::StatisticsController#show as HTML
2305
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2306
+ Filter chain halted as :verify_access_token rendered or redirected
2307
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2308
+  (0.0ms) rollback transaction
2309
+  (0.0ms) begin transaction
2310
+  (0.0ms) rollback transaction
2311
+  (0.0ms) begin transaction
2312
+  (0.0ms) rollback transaction
2313
+  (0.1ms) begin transaction
2314
+  (0.1ms) rollback transaction
2315
+  (0.0ms) begin transaction
2316
+  (0.0ms) rollback transaction
2317
+  (0.0ms) begin transaction
2318
+  (0.0ms) rollback transaction
2319
+  (0.0ms) begin transaction
2320
+ Started GET "/floodlight/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-20 11:56:28 -0500
2321
+ Processing by Floodlight::Api::HealthCheckController#index as HTML
2322
+ Parameters: {"access_token"=>"1234"}
2323
+ Filter chain halted as :verify_access_token rendered or redirected
2324
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2325
+  (0.1ms) rollback transaction
2326
+  (0.0ms) begin transaction
2327
+ Started GET "/floodlight/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-20 11:56:28 -0500
2328
+ Processing by Floodlight::Api::HealthCheckController#index as HTML
2329
+ Parameters: {"access_token"=>"1234"}
2330
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2331
+  (0.0ms) rollback transaction
2332
+  (0.0ms) begin transaction
2333
+ Started GET "/floodlight/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-20 11:56:28 -0500
2334
+ Processing by Floodlight::Api::MetricsController#index as HTML
2335
+ Parameters: {"access_token"=>"1234"}
2336
+ Filter chain halted as :verify_access_token rendered or redirected
2337
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2338
+  (0.0ms) rollback transaction
2339
+  (0.0ms) begin transaction
2340
+ Started GET "/floodlight/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-20 11:56:28 -0500
2341
+ Processing by Floodlight::Api::MetricsController#index as HTML
2342
+ Parameters: {"access_token"=>"1234"}
2343
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2344
+  (0.0ms) rollback transaction
2345
+  (0.0ms) begin transaction
2346
+ Started GET "/floodlight/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-20 11:56:28 -0500
2347
+ Processing by Floodlight::Api::MetricsController#index as HTML
2348
+ Parameters: {"access_token"=>"1234"}
2349
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2350
+  (0.0ms) rollback transaction
2351
+  (0.0ms) begin transaction
2352
+ Started GET "/floodlight/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-20 11:56:28 -0500
2353
+ Processing by Floodlight::Api::StatisticsController#show as HTML
2354
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2355
+ Filter chain halted as :verify_access_token rendered or redirected
2356
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2357
+  (0.0ms) rollback transaction
2358
+  (0.0ms) begin transaction
2359
+ Started GET "/floodlight/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-20 11:56:28 -0500
2360
+ Processing by Floodlight::Api::StatisticsController#show as HTML
2361
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2362
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2363
+  (0.0ms) rollback transaction
2364
+  (0.0ms) begin transaction
2365
+ Started GET "/floodlight/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-20 11:56:28 -0500
2366
+ Processing by Floodlight::Api::StatisticsController#show as HTML
2367
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2368
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2369
+  (0.0ms) rollback transaction
2370
+  (0.1ms) begin transaction
2371
+  (0.0ms) rollback transaction
2372
+  (0.0ms) begin transaction
2373
+  (0.0ms) rollback transaction
2374
+  (0.0ms) begin transaction
2375
+  (0.1ms) rollback transaction
2376
+  (0.0ms) begin transaction
2377
+ Started GET "/floodlight/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-20 12:10:18 -0500
2378
+ Processing by Floodlight::Api::StatisticsController#show as HTML
2379
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2380
+ Filter chain halted as :verify_access_token rendered or redirected
2381
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2382
+  (0.1ms) rollback transaction
2383
+  (0.0ms) begin transaction
2384
+ Started GET "/floodlight/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-20 12:10:18 -0500
2385
+ Processing by Floodlight::Api::StatisticsController#show as HTML
2386
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2387
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2388
+  (0.0ms) rollback transaction
2389
+  (0.0ms) begin transaction
2390
+ Started GET "/floodlight/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-20 12:10:18 -0500
2391
+ Processing by Floodlight::Api::StatisticsController#show as HTML
2392
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2393
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2394
+  (0.1ms) rollback transaction
2395
+  (0.0ms) begin transaction
2396
+ Started GET "/floodlight/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-20 12:10:18 -0500
2397
+ Processing by Floodlight::Api::HealthCheckController#index as HTML
2398
+ Parameters: {"access_token"=>"1234"}
2399
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2400
+  (0.1ms) rollback transaction
2401
+  (0.0ms) begin transaction
2402
+ Started GET "/floodlight/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-20 12:10:18 -0500
2403
+ Processing by Floodlight::Api::HealthCheckController#index as HTML
2404
+ Parameters: {"access_token"=>"1234"}
2405
+ Filter chain halted as :verify_access_token rendered or redirected
2406
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2407
+  (0.0ms) rollback transaction
2408
+  (0.0ms) begin transaction
2409
+ Started GET "/floodlight/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-20 12:10:18 -0500
2410
+ Processing by Floodlight::Api::MetricsController#index as HTML
2411
+ Parameters: {"access_token"=>"1234"}
2412
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2413
+  (0.0ms) rollback transaction
2414
+  (0.0ms) begin transaction
2415
+ Started GET "/floodlight/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-20 12:10:18 -0500
2416
+ Processing by Floodlight::Api::MetricsController#index as HTML
2417
+ Parameters: {"access_token"=>"1234"}
2418
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2419
+  (0.0ms) rollback transaction
2420
+  (0.1ms) begin transaction
2421
+ Started GET "/floodlight/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-20 12:10:18 -0500
2422
+ Processing by Floodlight::Api::MetricsController#index as HTML
2423
+ Parameters: {"access_token"=>"1234"}
2424
+ Filter chain halted as :verify_access_token rendered or redirected
2425
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2426
+  (0.0ms) rollback transaction
2427
+  (0.0ms) begin transaction
2428
+ Started GET "/meerstats/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-22 16:29:50 -0500
2429
+ Processing by Meerstats::Api::MetricsController#index as HTML
2430
+ Parameters: {"access_token"=>"1234"}
2431
+ Filter chain halted as :verify_access_token rendered or redirected
2432
+ Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2433
+  (0.1ms) rollback transaction
2434
+  (0.1ms) begin transaction
2435
+ Started GET "/meerstats/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-22 16:29:50 -0500
2436
+ Processing by Meerstats::Api::MetricsController#index as HTML
2437
+ Parameters: {"access_token"=>"1234"}
2438
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2439
+  (0.0ms) rollback transaction
2440
+  (0.0ms) begin transaction
2441
+ Started GET "/meerstats/api/metrics?access_token=1234" for 127.0.0.1 at 2017-11-22 16:29:50 -0500
2442
+ Processing by Meerstats::Api::MetricsController#index as HTML
2443
+ Parameters: {"access_token"=>"1234"}
2444
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2445
+  (0.1ms) rollback transaction
2446
+  (0.0ms) begin transaction
2447
+ Started GET "/meerstats/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-22 16:29:50 -0500
2448
+ Processing by Meerstats::Api::StatisticsController#show as HTML
2449
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2450
+ Filter chain halted as :verify_access_token rendered or redirected
2451
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2452
+  (0.0ms) rollback transaction
2453
+  (0.0ms) begin transaction
2454
+ Started GET "/meerstats/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-22 16:29:50 -0500
2455
+ Processing by Meerstats::Api::StatisticsController#show as HTML
2456
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2457
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2458
+  (0.0ms) rollback transaction
2459
+  (0.0ms) begin transaction
2460
+ Started GET "/meerstats/api/statistics/orders?access_token=1234" for 127.0.0.1 at 2017-11-22 16:29:50 -0500
2461
+ Processing by Meerstats::Api::StatisticsController#show as HTML
2462
+ Parameters: {"access_token"=>"1234", "id"=>"orders"}
2463
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2464
+  (0.0ms) rollback transaction
2465
+  (0.0ms) begin transaction
2466
+  (0.0ms) rollback transaction
2467
+  (0.0ms) begin transaction
2468
+  (0.0ms) rollback transaction
2469
+  (0.0ms) begin transaction
2470
+ Started GET "/meerstats/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-22 16:29:50 -0500
2471
+ Processing by Meerstats::Api::HealthCheckController#index as HTML
2472
+ Parameters: {"access_token"=>"1234"}
2473
+ Filter chain halted as :verify_access_token rendered or redirected
2474
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2475
+  (0.0ms) rollback transaction
2476
+  (0.0ms) begin transaction
2477
+ Started GET "/meerstats/api/health_check?access_token=1234" for 127.0.0.1 at 2017-11-22 16:29:50 -0500
2478
+ Processing by Meerstats::Api::HealthCheckController#index as HTML
2479
+ Parameters: {"access_token"=>"1234"}
2480
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2481
+  (0.0ms) rollback transaction
2482
+  (0.0ms) begin transaction
2483
+  (0.0ms) rollback transaction