i_wonder 0.0.1 → 0.0.3

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 (37) hide show
  1. data/README.rdoc +1 -24
  2. data/app/assets/javascripts/i_wonder/application.js +1 -0
  3. data/app/assets/javascripts/i_wonder/reports.js +11 -1
  4. data/app/assets/stylesheets/i_wonder/_shared.css.scss +6 -0
  5. data/app/assets/stylesheets/i_wonder/application.css.scss +2 -5
  6. data/app/assets/stylesheets/i_wonder/reports.css.scss +7 -0
  7. data/app/controllers/i_wonder/reports_controller.rb +36 -3
  8. data/app/models/i_wonder/event.rb +16 -6
  9. data/app/models/i_wonder/metric.rb +57 -14
  10. data/app/models/i_wonder/report.rb +2 -2
  11. data/app/models/i_wonder/snapshot.rb +2 -1
  12. data/app/views/i_wonder/events/index.html.erb +4 -0
  13. data/app/views/i_wonder/metrics/_options_for_custom.html.erb +2 -2
  14. data/app/views/i_wonder/metrics/_options_for_model_counter.html.erb +2 -2
  15. data/app/views/i_wonder/metrics/index.html.erb +3 -1
  16. data/app/views/i_wonder/reports/_form.html.erb +1 -1
  17. data/app/views/i_wonder/reports/_line_report.html.erb +10 -33
  18. data/app/views/i_wonder/reports/_line_report.js.erb +20 -0
  19. data/app/views/layouts/i_wonder.html.erb +4 -0
  20. data/db/migrate/20111022230720_i_wonder_migrations.rb +5 -0
  21. data/lib/i_wonder/configuration.rb +3 -3
  22. data/lib/i_wonder/logging/middleware.rb +5 -4
  23. data/lib/i_wonder/version.rb +1 -1
  24. data/lib/tasks/i_wonder_tasks.rake +4 -0
  25. data/test/dummy/app/assets/javascripts/application.js +1 -0
  26. data/test/dummy/db/schema.rb +5 -0
  27. data/test/dummy/log/development.log +1941 -0
  28. data/test/dummy/log/test.log +25698 -0
  29. data/test/dummy/tmp/cache/assets/D8E/250/sprockets%2Fefe57e932e1d26c3b6af42a5311f0a1c +0 -0
  30. data/test/dummy/tmp/cache/assets/DA7/BA0/sprockets%2F463a9dd811f2418d96fa72cfe05fb8cd +0 -0
  31. data/test/integration/i_wonder/reports_controller_test.rb +3 -3
  32. data/test/unit/i_wonder/event_test.rb +25 -0
  33. data/test/unit/i_wonder/metric_collection_test.rb +53 -29
  34. data/test/unit/i_wonder/metric_creation_test.rb +9 -7
  35. data/test/unit/i_wonder/report_test.rb +9 -9
  36. metadata +22 -23
  37. data/test/dummy/tmp/pids/server.pid +0 -1
@@ -0,0 +1,20 @@
1
+ <%
2
+ options ||= {}
3
+ options[:chart] ||= {}
4
+ options[:chart][:renderTo] = "iw_chart_container";
5
+
6
+ options[:title] ||= { :text => "I wonder "+@report.name }
7
+
8
+ options[:series] = @report.collect_series_data(@start_time, @end_time, @interval_length);
9
+
10
+ options[:credits] = false
11
+
12
+ options[:xAxis] = {}
13
+ options[:xAxis][:dateTimeLabelFormats] ||= { :day => '%b %e', :hour => '%b %e' }
14
+ options[:xAxis][:type] ||= 'datetime'
15
+
16
+ options[:yAxis] = {}
17
+ options[:yAxis][:title] = {}
18
+ options[:yAxis][:title][:text] = nil
19
+ %>
20
+ var chart = new Highcharts.Chart(<%= raw options.to_json %>);
@@ -2,6 +2,10 @@
2
2
  <html>
3
3
  <head>
4
4
  <title>I Wonder</title>
5
+
6
+ <!-- This should get replaced with a locally hosted solution, but I didn't want to fight with the pipeline right now -->
7
+ <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/smoothness/jquery-ui.css" type="text/css" media="all" />
8
+
5
9
  <%= stylesheet_link_tag("i_wonder/application") %>
6
10
  <%= javascript_include_tag("i_wonder/application") %>
7
11
  </head>
@@ -23,6 +23,7 @@ class IWonderMigrations < ActiveRecord::Migration
23
23
  t.string :name
24
24
  t.text :description
25
25
  t.string :report_type # line, pie, test
26
+ t.boolean :pin_to_dashboard
26
27
  t.timestamps
27
28
  end
28
29
 
@@ -45,12 +46,16 @@ class IWonderMigrations < ActiveRecord::Migration
45
46
  t.integer :frequency # -1 means that it calculates on demand
46
47
  t.timestamp :earliest_measurement
47
48
  t.timestamp :last_measurement
49
+
50
+ t.timestamps
48
51
  end
49
52
 
50
53
  create_table :i_wonder_snapshots do |t|
51
54
  t.integer :metric_id
52
55
  t.integer :count
53
56
  t.text :complex_data
57
+ t.timestamp :start_time
58
+ t.timestamp :end_time
54
59
  t.timestamps
55
60
  end
56
61
 
@@ -21,9 +21,9 @@ module IWonder
21
21
  @app_name = "My App"
22
22
  end
23
23
 
24
- def controllers_to_ignore=(controllers)
25
- @new_controllers = [controllers] unless controllers.is_a?(Array)
26
- @controllers = ALWAYS_AVOID_CONTROLLERS + @new_controllers.collect(&:to_s)
24
+ def controllers_to_ignore=(new_controllers)
25
+ new_controllers = [new_controllers] unless new_controllers.is_a?(Array)
26
+ @controllers = ALWAYS_AVOID_CONTROLLERS + new_controllers.collect(&:to_s)
27
27
  @controllers = @controllers.flatten.uniq
28
28
  end
29
29
 
@@ -36,16 +36,16 @@ module IWonder
36
36
  env[ENV_KEY]["new_events"] ||= []
37
37
 
38
38
  if should_log_hit_or_new_visitor?
39
- env[ENV_KEY]["new_events"] << {:event_type => :hit}
39
+ env[ENV_KEY]["new_events"] << {:event_type => "hit"}
40
40
  end
41
41
  end
42
42
 
43
43
  def check_for_new_visitor(env)
44
44
  if cookies(env)[COOKIE_KEY+SESSION_KEY_NAME].blank?
45
- cookies(env).permanent[COOKIE_KEY+SESSION_KEY_NAME] = SecureRandom.hex(10)
45
+ cookies(env).permanent[COOKIE_KEY+SESSION_KEY_NAME] = SecureRandom.hex(10) # this should swithc to something actually unique
46
46
  env[ENV_KEY]["new_events"] ||= []
47
47
  if should_log_hit_or_new_visitor?
48
- env[ENV_KEY]["new_events"] << {:event_type => :new_visitor}
48
+ env[ENV_KEY]["new_events"] << {:event_type => "new_visitor"}
49
49
  end
50
50
  end
51
51
  end
@@ -62,7 +62,8 @@ module IWonder
62
62
  if env[ENV_KEY]["user_id"] # if there is a user
63
63
  if cookies(env)[COOKIE_KEY+NO_USER_KEY].present? # if there wasn't a user last hit
64
64
  if cookies(env)[COOKIE_KEY+SESSION_KEY_NAME].present? # There should always be a session key, but better to check
65
- IWonder::Event.merge_session_to_user(cookies(env)[COOKIE_KEY+SESSION_KEY_NAME], env[ENV_KEY]["user_id"])
65
+ users_original_session_id = IWonder::Event.merge_session_to_user(cookies(env)[COOKIE_KEY+SESSION_KEY_NAME], env[ENV_KEY]["user_id"])
66
+ cookies(env).permanent[COOKIE_KEY+SESSION_KEY_NAME] = users_original_session_id
66
67
  end
67
68
  cookies(env)[COOKIE_KEY+NO_USER_KEY] = nil
68
69
  cookies(env).delete(COOKIE_KEY+NO_USER_KEY)
@@ -1,3 +1,3 @@
1
1
  module IWonder
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -3,6 +3,10 @@ task :cron => ["i_wonder:take_snapshots"]
3
3
  namespace :i_wonder do
4
4
  desc "Checks and runs any IWonder::Metrics which are overdue for a snapshot (hooks onto 'rake cron')"
5
5
  task :take_snapshots => :environment do
6
+
7
+ original_timezone = Time.zone
8
+ Time.zone = "UTC" # this should get set in a config
6
9
  IWonder::Metric.take_snapshots
10
+ Time.zone = original_timezone
7
11
  end
8
12
  end
@@ -5,5 +5,6 @@
5
5
  // the compiled file.
6
6
  //
7
7
  //= require jquery
8
+ //= require jquery-ui
8
9
  //= require jquery_ujs
9
10
  //= require_tree .
@@ -62,6 +62,8 @@ ActiveRecord::Schema.define(:version => 20111023231947) do
62
62
  t.integer "frequency"
63
63
  t.datetime "earliest_measurement"
64
64
  t.datetime "last_measurement"
65
+ t.datetime "created_at"
66
+ t.datetime "updated_at"
65
67
  end
66
68
 
67
69
  create_table "i_wonder_report_memberships", :force => true do |t|
@@ -76,6 +78,7 @@ ActiveRecord::Schema.define(:version => 20111023231947) do
76
78
  t.string "name"
77
79
  t.text "description"
78
80
  t.string "report_type"
81
+ t.boolean "pin_to_dashboard"
79
82
  t.datetime "created_at"
80
83
  t.datetime "updated_at"
81
84
  end
@@ -84,6 +87,8 @@ ActiveRecord::Schema.define(:version => 20111023231947) do
84
87
  t.integer "metric_id"
85
88
  t.integer "count"
86
89
  t.text "complex_data"
90
+ t.datetime "start_time"
91
+ t.datetime "end_time"
87
92
  t.datetime "created_at"
88
93
  t.datetime "updated_at"
89
94
  end
@@ -48140,3 +48140,1944 @@ Served asset /highcharts.js - 304 Not Modified (0ms)
48140
48140
 
48141
48141
  Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-24 23:39:48 -0700
48142
48142
  Served asset /i_wonder/application.js - 304 Not Modified (30ms)
48143
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) 
48144
+  (0.2ms) SHOW search_path
48145
+  (3.3ms)  SELECT distinct i.relname, d.indisunique, d.indkey, t.oid
48146
+ FROM pg_class t
48147
+ INNER JOIN pg_index d ON t.oid = d.indrelid
48148
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
48149
+ WHERE i.relkind = 'i'
48150
+ AND d.indisprimary = 'f'
48151
+ AND t.relname = 'schema_migrations'
48152
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname IN ('"$user"','public') )
48153
+ ORDER BY i.relname
48154
+ 
48155
+  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
48156
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
48157
+ Migrating to IWonderMigrations (20111022230720)
48158
+  (0.1ms) BEGIN
48159
+  (5.3ms) CREATE TABLE "i_wonder_events" ("id" serial primary key, "event_type" character varying(255), "account_id" integer, "user_id" integer, "session_id" character varying(255), "controller" character varying(255), "action" character varying(255), "remote_ip" character varying(255), "user_agent" character varying(255), "referrer" character varying(255), "extra_details" text, "created_at" timestamp, "updated_at" timestamp) 
48160
+  (1.2ms) SELECT distinct i.relname, d.indisunique, d.indkey, t.oid
48161
+ FROM pg_class t
48162
+ INNER JOIN pg_index d ON t.oid = d.indrelid
48163
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
48164
+ WHERE i.relkind = 'i'
48165
+ AND d.indisprimary = 'f'
48166
+ AND t.relname = 'i_wonder_events'
48167
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname IN ('"$user"','public') )
48168
+ ORDER BY i.relname
48169
+  (0.8ms) CREATE INDEX "index_i_wonder_events_on_event_type" ON "i_wonder_events" ("event_type")
48170
+  (1.2ms) SELECT distinct i.relname, d.indisunique, d.indkey, t.oid
48171
+ FROM pg_class t
48172
+ INNER JOIN pg_index d ON t.oid = d.indrelid
48173
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
48174
+ WHERE i.relkind = 'i'
48175
+ AND d.indisprimary = 'f'
48176
+ AND t.relname = 'i_wonder_events'
48177
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname IN ('"$user"','public') )
48178
+ ORDER BY i.relname
48179
+ Columns for index index_i_wonder_events_on_event_type on i_wonder_events (0.4ms)  SELECT a.attnum, a.attname
48180
+ FROM pg_attribute a
48181
+ WHERE a.attrelid = 23912
48182
+ AND a.attnum IN (2)
48183
+ 
48184
+  (0.8ms) CREATE INDEX "index_i_wonder_events_on_account_id" ON "i_wonder_events" ("account_id")
48185
+  (1.2ms)  SELECT distinct i.relname, d.indisunique, d.indkey, t.oid
48186
+ FROM pg_class t
48187
+ INNER JOIN pg_index d ON t.oid = d.indrelid
48188
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
48189
+ WHERE i.relkind = 'i'
48190
+ AND d.indisprimary = 'f'
48191
+ AND t.relname = 'i_wonder_events'
48192
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname IN ('"$user"','public') )
48193
+ ORDER BY i.relname
48194
+ 
48195
+ Columns for index index_i_wonder_events_on_account_id on i_wonder_events (0.3ms) SELECT a.attnum, a.attname
48196
+ FROM pg_attribute a
48197
+ WHERE a.attrelid = 23912
48198
+ AND a.attnum IN (3)
48199
+ Columns for index index_i_wonder_events_on_event_type on i_wonder_events (0.3ms)  SELECT a.attnum, a.attname
48200
+ FROM pg_attribute a
48201
+ WHERE a.attrelid = 23912
48202
+ AND a.attnum IN (2)
48203
+ 
48204
+  (0.8ms) CREATE INDEX "index_i_wonder_events_on_user_id" ON "i_wonder_events" ("user_id")
48205
+  (1.3ms)  SELECT distinct i.relname, d.indisunique, d.indkey, t.oid
48206
+ FROM pg_class t
48207
+ INNER JOIN pg_index d ON t.oid = d.indrelid
48208
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
48209
+ WHERE i.relkind = 'i'
48210
+ AND d.indisprimary = 'f'
48211
+ AND t.relname = 'i_wonder_events'
48212
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname IN ('"$user"','public') )
48213
+ ORDER BY i.relname
48214
+ 
48215
+ Columns for index index_i_wonder_events_on_account_id on i_wonder_events (0.3ms) SELECT a.attnum, a.attname
48216
+ FROM pg_attribute a
48217
+ WHERE a.attrelid = 23912
48218
+ AND a.attnum IN (3)
48219
+ Columns for index index_i_wonder_events_on_event_type on i_wonder_events (0.3ms)  SELECT a.attnum, a.attname
48220
+ FROM pg_attribute a
48221
+ WHERE a.attrelid = 23912
48222
+ AND a.attnum IN (2)
48223
+ 
48224
+ Columns for index index_i_wonder_events_on_user_id on i_wonder_events (0.3ms) SELECT a.attnum, a.attname
48225
+ FROM pg_attribute a
48226
+ WHERE a.attrelid = 23912
48227
+ AND a.attnum IN (4)
48228
+  (0.8ms) CREATE INDEX "index_i_wonder_events_on_session_id" ON "i_wonder_events" ("session_id")
48229
+  (3.9ms) CREATE TABLE "i_wonder_reports" ("id" serial primary key, "name" character varying(255), "description" text, "report_type" character varying(255), "created_at" timestamp, "updated_at" timestamp)
48230
+  (2.5ms) CREATE TABLE "i_wonder_report_memberships" ("id" serial primary key, "report_id" integer, "metric_id" integer) 
48231
+  (1.7ms) SELECT distinct i.relname, d.indisunique, d.indkey, t.oid
48232
+ FROM pg_class t
48233
+ INNER JOIN pg_index d ON t.oid = d.indrelid
48234
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
48235
+ WHERE i.relkind = 'i'
48236
+ AND d.indisprimary = 'f'
48237
+ AND t.relname = 'i_wonder_report_memberships'
48238
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname IN ('"$user"','public') )
48239
+ ORDER BY i.relname
48240
+  (1.0ms) CREATE INDEX "index_i_wonder_report_memberships_on_report_id" ON "i_wonder_report_memberships" ("report_id")
48241
+  (1.1ms) SELECT distinct i.relname, d.indisunique, d.indkey, t.oid
48242
+ FROM pg_class t
48243
+ INNER JOIN pg_index d ON t.oid = d.indrelid
48244
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
48245
+ WHERE i.relkind = 'i'
48246
+ AND d.indisprimary = 'f'
48247
+ AND t.relname = 'i_wonder_report_memberships'
48248
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname IN ('"$user"','public') )
48249
+ ORDER BY i.relname
48250
+ Columns for index index_i_wonder_report_memberships_on_report_id on i_wonder_report_memberships (0.3ms)  SELECT a.attnum, a.attname
48251
+ FROM pg_attribute a
48252
+ WHERE a.attrelid = 23938
48253
+ AND a.attnum IN (2)
48254
+ 
48255
+  (0.8ms) CREATE INDEX "index_i_wonder_report_memberships_on_metric_id" ON "i_wonder_report_memberships" ("metric_id")
48256
+  (4.4ms) CREATE TABLE "i_wonder_metrics" ("id" serial primary key, "name" character varying(255), "options" text, "collection_method" text, "archived" boolean, "frequency" integer, "earliest_measurement" timestamp, "last_measurement" timestamp) 
48257
+  (5.5ms) CREATE TABLE "i_wonder_snapshots" ("id" serial primary key, "metric_id" integer, "count" integer, "complex_data" text, "start_time" timestamp, "end_time" timestamp, "created_at" timestamp, "updated_at" timestamp)
48258
+  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111022230720')
48259
+  (0.8ms) COMMIT
48260
+ Migrating to CreateDelayedJobs (20111023024745)
48261
+  (0.5ms) BEGIN
48262
+  (4.7ms) CREATE TABLE "delayed_jobs" ("id" serial primary key, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" timestamp, "locked_at" timestamp, "failed_at" timestamp, "locked_by" character varying(255), "created_at" timestamp, "updated_at" timestamp)
48263
+  (1.2ms)  SELECT distinct i.relname, d.indisunique, d.indkey, t.oid
48264
+ FROM pg_class t
48265
+ INNER JOIN pg_index d ON t.oid = d.indrelid
48266
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
48267
+ WHERE i.relkind = 'i'
48268
+ AND d.indisprimary = 'f'
48269
+ AND t.relname = 'delayed_jobs'
48270
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname IN ('"$user"','public') )
48271
+ ORDER BY i.relname
48272
+ 
48273
+  (1.1ms) CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
48274
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111023024745')
48275
+  (0.5ms) COMMIT
48276
+ Migrating to CreateAccounts (20111023231947)
48277
+  (0.2ms) BEGIN
48278
+  (2.7ms) CREATE TABLE "accounts" ("id" serial primary key, "active" boolean, "created_at" timestamp, "updated_at" timestamp)
48279
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111023231947')
48280
+  (0.4ms) COMMIT
48281
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
48282
+  (0.2ms) SHOW search_path
48283
+  (2.1ms)  SELECT distinct i.relname, d.indisunique, d.indkey, t.oid
48284
+ FROM pg_class t
48285
+ INNER JOIN pg_index d ON t.oid = d.indrelid
48286
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
48287
+ WHERE i.relkind = 'i'
48288
+ AND d.indisprimary = 'f'
48289
+ AND t.relname = 'accounts'
48290
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname IN ('"$user"','public') )
48291
+ ORDER BY i.relname
48292
+ 
48293
+  (1.2ms) SELECT distinct i.relname, d.indisunique, d.indkey, t.oid
48294
+ FROM pg_class t
48295
+ INNER JOIN pg_index d ON t.oid = d.indrelid
48296
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
48297
+ WHERE i.relkind = 'i'
48298
+ AND d.indisprimary = 'f'
48299
+ AND t.relname = 'delayed_jobs'
48300
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname IN ('"$user"','public') )
48301
+ ORDER BY i.relname
48302
+ Columns for index delayed_jobs_priority on delayed_jobs (0.5ms)  SELECT a.attnum, a.attname
48303
+ FROM pg_attribute a
48304
+ WHERE a.attrelid = 23970
48305
+ AND a.attnum IN (2,6)
48306
+ 
48307
+  (1.2ms) SELECT distinct i.relname, d.indisunique, d.indkey, t.oid
48308
+ FROM pg_class t
48309
+ INNER JOIN pg_index d ON t.oid = d.indrelid
48310
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
48311
+ WHERE i.relkind = 'i'
48312
+ AND d.indisprimary = 'f'
48313
+ AND t.relname = 'i_wonder_events'
48314
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname IN ('"$user"','public') )
48315
+ ORDER BY i.relname
48316
+ Columns for index index_i_wonder_events_on_account_id on i_wonder_events (0.3ms)  SELECT a.attnum, a.attname
48317
+ FROM pg_attribute a
48318
+ WHERE a.attrelid = 23912
48319
+ AND a.attnum IN (3)
48320
+ 
48321
+ Columns for index index_i_wonder_events_on_event_type on i_wonder_events (0.3ms) SELECT a.attnum, a.attname
48322
+ FROM pg_attribute a
48323
+ WHERE a.attrelid = 23912
48324
+ AND a.attnum IN (2)
48325
+ Columns for index index_i_wonder_events_on_session_id on i_wonder_events (0.2ms)  SELECT a.attnum, a.attname
48326
+ FROM pg_attribute a
48327
+ WHERE a.attrelid = 23912
48328
+ AND a.attnum IN (5)
48329
+ 
48330
+ Columns for index index_i_wonder_events_on_user_id on i_wonder_events (0.2ms) SELECT a.attnum, a.attname
48331
+ FROM pg_attribute a
48332
+ WHERE a.attrelid = 23912
48333
+ AND a.attnum IN (4)
48334
+  (1.2ms)  SELECT distinct i.relname, d.indisunique, d.indkey, t.oid
48335
+ FROM pg_class t
48336
+ INNER JOIN pg_index d ON t.oid = d.indrelid
48337
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
48338
+ WHERE i.relkind = 'i'
48339
+ AND d.indisprimary = 'f'
48340
+ AND t.relname = 'i_wonder_metrics'
48341
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname IN ('"$user"','public') )
48342
+ ORDER BY i.relname
48343
+ 
48344
+  (1.2ms) SELECT distinct i.relname, d.indisunique, d.indkey, t.oid
48345
+ FROM pg_class t
48346
+ INNER JOIN pg_index d ON t.oid = d.indrelid
48347
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
48348
+ WHERE i.relkind = 'i'
48349
+ AND d.indisprimary = 'f'
48350
+ AND t.relname = 'i_wonder_report_memberships'
48351
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname IN ('"$user"','public') )
48352
+ ORDER BY i.relname
48353
+ Columns for index index_i_wonder_report_memberships_on_metric_id on i_wonder_report_memberships (0.3ms)  SELECT a.attnum, a.attname
48354
+ FROM pg_attribute a
48355
+ WHERE a.attrelid = 23938
48356
+ AND a.attnum IN (3)
48357
+ 
48358
+ Columns for index index_i_wonder_report_memberships_on_report_id on i_wonder_report_memberships (0.2ms) SELECT a.attnum, a.attname
48359
+ FROM pg_attribute a
48360
+ WHERE a.attrelid = 23938
48361
+ AND a.attnum IN (2)
48362
+  (1.1ms)  SELECT distinct i.relname, d.indisunique, d.indkey, t.oid
48363
+ FROM pg_class t
48364
+ INNER JOIN pg_index d ON t.oid = d.indrelid
48365
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
48366
+ WHERE i.relkind = 'i'
48367
+ AND d.indisprimary = 'f'
48368
+ AND t.relname = 'i_wonder_reports'
48369
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname IN ('"$user"','public') )
48370
+ ORDER BY i.relname
48371
+ 
48372
+  (1.1ms) SELECT distinct i.relname, d.indisunique, d.indkey, t.oid
48373
+ FROM pg_class t
48374
+ INNER JOIN pg_index d ON t.oid = d.indrelid
48375
+ INNER JOIN pg_class i ON d.indexrelid = i.oid
48376
+ WHERE i.relkind = 'i'
48377
+ AND d.indisprimary = 'f'
48378
+ AND t.relname = 'i_wonder_snapshots'
48379
+ AND i.relnamespace IN (SELECT oid FROM pg_namespace WHERE nspname IN ('"$user"','public') )
48380
+ ORDER BY i.relname
48381
+
48382
+
48383
+ Started GET "/" for 127.0.0.1 at 2011-10-25 10:15:04 -0700
48384
+ Processing by TestController#landing as HTML
48385
+ Rendered test/landing.html.erb within layouts/application (32.2ms)
48386
+ Completed 200 OK in 71ms (Views: 71.0ms | ActiveRecord: 0.0ms)
48387
+  (0.2ms) BEGIN
48388
+  (8.9ms) INSERT INTO i_wonder_events (event_type, account_id, user_id, session_id, controller, action, extra_details, remote_ip, user_agent, referrer, created_at, updated_at) values ('hit', 3, 2, '23fcd8b5c48171ca468c', 'test', 'landing', NULL, '127.0.0.1', NULL, NULL, '2011-10-25 17:15:04.221572', '2011-10-25 17:15:04.221594')
48389
+  (0.3ms) COMMIT
48390
+
48391
+
48392
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:04 -0700
48393
+ Served asset /application.css - 304 Not Modified (0ms)
48394
+
48395
+
48396
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:04 -0700
48397
+ Served asset /jquery.js - 304 Not Modified (2ms)
48398
+
48399
+
48400
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:04 -0700
48401
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
48402
+
48403
+
48404
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:04 -0700
48405
+ Served asset /highcharts.js - 304 Not Modified (1ms)
48406
+
48407
+
48408
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:04 -0700
48409
+ Served asset /application.js - 304 Not Modified (0ms)
48410
+
48411
+
48412
+ Started GET "/i_wonder/" for 127.0.0.1 at 2011-10-25 10:15:07 -0700
48413
+ Processing by IWonder::DashboardController#landing as HTML
48414
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/dashboard/landing.html.erb within layouts/i_wonder (0.3ms)
48415
+ Completed 200 OK in 46ms (Views: 45.6ms | ActiveRecord: 0.0ms)
48416
+
48417
+
48418
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:07 -0700
48419
+ Served asset /i_wonder/application.css - 304 Not Modified (2ms)
48420
+
48421
+
48422
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:07 -0700
48423
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (2ms)
48424
+
48425
+
48426
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:07 -0700
48427
+ Served asset /i_wonder/reports.css - 304 Not Modified (4ms)
48428
+
48429
+
48430
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:07 -0700
48431
+ Served asset /i_wonder/events.css - 304 Not Modified (3ms)
48432
+
48433
+
48434
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:07 -0700
48435
+ Served asset /i_wonder/metrics.css - 304 Not Modified (3ms)
48436
+
48437
+
48438
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:07 -0700
48439
+ Served asset /jquery.js - 304 Not Modified (0ms)
48440
+
48441
+
48442
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:07 -0700
48443
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
48444
+
48445
+
48446
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:07 -0700
48447
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (3ms)
48448
+
48449
+
48450
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:07 -0700
48451
+ Served asset /i_wonder/events.js - 304 Not Modified (2ms)
48452
+
48453
+
48454
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:07 -0700
48455
+ Served asset /i_wonder/metrics.js - 304 Not Modified (28ms)
48456
+
48457
+
48458
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:07 -0700
48459
+ Served asset /i_wonder/reports.js - 304 Not Modified (2ms)
48460
+
48461
+
48462
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:07 -0700
48463
+ Served asset /highcharts.js - 304 Not Modified (0ms)
48464
+
48465
+
48466
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:07 -0700
48467
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
48468
+
48469
+
48470
+ Started GET "/i_wonder/reports" for 127.0.0.1 at 2011-10-25 10:15:09 -0700
48471
+ Processing by IWonder::ReportsController#index as HTML
48472
+ IWonder::Report Load (0.5ms) SELECT "i_wonder_reports".* FROM "i_wonder_reports"
48473
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/reports/index.html.erb within layouts/i_wonder (1.1ms)
48474
+ Completed 200 OK in 12ms (Views: 10.4ms | ActiveRecord: 0.5ms)
48475
+
48476
+
48477
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:09 -0700
48478
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
48479
+
48480
+
48481
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:09 -0700
48482
+ Served asset /i_wonder/application.css - 304 Not Modified (0ms)
48483
+
48484
+
48485
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:09 -0700
48486
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
48487
+
48488
+
48489
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:09 -0700
48490
+ Served asset /i_wonder/reports.css - 304 Not Modified (1ms)
48491
+
48492
+
48493
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:09 -0700
48494
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
48495
+
48496
+
48497
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:09 -0700
48498
+ Served asset /jquery.js - 304 Not Modified (0ms)
48499
+
48500
+
48501
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:09 -0700
48502
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
48503
+
48504
+
48505
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:09 -0700
48506
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
48507
+
48508
+
48509
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:09 -0700
48510
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
48511
+
48512
+
48513
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:09 -0700
48514
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
48515
+
48516
+
48517
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:09 -0700
48518
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
48519
+
48520
+
48521
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:09 -0700
48522
+ Served asset /highcharts.js - 304 Not Modified (0ms)
48523
+
48524
+
48525
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:09 -0700
48526
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
48527
+
48528
+
48529
+ Started GET "/i_wonder/metrics" for 127.0.0.1 at 2011-10-25 10:15:12 -0700
48530
+ Processing by IWonder::MetricsController#index as HTML
48531
+ IWonder::Metric Load (0.5ms) SELECT "i_wonder_metrics".* FROM "i_wonder_metrics" 
48532
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/index.html.erb within layouts/i_wonder (1.1ms)
48533
+ Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.5ms)
48534
+
48535
+
48536
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:12 -0700
48537
+ Served asset /i_wonder/application.css - 304 Not Modified (2ms)
48538
+
48539
+
48540
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:12 -0700
48541
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
48542
+
48543
+
48544
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:12 -0700
48545
+ Served asset /i_wonder/reports.css - 304 Not Modified (1ms)
48546
+
48547
+
48548
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:12 -0700
48549
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
48550
+
48551
+
48552
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:12 -0700
48553
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
48554
+
48555
+
48556
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:12 -0700
48557
+ Served asset /jquery.js - 304 Not Modified (0ms)
48558
+
48559
+
48560
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:12 -0700
48561
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
48562
+
48563
+
48564
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:12 -0700
48565
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
48566
+
48567
+
48568
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:12 -0700
48569
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
48570
+
48571
+
48572
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:12 -0700
48573
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
48574
+
48575
+
48576
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:12 -0700
48577
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
48578
+
48579
+
48580
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:12 -0700
48581
+ Served asset /highcharts.js - 304 Not Modified (0ms)
48582
+
48583
+
48584
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:12 -0700
48585
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
48586
+
48587
+
48588
+ Started GET "/i_wonder/reports" for 127.0.0.1 at 2011-10-25 10:15:13 -0700
48589
+ Processing by IWonder::ReportsController#index as HTML
48590
+ IWonder::Report Load (0.2ms) SELECT "i_wonder_reports".* FROM "i_wonder_reports"
48591
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/reports/index.html.erb within layouts/i_wonder (0.6ms)
48592
+ Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 1.0ms)
48593
+
48594
+
48595
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:13 -0700
48596
+ Served asset /i_wonder/application.css - 304 Not Modified (2ms)
48597
+
48598
+
48599
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:13 -0700
48600
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
48601
+
48602
+
48603
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:13 -0700
48604
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
48605
+
48606
+
48607
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:13 -0700
48608
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
48609
+
48610
+
48611
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:13 -0700
48612
+ Served asset /jquery.js - 304 Not Modified (0ms)
48613
+
48614
+
48615
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:13 -0700
48616
+ Served asset /i_wonder/reports.css - 304 Not Modified (1ms)
48617
+
48618
+
48619
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:13 -0700
48620
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
48621
+
48622
+
48623
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:13 -0700
48624
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
48625
+
48626
+
48627
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:13 -0700
48628
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
48629
+
48630
+
48631
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:13 -0700
48632
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
48633
+
48634
+
48635
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:13 -0700
48636
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
48637
+
48638
+
48639
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:13 -0700
48640
+ Served asset /highcharts.js - 304 Not Modified (0ms)
48641
+
48642
+
48643
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:13 -0700
48644
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
48645
+
48646
+
48647
+ Started GET "/i_wonder/metrics" for 127.0.0.1 at 2011-10-25 10:15:19 -0700
48648
+ Processing by IWonder::MetricsController#index as HTML
48649
+ IWonder::Metric Load (0.2ms) SELECT "i_wonder_metrics".* FROM "i_wonder_metrics" 
48650
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/index.html.erb within layouts/i_wonder (0.5ms)
48651
+ Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 1.0ms)
48652
+
48653
+
48654
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:19 -0700
48655
+ Served asset /i_wonder/application.css - 304 Not Modified (7ms)
48656
+
48657
+
48658
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:19 -0700
48659
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
48660
+
48661
+
48662
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:19 -0700
48663
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
48664
+
48665
+
48666
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:19 -0700
48667
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
48668
+
48669
+
48670
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:19 -0700
48671
+ Served asset /i_wonder/reports.css - 304 Not Modified (0ms)
48672
+
48673
+
48674
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:19 -0700
48675
+ Served asset /jquery.js - 304 Not Modified (0ms)
48676
+
48677
+
48678
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:19 -0700
48679
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
48680
+
48681
+
48682
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:19 -0700
48683
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
48684
+
48685
+
48686
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:19 -0700
48687
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
48688
+
48689
+
48690
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:19 -0700
48691
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
48692
+
48693
+
48694
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:19 -0700
48695
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
48696
+
48697
+
48698
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:19 -0700
48699
+ Served asset /highcharts.js - 304 Not Modified (0ms)
48700
+
48701
+
48702
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:19 -0700
48703
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
48704
+
48705
+
48706
+ Started GET "/i_wonder/metrics/new" for 127.0.0.1 at 2011-10-25 10:15:20 -0700
48707
+ Processing by IWonder::MetricsController#new as HTML
48708
+ IWonder::Event Load (1.8ms) SELECT event_type, COUNT(event_type) as count, MAX(created_at) as most_recent FROM "i_wonder_events" GROUP BY event_type ORDER BY most_recent DESC
48709
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_event_counter.html.erb (48.2ms)
48710
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_model_counter.html.erb (18.1ms)
48711
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_form.html.erb (81.1ms)
48712
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/new.html.erb within layouts/i_wonder (110.6ms)
48713
+ Completed 500 Internal Server Error in 114ms
48714
+
48715
+ ActionView::Template::Error (undefined method `back_date_snapshots' for #<IWonder::Metric:0x000001023f0b30>):
48716
+ 26: </div>
48717
+ 27:
48718
+ 28: <div class="field">
48719
+ 29: <%= f.check_box :back_date_snapshots%>
48720
+ 30: <%= f.label :back_date_snapshots, "Try and guess values for the last 30 snapshots?" %>
48721
+ 31: </div>
48722
+ 32:
48723
+
48724
+
48725
+ Rendered /Users/forrest/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
48726
+ Rendered /Users/forrest/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
48727
+ Rendered /Users/forrest/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.3ms)
48728
+
48729
+
48730
+ Started GET "/i_wonder/metrics/new" for 127.0.0.1 at 2011-10-25 10:15:39 -0700
48731
+ Processing by IWonder::MetricsController#new as HTML
48732
+ IWonder::Event Load (0.3ms) SELECT event_type, COUNT(event_type) as count, MAX(created_at) as most_recent FROM "i_wonder_events" GROUP BY event_type ORDER BY most_recent DESC
48733
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_event_counter.html.erb (41.5ms)
48734
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_model_counter.html.erb (1.5ms)
48735
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_custom.html.erb (2.0ms)
48736
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_form.html.erb (58.5ms)
48737
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/new.html.erb within layouts/i_wonder (59.4ms)
48738
+ Completed 200 OK in 69ms (Views: 63.2ms | ActiveRecord: 5.5ms)
48739
+
48740
+
48741
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:39 -0700
48742
+ Served asset /i_wonder/application.css - 304 Not Modified (0ms)
48743
+
48744
+
48745
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:39 -0700
48746
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
48747
+
48748
+
48749
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:39 -0700
48750
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
48751
+
48752
+
48753
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:39 -0700
48754
+ Served asset /i_wonder/reports.css - 304 Not Modified (0ms)
48755
+
48756
+
48757
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:39 -0700
48758
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
48759
+
48760
+
48761
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:39 -0700
48762
+ Served asset /jquery.js - 304 Not Modified (0ms)
48763
+
48764
+
48765
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:39 -0700
48766
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
48767
+
48768
+
48769
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:39 -0700
48770
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
48771
+
48772
+
48773
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:39 -0700
48774
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
48775
+
48776
+
48777
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:39 -0700
48778
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
48779
+
48780
+
48781
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:39 -0700
48782
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
48783
+
48784
+
48785
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:39 -0700
48786
+ Served asset /highcharts.js - 304 Not Modified (0ms)
48787
+
48788
+
48789
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:39 -0700
48790
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
48791
+
48792
+
48793
+ Started POST "/i_wonder/metrics" for 127.0.0.1 at 2011-10-25 10:15:57 -0700
48794
+ Processing by IWonder::MetricsController#create as HTML
48795
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"uXZCnR+gUV7kIEVVy+fXI0wNA89w8CfeNb53daiS4nA=", "metric"=>{"name"=>"Metric", "collection_type"=>"model_counter", "model_counter_method"=>"Creation Rate", "model_counter_class"=>"Metric", "model_counter_scopes"=>"", "takes_snapshots"=>"1", "frequency"=>"3600", "back_date_snapshots"=>"1"}, "commit"=>"Create Metric"}
48796
+  (0.2ms) BEGIN
48797
+  (0.1ms) ROLLBACK
48798
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_model_counter.html.erb (1.5ms)
48799
+ IWonder::Event Load (0.4ms) SELECT event_type, COUNT(event_type) as count, MAX(created_at) as most_recent FROM "i_wonder_events" GROUP BY event_type ORDER BY most_recent DESC
48800
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_event_counter.html.erb (17.1ms)
48801
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_custom.html.erb (1.5ms)
48802
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_form.html.erb (25.7ms)
48803
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/new.html.erb within layouts/i_wonder (26.7ms)
48804
+ Completed 200 OK in 46ms (Views: 32.2ms | ActiveRecord: 6.1ms)
48805
+
48806
+
48807
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:57 -0700
48808
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
48809
+
48810
+
48811
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:57 -0700
48812
+ Served asset /i_wonder/application.css - 304 Not Modified (2ms)
48813
+
48814
+
48815
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:57 -0700
48816
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
48817
+
48818
+
48819
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:57 -0700
48820
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
48821
+
48822
+
48823
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:15:57 -0700
48824
+ Served asset /i_wonder/reports.css - 304 Not Modified (0ms)
48825
+
48826
+
48827
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:57 -0700
48828
+ Served asset /jquery.js - 304 Not Modified (0ms)
48829
+
48830
+
48831
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:57 -0700
48832
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
48833
+
48834
+
48835
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:57 -0700
48836
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
48837
+
48838
+
48839
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:57 -0700
48840
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
48841
+
48842
+
48843
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:57 -0700
48844
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
48845
+
48846
+
48847
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:57 -0700
48848
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
48849
+
48850
+
48851
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:57 -0700
48852
+ Served asset /highcharts.js - 304 Not Modified (0ms)
48853
+
48854
+
48855
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:15:57 -0700
48856
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
48857
+
48858
+
48859
+ Started POST "/i_wonder/metrics" for 127.0.0.1 at 2011-10-25 10:16:03 -0700
48860
+ Processing by IWonder::MetricsController#create as HTML
48861
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"uXZCnR+gUV7kIEVVy+fXI0wNA89w8CfeNb53daiS4nA=", "metric"=>{"name"=>"Metric", "collection_type"=>"model_counter", "model_counter_method"=>"Creation Rate", "model_counter_class"=>"IWonder::Metric", "model_counter_scopes"=>"", "takes_snapshots"=>"1", "frequency"=>"3600", "back_date_snapshots"=>"1"}, "commit"=>"Create Metric"}
48862
+  (0.1ms) BEGIN
48863
+ SQL (2.4ms) INSERT INTO "i_wonder_metrics" ("archived", "collection_method", "earliest_measurement", "frequency", "last_measurement", "name", "options") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["archived", nil], ["collection_method", "IWonder::Metric.where(\"created_at >= ? AND created_at < ?\", start_time, end_time).count"], ["earliest_measurement", nil], ["frequency", 3600], ["last_measurement", nil], ["name", "Metric"], ["options", "--- \n:collection_type: model_counter\n:model_counter_method: Creation Rate\n:model_counter_class: IWonder::Metric\n:model_counter_scopes: \"\"\n:takes_snapshots: true\n"]]
48864
+  (0.5ms) SELECT COUNT(*) FROM "i_wonder_metrics" WHERE (created_at >= '2011-10-24 11:16:04.845594' AND created_at < '2011-10-24 12:16:03.845594')
48865
+ PGError: ERROR: column "created_at" does not exist
48866
+ LINE 1: SELECT COUNT(*) FROM "i_wonder_metrics" WHERE (created_at >...
48867
+ ^
48868
+ : SELECT COUNT(*) FROM "i_wonder_metrics" WHERE (created_at >= '2011-10-24 11:16:04.845594' AND created_at < '2011-10-24 12:16:03.845594')
48869
+  (0.1ms) ROLLBACK
48870
+ Completed 500 Internal Server Error in 40ms
48871
+
48872
+ ActiveRecord::StatementInvalid (PGError: ERROR: column "created_at" does not exist
48873
+ LINE 1: SELECT COUNT(*) FROM "i_wonder_metrics" WHERE (created_at >...
48874
+ ^
48875
+ : SELECT COUNT(*) FROM "i_wonder_metrics" WHERE (created_at >= '2011-10-24 11:16:04.845594' AND created_at < '2011-10-24 12:16:03.845594')):
48876
+
48877
+
48878
+ Rendered /Users/forrest/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
48879
+ Rendered /Users/forrest/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
48880
+ Rendered /Users/forrest/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (3.7ms)
48881
+
48882
+
48883
+ Started POST "/i_wonder/metrics" for 127.0.0.1 at 2011-10-25 10:18:23 -0700
48884
+ Processing by IWonder::MetricsController#create as HTML
48885
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"uXZCnR+gUV7kIEVVy+fXI0wNA89w8CfeNb53daiS4nA=", "metric"=>{"name"=>"Metric", "collection_type"=>"model_counter", "model_counter_method"=>"Creation Rate", "model_counter_class"=>"IWonder::Metric", "model_counter_scopes"=>"", "takes_snapshots"=>"1", "frequency"=>"3600", "back_date_snapshots"=>"1"}, "commit"=>"Create Metric"}
48886
+  (0.1ms) BEGIN
48887
+ SQL (0.3ms) INSERT INTO "i_wonder_metrics" ("archived", "collection_method", "earliest_measurement", "frequency", "last_measurement", "name", "options") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["archived", nil], ["collection_method", "IWonder::Metric.where(\"created_at >= ? AND created_at < ?\", start_time, end_time).count"], ["earliest_measurement", nil], ["frequency", 3600], ["last_measurement", nil], ["name", "Metric"], ["options", "--- \n:collection_type: model_counter\n:model_counter_method: Creation Rate\n:model_counter_class: IWonder::Metric\n:model_counter_scopes: \"\"\n:takes_snapshots: true\n"]]
48888
+  (0.4ms) SELECT COUNT(*) FROM "i_wonder_metrics" WHERE (created_at >= '2011-10-24 11:18:24.153714' AND created_at < '2011-10-24 12:18:23.153714')
48889
+ PGError: ERROR: column "created_at" does not exist
48890
+ LINE 1: SELECT COUNT(*) FROM "i_wonder_metrics" WHERE (created_at >...
48891
+ ^
48892
+ : SELECT COUNT(*) FROM "i_wonder_metrics" WHERE (created_at >= '2011-10-24 11:18:24.153714' AND created_at < '2011-10-24 12:18:23.153714')
48893
+  (0.1ms) ROLLBACK
48894
+ Completed 500 Internal Server Error in 38ms
48895
+
48896
+ ActiveRecord::StatementInvalid (PGError: ERROR: column "created_at" does not exist
48897
+ LINE 1: SELECT COUNT(*) FROM "i_wonder_metrics" WHERE (created_at >...
48898
+ ^
48899
+ : SELECT COUNT(*) FROM "i_wonder_metrics" WHERE (created_at >= '2011-10-24 11:18:24.153714' AND created_at < '2011-10-24 12:18:23.153714')):
48900
+
48901
+
48902
+ Rendered /Users/forrest/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
48903
+ Rendered /Users/forrest/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
48904
+ Rendered /Users/forrest/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (3.5ms)
48905
+
48906
+
48907
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:18:27 -0700
48908
+ Served asset /i_wonder/application.css - 304 Not Modified (0ms)
48909
+
48910
+
48911
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:18:27 -0700
48912
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
48913
+
48914
+
48915
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:18:27 -0700
48916
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
48917
+
48918
+
48919
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:18:27 -0700
48920
+ Served asset /i_wonder/reports.css - 304 Not Modified (1ms)
48921
+
48922
+
48923
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:27 -0700
48924
+ Served asset /jquery.js - 304 Not Modified (0ms)
48925
+
48926
+
48927
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:18:27 -0700
48928
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
48929
+
48930
+
48931
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:27 -0700
48932
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
48933
+
48934
+
48935
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:27 -0700
48936
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
48937
+
48938
+
48939
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:27 -0700
48940
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
48941
+
48942
+
48943
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:27 -0700
48944
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
48945
+
48946
+
48947
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:27 -0700
48948
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
48949
+
48950
+
48951
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:27 -0700
48952
+ Served asset /highcharts.js - 304 Not Modified (0ms)
48953
+
48954
+
48955
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:27 -0700
48956
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
48957
+
48958
+
48959
+ Started POST "/i_wonder/metrics" for 127.0.0.1 at 2011-10-25 10:18:32 -0700
48960
+ Processing by IWonder::MetricsController#create as HTML
48961
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"uXZCnR+gUV7kIEVVy+fXI0wNA89w8CfeNb53daiS4nA=", "metric"=>{"name"=>"Metric", "collection_type"=>"model_counter", "model_counter_method"=>"Creation Rate", "model_counter_class"=>"IWonder::Metric", "model_counter_scopes"=>"", "takes_snapshots"=>"1", "frequency"=>"3600", "back_date_snapshots"=>"1"}, "commit"=>"Create Metric"}
48962
+  (0.1ms) BEGIN
48963
+ SQL (0.3ms) INSERT INTO "i_wonder_metrics" ("archived", "collection_method", "earliest_measurement", "frequency", "last_measurement", "name", "options") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["archived", nil], ["collection_method", "IWonder::Metric.where(\"created_at >= ? AND created_at < ?\", start_time, end_time).count"], ["earliest_measurement", nil], ["frequency", 3600], ["last_measurement", nil], ["name", "Metric"], ["options", "--- \n:collection_type: model_counter\n:model_counter_method: Creation Rate\n:model_counter_class: IWonder::Metric\n:model_counter_scopes: \"\"\n:takes_snapshots: true\n"]]
48964
+  (0.3ms) SELECT COUNT(*) FROM "i_wonder_metrics" WHERE (created_at >= '2011-10-24 11:18:33.134439' AND created_at < '2011-10-24 12:18:32.134439')
48965
+ PGError: ERROR: column "created_at" does not exist
48966
+ LINE 1: SELECT COUNT(*) FROM "i_wonder_metrics" WHERE (created_at >...
48967
+ ^
48968
+ : SELECT COUNT(*) FROM "i_wonder_metrics" WHERE (created_at >= '2011-10-24 11:18:33.134439' AND created_at < '2011-10-24 12:18:32.134439')
48969
+  (0.1ms) ROLLBACK
48970
+ Completed 500 Internal Server Error in 12ms
48971
+
48972
+ ActiveRecord::StatementInvalid (PGError: ERROR: column "created_at" does not exist
48973
+ LINE 1: SELECT COUNT(*) FROM "i_wonder_metrics" WHERE (created_at >...
48974
+ ^
48975
+ : SELECT COUNT(*) FROM "i_wonder_metrics" WHERE (created_at >= '2011-10-24 11:18:33.134439' AND created_at < '2011-10-24 12:18:32.134439')):
48976
+
48977
+
48978
+ Rendered /Users/forrest/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
48979
+ Rendered /Users/forrest/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
48980
+ Rendered /Users/forrest/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (3.7ms)
48981
+
48982
+
48983
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:18:34 -0700
48984
+ Served asset /i_wonder/application.css - 304 Not Modified (1ms)
48985
+
48986
+
48987
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:18:34 -0700
48988
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
48989
+
48990
+
48991
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:18:34 -0700
48992
+ Served asset /i_wonder/reports.css - 304 Not Modified (1ms)
48993
+
48994
+
48995
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:18:34 -0700
48996
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
48997
+
48998
+
48999
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:18:34 -0700
49000
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49001
+
49002
+
49003
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:34 -0700
49004
+ Served asset /jquery.js - 304 Not Modified (0ms)
49005
+
49006
+
49007
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:34 -0700
49008
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49009
+
49010
+
49011
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:34 -0700
49012
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49013
+
49014
+
49015
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:34 -0700
49016
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49017
+
49018
+
49019
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:34 -0700
49020
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49021
+
49022
+
49023
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:34 -0700
49024
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49025
+
49026
+
49027
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:34 -0700
49028
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49029
+
49030
+
49031
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:34 -0700
49032
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
49033
+
49034
+
49035
+ Started POST "/i_wonder/metrics" for 127.0.0.1 at 2011-10-25 10:18:50 -0700
49036
+ Processing by IWonder::MetricsController#create as HTML
49037
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"uXZCnR+gUV7kIEVVy+fXI0wNA89w8CfeNb53daiS4nA=", "metric"=>{"name"=>"Metric", "collection_type"=>"model_counter", "model_counter_method"=>"Creation Rate", "model_counter_class"=>"IWonder::Metric", "model_counter_scopes"=>"", "takes_snapshots"=>"1", "frequency"=>"3600", "back_date_snapshots"=>"1"}, "commit"=>"Create Metric"}
49038
+  (0.1ms) BEGIN
49039
+  (0.1ms) ROLLBACK
49040
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_model_counter.html.erb (1.5ms)
49041
+ IWonder::Event Load (0.4ms) SELECT event_type, COUNT(event_type) as count, MAX(created_at) as most_recent FROM "i_wonder_events" GROUP BY event_type ORDER BY most_recent DESC
49042
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_event_counter.html.erb (43.3ms)
49043
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_custom.html.erb (1.6ms)
49044
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_form.html.erb (52.3ms)
49045
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/new.html.erb within layouts/i_wonder (53.3ms)
49046
+ Completed 200 OK in 72ms (Views: 59.4ms | ActiveRecord: 6.0ms)
49047
+
49048
+
49049
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:18:50 -0700
49050
+ Served asset /i_wonder/application.css - 304 Not Modified (5ms)
49051
+
49052
+
49053
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:18:50 -0700
49054
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
49055
+
49056
+
49057
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:18:50 -0700
49058
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
49059
+
49060
+
49061
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:18:50 -0700
49062
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49063
+
49064
+
49065
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:18:50 -0700
49066
+ Served asset /i_wonder/reports.css - 304 Not Modified (0ms)
49067
+
49068
+
49069
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:50 -0700
49070
+ Served asset /jquery.js - 304 Not Modified (0ms)
49071
+
49072
+
49073
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:50 -0700
49074
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49075
+
49076
+
49077
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:50 -0700
49078
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49079
+
49080
+
49081
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:51 -0700
49082
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49083
+
49084
+
49085
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:51 -0700
49086
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49087
+
49088
+
49089
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:51 -0700
49090
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49091
+
49092
+
49093
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:51 -0700
49094
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49095
+
49096
+
49097
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:18:51 -0700
49098
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
49099
+
49100
+
49101
+ Started POST "/i_wonder/metrics" for 127.0.0.1 at 2011-10-25 10:19:04 -0700
49102
+ Processing by IWonder::MetricsController#create as HTML
49103
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"uXZCnR+gUV7kIEVVy+fXI0wNA89w8CfeNb53daiS4nA=", "metric"=>{"name"=>"Metric", "collection_type"=>"model_counter", "model_counter_method"=>"Creation Rate", "model_counter_class"=>"IWonder::Metric", "model_counter_scopes"=>"", "takes_snapshots"=>"1", "frequency"=>"3600", "back_date_snapshots"=>"1"}, "commit"=>"Create Metric"}
49104
+  (0.1ms) BEGIN
49105
+  (0.1ms) ROLLBACK
49106
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_model_counter.html.erb (1.5ms)
49107
+ IWonder::Event Load (0.4ms) SELECT event_type, COUNT(event_type) as count, MAX(created_at) as most_recent FROM "i_wonder_events" GROUP BY event_type ORDER BY most_recent DESC
49108
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_event_counter.html.erb (17.0ms)
49109
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_custom.html.erb (1.6ms)
49110
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_form.html.erb (25.2ms)
49111
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/new.html.erb within layouts/i_wonder (26.2ms)
49112
+ Completed 200 OK in 45ms (Views: 31.9ms | ActiveRecord: 6.0ms)
49113
+
49114
+
49115
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:04 -0700
49116
+ Served asset /i_wonder/application.css - 304 Not Modified (0ms)
49117
+
49118
+
49119
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:04 -0700
49120
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49121
+
49122
+
49123
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:04 -0700
49124
+ Served asset /i_wonder/reports.css - 304 Not Modified (0ms)
49125
+
49126
+
49127
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:04 -0700
49128
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
49129
+
49130
+
49131
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:04 -0700
49132
+ Served asset /jquery.js - 304 Not Modified (0ms)
49133
+
49134
+
49135
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:04 -0700
49136
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
49137
+
49138
+
49139
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:04 -0700
49140
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49141
+
49142
+
49143
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:04 -0700
49144
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49145
+
49146
+
49147
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:04 -0700
49148
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49149
+
49150
+
49151
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:04 -0700
49152
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49153
+
49154
+
49155
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:04 -0700
49156
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49157
+
49158
+
49159
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:04 -0700
49160
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49161
+
49162
+
49163
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:04 -0700
49164
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
49165
+
49166
+
49167
+ Started GET "/i_wonder/events" for 127.0.0.1 at 2011-10-25 10:19:47 -0700
49168
+ Processing by IWonder::EventsController#index as HTML
49169
+ IWonder::Event Load (0.4ms) SELECT event_type, COUNT(event_type) as count, MAX(created_at) as most_recent FROM "i_wonder_events" GROUP BY event_type ORDER BY most_recent DESC
49170
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/events/index.html.erb within layouts/i_wonder (1.1ms)
49171
+ Completed 200 OK in 50ms (Views: 37.9ms | ActiveRecord: 2.6ms)
49172
+
49173
+
49174
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:47 -0700
49175
+ Served asset /i_wonder/application.css - 304 Not Modified (0ms)
49176
+
49177
+
49178
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:47 -0700
49179
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
49180
+
49181
+
49182
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:47 -0700
49183
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49184
+
49185
+
49186
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:47 -0700
49187
+ Served asset /i_wonder/reports.css - 304 Not Modified (0ms)
49188
+
49189
+
49190
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:47 -0700
49191
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
49192
+
49193
+
49194
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:47 -0700
49195
+ Served asset /jquery.js - 304 Not Modified (0ms)
49196
+
49197
+
49198
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:47 -0700
49199
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49200
+
49201
+
49202
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:47 -0700
49203
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49204
+
49205
+
49206
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:47 -0700
49207
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49208
+
49209
+
49210
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:47 -0700
49211
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49212
+
49213
+
49214
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:47 -0700
49215
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49216
+
49217
+
49218
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:47 -0700
49219
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49220
+
49221
+
49222
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:47 -0700
49223
+ Served asset /i_wonder/application.js - 304 Not Modified (1ms)
49224
+
49225
+
49226
+ Started GET "/i_wonder/events/hit" for 127.0.0.1 at 2011-10-25 10:19:51 -0700
49227
+ Processing by IWonder::EventsController#show as HTML
49228
+ Parameters: {"id"=>"hit"}
49229
+ IWonder::Event Load (0.5ms) SELECT COUNT(event_type) as count, MAX(created_at) as most_recent FROM "i_wonder_events" WHERE "i_wonder_events"."event_type" = 'hit' GROUP BY event_type
49230
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/events/show.html.erb within layouts/i_wonder (0.4ms)
49231
+ Completed 200 OK in 50ms (Views: 10.0ms | ActiveRecord: 3.4ms)
49232
+
49233
+
49234
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:51 -0700
49235
+ Served asset /i_wonder/application.css - 304 Not Modified (0ms)
49236
+
49237
+
49238
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:51 -0700
49239
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
49240
+
49241
+
49242
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:51 -0700
49243
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49244
+
49245
+
49246
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:51 -0700
49247
+ Served asset /i_wonder/reports.css - 304 Not Modified (0ms)
49248
+
49249
+
49250
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:51 -0700
49251
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
49252
+
49253
+
49254
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:51 -0700
49255
+ Served asset /jquery.js - 304 Not Modified (0ms)
49256
+
49257
+
49258
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:51 -0700
49259
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49260
+
49261
+
49262
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:51 -0700
49263
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49264
+
49265
+
49266
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:51 -0700
49267
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49268
+
49269
+
49270
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:51 -0700
49271
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49272
+
49273
+
49274
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:51 -0700
49275
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49276
+
49277
+
49278
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:51 -0700
49279
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49280
+
49281
+
49282
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:51 -0700
49283
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
49284
+
49285
+
49286
+ Started GET "/i_wonder/metrics" for 127.0.0.1 at 2011-10-25 10:19:56 -0700
49287
+ Processing by IWonder::MetricsController#index as HTML
49288
+ IWonder::Metric Load (0.2ms) SELECT "i_wonder_metrics".* FROM "i_wonder_metrics" 
49289
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/index.html.erb within layouts/i_wonder (0.5ms)
49290
+ Completed 200 OK in 12ms (Views: 10.3ms | ActiveRecord: 1.0ms)
49291
+
49292
+
49293
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:56 -0700
49294
+ Served asset /i_wonder/application.css - 304 Not Modified (0ms)
49295
+
49296
+
49297
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:56 -0700
49298
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
49299
+
49300
+
49301
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:56 -0700
49302
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49303
+
49304
+
49305
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:56 -0700
49306
+ Served asset /i_wonder/reports.css - 304 Not Modified (1ms)
49307
+
49308
+
49309
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:56 -0700
49310
+ Served asset /jquery.js - 304 Not Modified (0ms)
49311
+
49312
+
49313
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:19:56 -0700
49314
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
49315
+
49316
+
49317
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:56 -0700
49318
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49319
+
49320
+
49321
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:56 -0700
49322
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49323
+
49324
+
49325
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:56 -0700
49326
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49327
+
49328
+
49329
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:56 -0700
49330
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49331
+
49332
+
49333
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:56 -0700
49334
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49335
+
49336
+
49337
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:56 -0700
49338
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49339
+
49340
+
49341
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:19:56 -0700
49342
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
49343
+
49344
+
49345
+ Started GET "/i_wonder/reports" for 127.0.0.1 at 2011-10-25 10:20:14 -0700
49346
+ Processing by IWonder::ReportsController#index as HTML
49347
+ IWonder::Report Load (0.2ms) SELECT "i_wonder_reports".* FROM "i_wonder_reports"
49348
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/reports/index.html.erb within layouts/i_wonder (0.5ms)
49349
+ Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 1.0ms)
49350
+
49351
+
49352
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:20:14 -0700
49353
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
49354
+
49355
+
49356
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:20:14 -0700
49357
+ Served asset /i_wonder/application.css - 304 Not Modified (3ms)
49358
+
49359
+
49360
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:20:14 -0700
49361
+ Served asset /i_wonder/reports.css - 304 Not Modified (1ms)
49362
+
49363
+
49364
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:20:14 -0700
49365
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49366
+
49367
+
49368
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:20:14 -0700
49369
+ Served asset /jquery.js - 304 Not Modified (0ms)
49370
+
49371
+
49372
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:20:14 -0700
49373
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
49374
+
49375
+
49376
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:20:14 -0700
49377
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49378
+
49379
+
49380
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:20:14 -0700
49381
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49382
+
49383
+
49384
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:20:14 -0700
49385
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49386
+
49387
+
49388
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:20:14 -0700
49389
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49390
+
49391
+
49392
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:20:14 -0700
49393
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49394
+
49395
+
49396
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:20:14 -0700
49397
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49398
+
49399
+
49400
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:20:14 -0700
49401
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
49402
+
49403
+
49404
+ Started GET "/i_wonder/events" for 127.0.0.1 at 2011-10-25 10:21:14 -0700
49405
+ Processing by IWonder::EventsController#index as HTML
49406
+ IWonder::Event Load (0.4ms) SELECT event_type, COUNT(event_type) as count, MAX(created_at) as most_recent FROM "i_wonder_events" GROUP BY event_type ORDER BY most_recent DESC
49407
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/events/index.html.erb within layouts/i_wonder (1.1ms)
49408
+ Completed 200 OK in 22ms (Views: 10.3ms | ActiveRecord: 2.5ms)
49409
+
49410
+
49411
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:21:14 -0700
49412
+ Served asset /i_wonder/application.css - 304 Not Modified (0ms)
49413
+
49414
+
49415
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:21:14 -0700
49416
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
49417
+
49418
+
49419
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:21:14 -0700
49420
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49421
+
49422
+
49423
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:21:14 -0700
49424
+ Served asset /i_wonder/reports.css - 304 Not Modified (0ms)
49425
+
49426
+
49427
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:21:14 -0700
49428
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
49429
+
49430
+
49431
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:14 -0700
49432
+ Served asset /jquery.js - 304 Not Modified (0ms)
49433
+
49434
+
49435
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:14 -0700
49436
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49437
+
49438
+
49439
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:14 -0700
49440
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49441
+
49442
+
49443
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:14 -0700
49444
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49445
+
49446
+
49447
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:14 -0700
49448
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49449
+
49450
+
49451
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:14 -0700
49452
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49453
+
49454
+
49455
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:14 -0700
49456
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49457
+
49458
+
49459
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:14 -0700
49460
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
49461
+
49462
+
49463
+ Started GET "/i_wonder/events" for 127.0.0.1 at 2011-10-25 10:21:27 -0700
49464
+ Processing by IWonder::EventsController#index as HTML
49465
+ IWonder::Event Load (0.4ms) SELECT event_type, COUNT(event_type) as count, MAX(created_at) as most_recent FROM "i_wonder_events" GROUP BY event_type ORDER BY most_recent DESC
49466
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/events/index.html.erb within layouts/i_wonder (0.6ms)
49467
+ Compiled i_wonder/application.css (482ms) (pid 11818)
49468
+ Completed 200 OK in 550ms (Views: 510.3ms | ActiveRecord: 2.6ms)
49469
+
49470
+
49471
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:21:27 -0700
49472
+ Served asset /i_wonder/application.css - 200 OK (0ms)
49473
+
49474
+
49475
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:21:27 -0700
49476
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
49477
+
49478
+
49479
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:21:27 -0700
49480
+ Served asset /i_wonder/reports.css - 304 Not Modified (1ms)
49481
+
49482
+
49483
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:21:27 -0700
49484
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
49485
+
49486
+
49487
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:21:27 -0700
49488
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49489
+
49490
+
49491
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:27 -0700
49492
+ Served asset /jquery.js - 304 Not Modified (0ms)
49493
+
49494
+
49495
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:27 -0700
49496
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49497
+
49498
+
49499
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:27 -0700
49500
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49501
+
49502
+
49503
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:28 -0700
49504
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49505
+
49506
+
49507
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:28 -0700
49508
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49509
+
49510
+
49511
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:28 -0700
49512
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49513
+
49514
+
49515
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:28 -0700
49516
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49517
+
49518
+
49519
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:28 -0700
49520
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
49521
+
49522
+
49523
+ Started GET "/i_wonder/metrics" for 127.0.0.1 at 2011-10-25 10:21:32 -0700
49524
+ Processing by IWonder::MetricsController#index as HTML
49525
+ IWonder::Metric Load (0.2ms) SELECT "i_wonder_metrics".* FROM "i_wonder_metrics" 
49526
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/index.html.erb within layouts/i_wonder (29.0ms)
49527
+ Completed 200 OK in 40ms (Views: 38.6ms | ActiveRecord: 1.0ms)
49528
+
49529
+
49530
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:21:32 -0700
49531
+ Served asset /i_wonder/application.css - 304 Not Modified (2ms)
49532
+
49533
+
49534
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:21:32 -0700
49535
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
49536
+
49537
+
49538
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:21:32 -0700
49539
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49540
+
49541
+
49542
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:21:32 -0700
49543
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
49544
+
49545
+
49546
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:21:32 -0700
49547
+ Served asset /i_wonder/reports.css - 304 Not Modified (0ms)
49548
+
49549
+
49550
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:32 -0700
49551
+ Served asset /jquery.js - 304 Not Modified (0ms)
49552
+
49553
+
49554
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:32 -0700
49555
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49556
+
49557
+
49558
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:32 -0700
49559
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49560
+
49561
+
49562
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:32 -0700
49563
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49564
+
49565
+
49566
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:32 -0700
49567
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49568
+
49569
+
49570
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:32 -0700
49571
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49572
+
49573
+
49574
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:32 -0700
49575
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49576
+
49577
+
49578
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:21:32 -0700
49579
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
49580
+
49581
+
49582
+ Started GET "/i_wonder/metrics" for 127.0.0.1 at 2011-10-25 10:23:21 -0700
49583
+ Processing by IWonder::MetricsController#index as HTML
49584
+ IWonder::Metric Load (0.2ms) SELECT "i_wonder_metrics".* FROM "i_wonder_metrics"
49585
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/index.html.erb within layouts/i_wonder (1.0ms)
49586
+ Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 1.0ms)
49587
+
49588
+
49589
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:23:21 -0700
49590
+ Served asset /i_wonder/application.css - 304 Not Modified (0ms)
49591
+
49592
+
49593
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:23:21 -0700
49594
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
49595
+
49596
+
49597
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:23:21 -0700
49598
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49599
+
49600
+
49601
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:23:21 -0700
49602
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
49603
+
49604
+
49605
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:23:21 -0700
49606
+ Served asset /i_wonder/reports.css - 304 Not Modified (0ms)
49607
+
49608
+
49609
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:21 -0700
49610
+ Served asset /jquery.js - 304 Not Modified (0ms)
49611
+
49612
+
49613
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:21 -0700
49614
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49615
+
49616
+
49617
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:21 -0700
49618
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49619
+
49620
+
49621
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:21 -0700
49622
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49623
+
49624
+
49625
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:21 -0700
49626
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49627
+
49628
+
49629
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:21 -0700
49630
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49631
+
49632
+
49633
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:21 -0700
49634
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49635
+
49636
+
49637
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:21 -0700
49638
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
49639
+
49640
+
49641
+ Started GET "/i_wonder/metrics" for 127.0.0.1 at 2011-10-25 10:23:33 -0700
49642
+ Processing by IWonder::MetricsController#index as HTML
49643
+ IWonder::Metric Load (0.2ms) SELECT "i_wonder_metrics".* FROM "i_wonder_metrics" 
49644
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/index.html.erb within layouts/i_wonder (1.2ms)
49645
+ Completed 200 OK in 12ms (Views: 10.4ms | ActiveRecord: 1.1ms)
49646
+
49647
+
49648
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:23:33 -0700
49649
+ Served asset /i_wonder/application.css - 304 Not Modified (1ms)
49650
+
49651
+
49652
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:23:33 -0700
49653
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
49654
+
49655
+
49656
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:23:33 -0700
49657
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49658
+
49659
+
49660
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:23:33 -0700
49661
+ Served asset /i_wonder/reports.css - 304 Not Modified (0ms)
49662
+
49663
+
49664
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:23:33 -0700
49665
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
49666
+
49667
+
49668
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:33 -0700
49669
+ Served asset /jquery.js - 304 Not Modified (0ms)
49670
+
49671
+
49672
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:33 -0700
49673
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49674
+
49675
+
49676
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:33 -0700
49677
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49678
+
49679
+
49680
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:33 -0700
49681
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49682
+
49683
+
49684
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:33 -0700
49685
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49686
+
49687
+
49688
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:33 -0700
49689
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49690
+
49691
+
49692
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:33 -0700
49693
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49694
+
49695
+
49696
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:33 -0700
49697
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
49698
+
49699
+
49700
+ Started GET "/i_wonder/metrics" for 127.0.0.1 at 2011-10-25 10:23:56 -0700
49701
+ Processing by IWonder::MetricsController#index as HTML
49702
+ IWonder::Metric Load (0.2ms) SELECT "i_wonder_metrics".* FROM "i_wonder_metrics"
49703
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/index.html.erb within layouts/i_wonder (1.1ms)
49704
+ Completed 200 OK in 12ms (Views: 10.4ms | ActiveRecord: 1.0ms)
49705
+
49706
+
49707
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:23:56 -0700
49708
+ Served asset /i_wonder/application.css - 304 Not Modified (1ms)
49709
+
49710
+
49711
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:23:56 -0700
49712
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
49713
+
49714
+
49715
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:23:56 -0700
49716
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
49717
+
49718
+
49719
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:23:56 -0700
49720
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49721
+
49722
+
49723
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:56 -0700
49724
+ Served asset /jquery.js - 304 Not Modified (0ms)
49725
+
49726
+
49727
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:23:56 -0700
49728
+ Served asset /i_wonder/reports.css - 304 Not Modified (0ms)
49729
+
49730
+
49731
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:56 -0700
49732
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49733
+
49734
+
49735
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:56 -0700
49736
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49737
+
49738
+
49739
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:56 -0700
49740
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49741
+
49742
+
49743
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:56 -0700
49744
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49745
+
49746
+
49747
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:56 -0700
49748
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49749
+
49750
+
49751
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:56 -0700
49752
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49753
+
49754
+
49755
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:23:56 -0700
49756
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
49757
+
49758
+
49759
+ Started GET "/i_wonder/metrics/new" for 127.0.0.1 at 2011-10-25 10:24:02 -0700
49760
+ Processing by IWonder::MetricsController#new as HTML
49761
+ IWonder::Event Load (0.4ms) SELECT event_type, COUNT(event_type) as count, MAX(created_at) as most_recent FROM "i_wonder_events" GROUP BY event_type ORDER BY most_recent DESC
49762
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_event_counter.html.erb (17.4ms)
49763
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_model_counter.html.erb (1.5ms)
49764
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_options_for_custom.html.erb (1.2ms)
49765
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/_form.html.erb (33.8ms)
49766
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/metrics/new.html.erb within layouts/i_wonder (34.7ms)
49767
+ Completed 200 OK in 44ms (Views: 38.2ms | ActiveRecord: 5.7ms)
49768
+
49769
+
49770
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:24:02 -0700
49771
+ Served asset /i_wonder/application.css - 304 Not Modified (0ms)
49772
+
49773
+
49774
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:24:02 -0700
49775
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49776
+
49777
+
49778
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:24:02 -0700
49779
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
49780
+
49781
+
49782
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:02 -0700
49783
+ Served asset /jquery.js - 304 Not Modified (0ms)
49784
+
49785
+
49786
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:24:02 -0700
49787
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
49788
+
49789
+
49790
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:24:02 -0700
49791
+ Served asset /i_wonder/reports.css - 304 Not Modified (0ms)
49792
+
49793
+
49794
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:02 -0700
49795
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49796
+
49797
+
49798
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:02 -0700
49799
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49800
+
49801
+
49802
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:02 -0700
49803
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49804
+
49805
+
49806
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:02 -0700
49807
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49808
+
49809
+
49810
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:02 -0700
49811
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49812
+
49813
+
49814
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:02 -0700
49815
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49816
+
49817
+
49818
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:02 -0700
49819
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
49820
+
49821
+
49822
+ Started GET "/i_wonder/reports" for 127.0.0.1 at 2011-10-25 10:24:23 -0700
49823
+ Processing by IWonder::ReportsController#index as HTML
49824
+ IWonder::Report Load (0.2ms) SELECT "i_wonder_reports".* FROM "i_wonder_reports"
49825
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/reports/index.html.erb within layouts/i_wonder (0.6ms)
49826
+ Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 1.0ms)
49827
+
49828
+
49829
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:24:23 -0700
49830
+ Served asset /i_wonder/application.css - 304 Not Modified (3ms)
49831
+
49832
+
49833
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:24:23 -0700
49834
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
49835
+
49836
+
49837
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:24:23 -0700
49838
+ Served asset /i_wonder/reports.css - 304 Not Modified (1ms)
49839
+
49840
+
49841
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:23 -0700
49842
+ Served asset /jquery.js - 304 Not Modified (0ms)
49843
+
49844
+
49845
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:24:23 -0700
49846
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49847
+
49848
+
49849
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:24:23 -0700
49850
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
49851
+
49852
+
49853
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:23 -0700
49854
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49855
+
49856
+
49857
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:24 -0700
49858
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49859
+
49860
+
49861
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:24 -0700
49862
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49863
+
49864
+
49865
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:24 -0700
49866
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49867
+
49868
+
49869
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:24 -0700
49870
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49871
+
49872
+
49873
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:24 -0700
49874
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49875
+
49876
+
49877
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:24 -0700
49878
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
49879
+
49880
+
49881
+ Started GET "/i_wonder/reports/new" for 127.0.0.1 at 2011-10-25 10:24:25 -0700
49882
+ Processing by IWonder::ReportsController#new as HTML
49883
+ IWonder::Metric Load (0.3ms) SELECT "i_wonder_metrics".* FROM "i_wonder_metrics" WHERE (archived = 'f' or archived IS NULL) ORDER BY name
49884
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/reports/_form.html.erb (53.0ms)
49885
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/reports/new.html.erb within layouts/i_wonder (54.3ms)
49886
+ Completed 200 OK in 64ms (Views: 59.5ms | ActiveRecord: 4.1ms)
49887
+
49888
+
49889
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:24:25 -0700
49890
+ Served asset /i_wonder/application.css - 304 Not Modified (2ms)
49891
+
49892
+
49893
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:24:25 -0700
49894
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
49895
+
49896
+
49897
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:24:25 -0700
49898
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49899
+
49900
+
49901
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:24:25 -0700
49902
+ Served asset /i_wonder/reports.css - 304 Not Modified (1ms)
49903
+
49904
+
49905
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:25 -0700
49906
+ Served asset /jquery.js - 304 Not Modified (0ms)
49907
+
49908
+
49909
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:24:25 -0700
49910
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
49911
+
49912
+
49913
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:25 -0700
49914
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49915
+
49916
+
49917
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:25 -0700
49918
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49919
+
49920
+
49921
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:25 -0700
49922
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49923
+
49924
+
49925
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:25 -0700
49926
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49927
+
49928
+
49929
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:25 -0700
49930
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49931
+
49932
+
49933
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:25 -0700
49934
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49935
+
49936
+
49937
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:24:25 -0700
49938
+ Served asset /i_wonder/application.js - 304 Not Modified (1ms)
49939
+
49940
+
49941
+ Started GET "/i_wonder/" for 127.0.0.1 at 2011-10-25 10:26:34 -0700
49942
+ Processing by IWonder::DashboardController#landing as HTML
49943
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/dashboard/landing.html.erb within layouts/i_wonder (0.0ms)
49944
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
49945
+
49946
+
49947
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 10:26:34 -0700
49948
+ Served asset /i_wonder/application.css - 304 Not Modified (0ms)
49949
+
49950
+
49951
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 10:26:34 -0700
49952
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (0ms)
49953
+
49954
+
49955
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 10:26:34 -0700
49956
+ Served asset /i_wonder/events.css - 304 Not Modified (0ms)
49957
+
49958
+
49959
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 10:26:34 -0700
49960
+ Served asset /i_wonder/reports.css - 304 Not Modified (0ms)
49961
+
49962
+
49963
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 10:26:34 -0700
49964
+ Served asset /i_wonder/metrics.css - 304 Not Modified (0ms)
49965
+
49966
+
49967
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 10:26:34 -0700
49968
+ Served asset /jquery.js - 304 Not Modified (0ms)
49969
+
49970
+
49971
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 10:26:34 -0700
49972
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
49973
+
49974
+
49975
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 10:26:34 -0700
49976
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (0ms)
49977
+
49978
+
49979
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 10:26:34 -0700
49980
+ Served asset /i_wonder/events.js - 304 Not Modified (0ms)
49981
+
49982
+
49983
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 10:26:34 -0700
49984
+ Served asset /i_wonder/metrics.js - 304 Not Modified (0ms)
49985
+
49986
+
49987
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 10:26:34 -0700
49988
+ Served asset /i_wonder/reports.js - 304 Not Modified (0ms)
49989
+
49990
+
49991
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 10:26:34 -0700
49992
+ Served asset /highcharts.js - 304 Not Modified (0ms)
49993
+
49994
+
49995
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 10:26:34 -0700
49996
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)
49997
+
49998
+
49999
+ Started GET "/" for 127.0.0.1 at 2011-10-25 13:58:00 -0700
50000
+ Processing by TestController#landing as HTML
50001
+ Rendered test/landing.html.erb within layouts/application (29.9ms)
50002
+ Completed 200 OK in 69ms (Views: 68.5ms | ActiveRecord: 0.0ms)
50003
+  (0.2ms) BEGIN
50004
+  (1.4ms) INSERT INTO i_wonder_events (event_type, account_id, user_id, session_id, controller, action, extra_details, remote_ip, user_agent, referrer, created_at, updated_at) values ('hit', 3, 2, '23fcd8b5c48171ca468c', 'test', 'landing', NULL, '127.0.0.1', NULL, NULL, '2011-10-25 20:58:00.550688', '2011-10-25 20:58:00.550711')
50005
+  (0.5ms) COMMIT
50006
+
50007
+
50008
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 13:58:00 -0700
50009
+ Served asset /jquery.js - 304 Not Modified (1ms)
50010
+
50011
+
50012
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-25 13:58:00 -0700
50013
+ Served asset /application.css - 304 Not Modified (0ms)
50014
+
50015
+
50016
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 13:58:00 -0700
50017
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
50018
+
50019
+
50020
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-25 13:58:00 -0700
50021
+ Served asset /application.js - 304 Not Modified (0ms)
50022
+
50023
+
50024
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 13:58:00 -0700
50025
+ Served asset /highcharts.js - 304 Not Modified (1ms)
50026
+
50027
+
50028
+ Started GET "/i_wonder/" for 127.0.0.1 at 2011-10-25 13:58:04 -0700
50029
+ Processing by IWonder::DashboardController#landing as HTML
50030
+ Rendered /Users/forrest/Documents/work/jobber/i_wonder/app/views/i_wonder/dashboard/landing.html.erb within layouts/i_wonder (0.3ms)
50031
+ Completed 200 OK in 73ms (Views: 72.5ms | ActiveRecord: 0.0ms)
50032
+
50033
+
50034
+ Started GET "/assets/i_wonder/application.css?body=1" for 127.0.0.1 at 2011-10-25 13:58:04 -0700
50035
+ Served asset /i_wonder/application.css - 304 Not Modified (3ms)
50036
+
50037
+
50038
+ Started GET "/assets/i_wonder/dashboard.css?body=1" for 127.0.0.1 at 2011-10-25 13:58:04 -0700
50039
+ Served asset /i_wonder/dashboard.css - 304 Not Modified (4ms)
50040
+
50041
+
50042
+ Started GET "/assets/i_wonder/reports.css?body=1" for 127.0.0.1 at 2011-10-25 13:58:04 -0700
50043
+ Served asset /i_wonder/reports.css - 304 Not Modified (3ms)
50044
+
50045
+
50046
+ Started GET "/assets/i_wonder/metrics.css?body=1" for 127.0.0.1 at 2011-10-25 13:58:04 -0700
50047
+ Served asset /i_wonder/metrics.css - 304 Not Modified (3ms)
50048
+
50049
+
50050
+ Started GET "/assets/i_wonder/events.css?body=1" for 127.0.0.1 at 2011-10-25 13:58:04 -0700
50051
+ Served asset /i_wonder/events.css - 304 Not Modified (3ms)
50052
+
50053
+
50054
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-25 13:58:04 -0700
50055
+ Served asset /jquery.js - 304 Not Modified (0ms)
50056
+
50057
+
50058
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-25 13:58:04 -0700
50059
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
50060
+
50061
+
50062
+ Started GET "/assets/i_wonder/dashboard.js?body=1" for 127.0.0.1 at 2011-10-25 13:58:04 -0700
50063
+ Served asset /i_wonder/dashboard.js - 304 Not Modified (3ms)
50064
+
50065
+
50066
+ Started GET "/assets/i_wonder/events.js?body=1" for 127.0.0.1 at 2011-10-25 13:58:04 -0700
50067
+ Served asset /i_wonder/events.js - 304 Not Modified (2ms)
50068
+
50069
+
50070
+ Started GET "/assets/i_wonder/metrics.js?body=1" for 127.0.0.1 at 2011-10-25 13:58:04 -0700
50071
+ Served asset /i_wonder/metrics.js - 304 Not Modified (2ms)
50072
+
50073
+
50074
+ Started GET "/assets/i_wonder/reports.js?body=1" for 127.0.0.1 at 2011-10-25 13:58:04 -0700
50075
+ Served asset /i_wonder/reports.js - 304 Not Modified (2ms)
50076
+
50077
+
50078
+ Started GET "/assets/highcharts.js?body=1" for 127.0.0.1 at 2011-10-25 13:58:04 -0700
50079
+ Served asset /highcharts.js - 304 Not Modified (0ms)
50080
+
50081
+
50082
+ Started GET "/assets/i_wonder/application.js?body=1" for 127.0.0.1 at 2011-10-25 13:58:04 -0700
50083
+ Served asset /i_wonder/application.js - 304 Not Modified (0ms)