audit_rails 2.0.5 → 2.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/audit_rails/bar-chart-user.png +0 -0
  3. data/app/assets/images/audit_rails/user-pages.png +0 -0
  4. data/app/assets/images/audit_rails/world.png +0 -0
  5. data/app/assets/javascripts/audit_rails/application.js +2 -0
  6. data/app/assets/javascripts/audit_rails/audit.js +30 -3
  7. data/app/assets/javascripts/audit_rails/date-picker.js +5 -3
  8. data/app/assets/javascripts/audit_rails/dygraph-combined.js +2 -0
  9. data/app/assets/javascripts/audit_rails/hourly-views.js +1 -1
  10. data/app/assets/javascripts/audit_rails/page-view-user-contribution.js +7 -6
  11. data/app/assets/javascripts/audit_rails/page-views-for-user.js +2 -2
  12. data/app/assets/javascripts/audit_rails/page-views.js +1 -1
  13. data/app/assets/javascripts/audit_rails/range-selector.js +49 -0
  14. data/app/assets/javascripts/audit_rails/user-counts.js +1 -1
  15. data/app/assets/stylesheets/audit_rails/application.css +1 -0
  16. data/app/assets/stylesheets/audit_rails/audit_rails.css +88 -1
  17. data/app/assets/stylesheets/audit_rails/bootstrap_override.css +4 -0
  18. data/app/assets/stylesheets/audit_rails/date-picker.css +12 -1
  19. data/app/assets/stylesheets/audit_rails/range-selector.css +6 -0
  20. data/app/controllers/audit_rails/audits_controller.rb +1 -0
  21. data/app/models/audit_rails/audit.rb +25 -1
  22. data/app/views/audit_rails/audits/_hourly_views.html.erb +15 -2
  23. data/app/views/audit_rails/audits/_page_views.html.erb +14 -2
  24. data/app/views/audit_rails/audits/_sub_menu.html.erb +83 -7
  25. data/app/views/audit_rails/audits/_user_clicks.html.erb +14 -1
  26. data/app/views/audit_rails/audits/_user_pages.html.erb +35 -0
  27. data/app/views/audit_rails/audits/analytics.html.erb +28 -15
  28. data/app/views/layouts/audit_rails/application.html.erb +1 -3
  29. data/lib/audit_rails/version.rb +1 -1
  30. data/spec/controllers/audit_rails/audits_controller_spec.rb +1 -0
  31. data/spec/dummy/log/test.log +642 -0
  32. data/spec/models/audit_rails/audit_spec.rb +21 -0
  33. metadata +11 -6
  34. data/app/views/audit_rails/audits/_page_views_by_user_bar.html.erb +0 -18
  35. data/app/views/audit_rails/audits/_page_views_by_user_pie.html.erb +0 -18
@@ -1,7 +1,83 @@
1
- <ul class="nav nav-tabs">
2
- <li class='active'><a href="#" data-attr-id='user-clicks'>All views by users <span class="badge"><%= @total %></span></a></li>
3
- <li><a href="#" data-attr-id='page-views'>All views by pages <span class="badge hide"><%= @total %></span></a></li>
4
- <li><a href="#" data-attr-id='hourly-views'>All views hourly (as per UTC) <span class="badge hide"><%= @total %></span></a></li>
5
- <li><a href="#" data-attr-id='per-user-by-pages-bar'>Views per user by pages (bar) <span class="badge hide"><%= @total %></span></a></li>
6
- <li><a href="#" data-attr-id='per-user-by-pages-pie'>Views per user by pages (pie) <span class="badge hide"><%= @total %></span></a></li>
7
- </ul>
1
+ <div id="sections" class="container">
2
+ <div data-attr-id="user-clicks" class="col-sm-4">
3
+ <div class="section-header">
4
+ <div class="section-text">
5
+ View by Users
6
+ </div>
7
+ <div class="section-count">
8
+ <%= @total %>
9
+ </div>
10
+ <button id="user-clicks-zoomin" type="button" class="btn btn-default btn-lg section-zoom">
11
+ <span class='glyphicon glyphicon-fullscreen large'></span>
12
+ </button>
13
+ </div>
14
+ <div class="section-body">
15
+ </div>
16
+ </div>
17
+ <div data-attr-id="page-views" class="col-sm-4">
18
+ <div class="section-header">
19
+ <div class="section-text">
20
+ View by Pages
21
+ </div>
22
+ <div class="section-count">
23
+ <%= @total %>
24
+ </div>
25
+ <button id="page-views-zoomin" type="button" class="btn btn-default btn-lg section-zoom">
26
+ <span class='glyphicon glyphicon-fullscreen large'></span>
27
+ </button>
28
+ </div>
29
+ <div class="section-body">
30
+ </div>
31
+ </div>
32
+ <div data-attr-id="hourly-views" class="col-sm-4">
33
+ <div class="section-header">
34
+ <div class="section-text">
35
+ Hourly Views (UTC)
36
+ </div>
37
+ <div class="section-count">
38
+ <%= @total %>
39
+ </div>
40
+ <button id="hourly-views-zoomin" type="button" class="btn btn-default btn-lg section-zoom">
41
+ <span class='glyphicon glyphicon-fullscreen large'></span>
42
+ </button>
43
+ </div>
44
+ <div class="section-body">
45
+ </div>
46
+ </div>
47
+ </div>
48
+ <br>
49
+ <br>
50
+ <div id="sections" class="container">
51
+ <div data-attr-id="user-pages" class="col-sm-8">
52
+ <div class="section-header">
53
+ <div class="section-text">
54
+ Users' Views by Pages
55
+ </div>
56
+ <div class="section-count">
57
+ <%= @total %>
58
+ </div>
59
+ <button id="user-pages-zoomin" type="button" class="btn btn-default btn-lg section-zoom">
60
+ <span class='glyphicon glyphicon-fullscreen large'></span>
61
+ </button>
62
+ </div>
63
+ <div class="section-body-user-pages">
64
+ </div>
65
+ </div>
66
+ <div id="world", data-attr-id="world" class="col-sm-4">
67
+ <div class="section-header">
68
+ <div class="section-text disabled">
69
+ Global Hits
70
+ </div>
71
+ <div class="section-count disabled">
72
+ <%= @total %>
73
+ </div>
74
+ <button id="world-zoom" type="button" class="btn btn-default btn-lg section-zoom">
75
+ <span class='glyphicon glyphicon-fullscreen large'></span>
76
+ </button>
77
+ </div>
78
+ <div class="section-body-world">
79
+ </div>
80
+ </div>
81
+ </div>
82
+ <br>
83
+ <br>
@@ -1,3 +1,16 @@
1
- <div id='user-clicks' class='left group'>
1
+ <div id='user-clicks' class='overlay'>
2
+ <div data-attr-id="user-clicks" class="col-sm-12 overlay-section">
3
+ <div class="section-header">
4
+ <div class="section-text">
5
+ View by Users
6
+ </div>
7
+ <div class="section-count">
8
+ <%= @total %>
9
+ </div>
10
+ <button id="user-clicks-zoomout" type="button" class="btn btn-default btn-lg section-zoom">
11
+ <span class='glyphicon glyphicon-fullscreen large'></span>
12
+ </button>
13
+ </div>
14
+ </div>
2
15
  <div id='userViewsCount' data-visit-count='<%= @analysis_by_user_name %>'></div>
3
16
  </div>
@@ -0,0 +1,35 @@
1
+ <div id='user-pages' class='overlay'>
2
+ <div data-attr-id="user-pages" class="col-sm-12 overlay-section">
3
+ <div class="section-header">
4
+ <div class="section-text">
5
+ Users' Views by Pages
6
+ </div>
7
+ <div class="section-count">
8
+ <%= @total %>
9
+ </div>
10
+ <button id="user-pages-zoomout" type="button" class="btn btn-default btn-lg section-zoom">
11
+ <span class='glyphicon glyphicon-fullscreen large'></span>
12
+ </button>
13
+ </div>
14
+ </div>
15
+
16
+ <div id='per-user-by-pages-bar' class='overlay-section'>
17
+ <div class='clear'></div>
18
+ <div class='left page-views left-navigation'>
19
+ <div class="list-group page-views">
20
+ <% JSON.parse(@analysis_by_user_name).each do |user_hsh| %>
21
+ <a href="#page-views-by-user" class="list-group-item" data-user='<%=user_hsh["user"]%>' data-page-visits='<%= page_visits_by_user(user_hsh['user'])%>'><%= user_hsh["user"] %> - <%= percentage_share(user_hsh["user"], user_hsh["count"], @total)%>
22
+ <span class="badge"><%= user_hsh["count"] %></span>
23
+ </a>
24
+ <% end %>
25
+ </div>
26
+ </div>
27
+ <div class='left' style="850px;">
28
+ <div id="userNameToShow"></div>
29
+ <div id='pageViewsByUser'></div>
30
+ <div id='pageViewsShareByUser'></div>
31
+ </div>
32
+ <div id="tooltip"></div>
33
+ </div>
34
+
35
+ </div>
@@ -1,18 +1,31 @@
1
- <div class="page-header">
2
- <h1>Analytics</h1>
3
- </div>
1
+ <div class='container'>
2
+ <div class="page-header">
3
+ <h1>Analytics</h1>
4
+ </div>
4
5
 
5
- <%= render partial: 'form', locals: {path: audit_rails.analytics_audits_path} %>
6
+ <%= render partial: 'form', locals: {path: audit_rails.analytics_audits_path} %>
7
+ </div>
6
8
  <br/>
9
+ <div class="navbar" style="height:200px;background: #E2E2E2;">
10
+ <div class='container'>
11
+ <br/>
12
+ <br/>
13
+ <div id="noroll" data-count="<%= @count_by_day%>"></div>
14
+ </div>
15
+ </div>
7
16
  <br/>
8
- <% if @analysis_by_user_name == {} %>
9
- <%= render partial: 'no_audits_available', locals: {no_audits: @no_audits} %>
10
- <% else %>
11
- <%= render partial: 'sub_menu' %>
12
- <br/>
13
- <%= render partial: 'user_clicks' %>
14
- <%= render partial: 'page_views' %>
15
- <%= render partial: 'hourly_views' %>
16
- <%= render partial: 'page_views_by_user_bar' %>
17
- <%= render partial: 'page_views_by_user_pie' %>
18
- <% end %>
17
+
18
+ <div class='container theme-showcase'>
19
+ <% if @analysis_by_user_name == {} %>
20
+ <%= render partial: 'no_audits_available', locals: {no_audits: @no_audits} %>
21
+ <% else %>
22
+ <%= render partial: 'sub_menu' %>
23
+ <br/>
24
+ <%= render partial: 'user_clicks' %>
25
+ <%= render partial: 'page_views' %>
26
+ <%= render partial: 'hourly_views' %>
27
+ <%= render partial: 'user_pages' %>
28
+ <%#= render partial: 'page_views_by_user_bar' %>
29
+ <%#= render partial: 'page_views_by_user_pie' %>
30
+ <% end %>
31
+ </div>
@@ -24,9 +24,7 @@
24
24
  <a href="https://github.com/gouravtiwari/audit_rails/fork"><img style="position: fixed; top: 0; right: 0; border: 0; z-index: 10000;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
25
25
  </div>
26
26
  </div>
27
- <div class='container theme-showcase'>
28
- <%= yield %>
29
- </div>
27
+ <%= yield %>
30
28
  <div class='footer-container'>
31
29
  <div class='footer container'>
32
30
  Copyright 2014 © Audit Rails
@@ -1,3 +1,3 @@
1
1
  module AuditRails
2
- VERSION = "2.0.5"
2
+ VERSION = "2.0.6"
3
3
  end
@@ -37,6 +37,7 @@ describe AuditRails::AuditsController do
37
37
  },
38
38
  analysis_by_hourly_views: hourly_list = {"01"=>6, "23"=>3},
39
39
  ))
40
+ AuditRails::Audit.stub(:count_by_day).and_return(stub("{\"Date\":\"Count\",\"20140303\":6,\"20140304\":3,\"20140305\":0,\"20140306\":0}"))
40
41
 
41
42
  get 'analytics'
42
43
 
@@ -30362,3 +30362,645 @@ Connecting to database specified by database.yml
30362
30362
   (0.1ms) begin transaction
30363
30363
   (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-12-05 00:00:00.000000' AND '2013-12-05 23:59:59.999999')
30364
30364
   (0.0ms) rollback transaction
30365
+ Connecting to database specified by database.yml
30366
+  (0.3ms) begin transaction
30367
+  (0.0ms) rollback transaction
30368
+  (0.1ms) begin transaction
30369
+ Processing by AnonymousController#login as HTML
30370
+ Parameters: {"id"=>"1"}
30371
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2014-03-07 00:00:00.000000' AND '2014-03-07 23:59:59.999999')
30372
+  (0.0ms) SAVEPOINT active_record_1
30373
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "anonymous"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", "User logged in"], ["ip_address", "127.0.0.1"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30374
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30375
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
30376
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2014-03-06 00:00:00.000000' AND '2014-03-06 23:59:59.999999')
30377
+  (0.0ms) rollback transaction
30378
+  (0.1ms) begin transaction
30379
+ Processing by AuditRails::AuditsController#analytics as HTML
30380
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" 
30381
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
30382
+  (0.0ms) rollback transaction
30383
+  (0.1ms) begin transaction
30384
+ Processing by AuditRails::AuditsController#create as HTML
30385
+  (0.0ms) SAVEPOINT active_record_1
30386
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit-site"], ["controller", "xyz"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "0.0.0.0"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30388
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
30389
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'visit-site' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2014-03-06 00:00:00.000000' AND '2014-03-06 23:59:59.999999')
30390
+  (0.0ms) rollback transaction
30391
+  (0.1ms) begin transaction
30392
+  (0.0ms) rollback transaction
30393
+  (0.0ms) begin transaction
30394
+  (0.0ms) rollback transaction
30395
+  (0.0ms) begin transaction
30396
+  (0.0ms) SAVEPOINT active_record_1
30397
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30398
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30399
+  (0.0ms) SAVEPOINT active_record_1
30400
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30401
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30402
+  (0.0ms) SAVEPOINT active_record_1
30403
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30404
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30405
+  (0.0ms) SAVEPOINT active_record_1
30406
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-04 20:40:19.697401' WHERE "audit_rails_audits"."id" = 1
30407
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30408
+  (0.0ms) SAVEPOINT active_record_1
30409
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-03 20:40:19.697401' WHERE "audit_rails_audits"."id" = 2
30410
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30411
+  (0.0ms) SAVEPOINT active_record_1
30412
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-03 20:40:19.697401' WHERE "audit_rails_audits"."id" = 3
30413
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30414
+  (0.0ms) SAVEPOINT active_record_1
30415
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30416
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30417
+  (0.0ms) SAVEPOINT active_record_1
30418
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30419
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30420
+  (0.0ms) SAVEPOINT active_record_1
30421
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30422
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30423
+  (0.0ms) SAVEPOINT active_record_1
30424
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-04 20:40:19.697401' WHERE "audit_rails_audits"."id" = 4
30425
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30426
+  (0.0ms) SAVEPOINT active_record_1
30427
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-03 20:40:19.697401' WHERE "audit_rails_audits"."id" = 5
30428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30429
+  (0.0ms) SAVEPOINT active_record_1
30430
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-03 20:40:19.697401' WHERE "audit_rails_audits"."id" = 6
30431
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30432
+  (0.0ms) SAVEPOINT active_record_1
30433
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30434
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30435
+  (0.0ms) SAVEPOINT active_record_1
30436
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30437
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30438
+  (0.0ms) SAVEPOINT active_record_1
30439
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30440
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30441
+  (0.0ms) SAVEPOINT active_record_1
30442
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-04 20:40:19.697401' WHERE "audit_rails_audits"."id" = 7
30443
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30444
+  (0.0ms) SAVEPOINT active_record_1
30445
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-03 20:40:19.697401' WHERE "audit_rails_audits"."id" = 8
30446
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30447
+  (0.0ms) SAVEPOINT active_record_1
30448
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-03 20:40:19.697401' WHERE "audit_rails_audits"."id" = 9
30449
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30450
+ AuditRails::Audit Load (0.0ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2014-03-03 00:00:00.000000' AND '2014-03-07 23:59:59.999999') ORDER BY created_at
30451
+  (0.0ms) rollback transaction
30452
+  (0.1ms) begin transaction
30453
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2014-03-07 00:00:00.000000' AND '2014-03-07 23:59:59.999999')
30454
+  (0.0ms) rollback transaction
30455
+  (0.0ms) begin transaction
30456
+  (0.0ms) SAVEPOINT active_record_1
30457
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30458
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30459
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2014-03-06 00:00:00.000000' AND '2014-03-06 23:59:59.999999')
30460
+  (0.0ms) rollback transaction
30461
+  (0.1ms) begin transaction
30462
+  (0.0ms) SAVEPOINT active_record_1
30463
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30464
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30465
+  (0.0ms) SAVEPOINT active_record_1
30466
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30468
+  (0.0ms) SAVEPOINT active_record_1
30469
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30470
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30471
+  (0.0ms) SAVEPOINT active_record_1
30472
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30473
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30474
+  (0.0ms) SAVEPOINT active_record_1
30475
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30476
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30477
+  (0.0ms) SAVEPOINT active_record_1
30478
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30479
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30480
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
30481
+  (0.0ms) rollback transaction
30482
+  (0.1ms) begin transaction
30483
+  (0.0ms) SAVEPOINT active_record_1
30484
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30485
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30486
+  (0.0ms) SAVEPOINT active_record_1
30487
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30489
+  (0.0ms) SAVEPOINT active_record_1
30490
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30491
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30492
+  (0.0ms) SAVEPOINT active_record_1
30493
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30495
+  (0.0ms) SAVEPOINT active_record_1
30496
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30497
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30498
+  (0.0ms) SAVEPOINT active_record_1
30499
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30500
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30501
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
30502
+  (0.0ms) rollback transaction
30503
+  (0.1ms) begin transaction
30504
+  (0.0ms) SAVEPOINT active_record_1
30505
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30506
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30507
+  (0.0ms) SAVEPOINT active_record_1
30508
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30509
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30510
+  (0.0ms) SAVEPOINT active_record_1
30511
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30512
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30513
+  (0.0ms) SAVEPOINT active_record_1
30514
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30515
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30516
+  (0.0ms) SAVEPOINT active_record_1
30517
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30518
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30519
+  (0.0ms) SAVEPOINT active_record_1
30520
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30521
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30522
+  (0.0ms) SAVEPOINT active_record_1
30523
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30524
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30525
+  (0.0ms) SAVEPOINT active_record_1
30526
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30527
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30528
+  (0.0ms) SAVEPOINT active_record_1
30529
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30530
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30531
+  (0.0ms) SELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address
30532
+  (0.0ms) rollback transaction
30533
+  (0.1ms) begin transaction
30534
+  (0.0ms) SAVEPOINT active_record_1
30535
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30536
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30537
+  (0.0ms) SAVEPOINT active_record_1
30538
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30539
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30540
+  (0.0ms) SAVEPOINT active_record_1
30541
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30543
+  (0.0ms) SAVEPOINT active_record_1
30544
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30545
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30546
+  (0.0ms) SAVEPOINT active_record_1
30547
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30549
+  (0.0ms) SAVEPOINT active_record_1
30550
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30552
+  (0.0ms) SAVEPOINT active_record_1
30553
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30555
+  (0.0ms) SAVEPOINT active_record_1
30556
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30557
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30558
+  (0.0ms) SAVEPOINT active_record_1
30559
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30560
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30561
+  (0.0ms) SELECT COUNT(*) AS count_all, strftime('%H', created_at) AS strftime_h_created_at FROM "audit_rails_audits" GROUP BY strftime('%H', created_at)
30562
+  (0.0ms) rollback transaction
30563
+  (0.1ms) begin transaction
30564
+  (0.0ms) SAVEPOINT active_record_1
30565
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30567
+  (0.0ms) SAVEPOINT active_record_1
30568
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30569
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30570
+  (0.0ms) SAVEPOINT active_record_1
30571
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30572
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30573
+  (0.0ms) SAVEPOINT active_record_1
30574
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30575
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30576
+  (0.0ms) SAVEPOINT active_record_1
30577
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30578
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30579
+  (0.0ms) SAVEPOINT active_record_1
30580
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30581
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30582
+  (0.0ms) SAVEPOINT active_record_1
30583
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30584
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30585
+  (0.0ms) SAVEPOINT active_record_1
30586
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30588
+  (0.0ms) SAVEPOINT active_record_1
30589
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30590
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30591
+  (0.0ms) SELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address
30592
+  (0.0ms) rollback transaction
30593
+  (0.1ms) begin transaction
30594
+  (0.0ms) SAVEPOINT active_record_1
30595
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30596
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30597
+  (0.0ms) SAVEPOINT active_record_1
30598
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30599
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30600
+  (0.0ms) SAVEPOINT active_record_1
30601
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30603
+  (0.0ms) SAVEPOINT active_record_1
30604
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30605
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30606
+  (0.0ms) SAVEPOINT active_record_1
30607
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30608
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30609
+  (0.0ms) SAVEPOINT active_record_1
30610
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30611
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30612
+  (0.0ms) SAVEPOINT active_record_1
30613
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30614
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30615
+  (0.0ms) SAVEPOINT active_record_1
30616
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30618
+  (0.0ms) SAVEPOINT active_record_1
30619
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "Fake User"]]
30620
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30621
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
30622
+  (0.0ms) rollback transaction
30623
+  (0.1ms) begin transaction
30624
+  (0.0ms) SAVEPOINT active_record_1
30625
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30626
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30627
+  (0.0ms) SAVEPOINT active_record_1
30628
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30629
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30630
+  (0.0ms) SAVEPOINT active_record_1
30631
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30632
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30633
+  (0.0ms) SAVEPOINT active_record_1
30634
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-04 20:40:19.817350' WHERE "audit_rails_audits"."id" = 1
30635
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30636
+  (0.0ms) SAVEPOINT active_record_1
30637
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-03 20:40:19.817350' WHERE "audit_rails_audits"."id" = 2
30638
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30639
+  (0.0ms) SAVEPOINT active_record_1
30640
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-01 20:40:19.817350' WHERE "audit_rails_audits"."id" = 3
30641
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30642
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-12-06 00:00:00.000000' AND '2014-03-06 23:59:59.999999')
30643
+  (0.0ms) rollback transaction
30644
+  (0.1ms) begin transaction
30645
+  (0.0ms) SAVEPOINT active_record_1
30646
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30647
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30648
+  (0.0ms) SAVEPOINT active_record_1
30649
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30650
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30651
+  (0.0ms) SAVEPOINT active_record_1
30652
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30654
+  (0.0ms) SAVEPOINT active_record_1
30655
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-04 20:40:19.827636' WHERE "audit_rails_audits"."id" = 1
30656
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30657
+  (0.0ms) SAVEPOINT active_record_1
30658
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-03 20:40:19.827636' WHERE "audit_rails_audits"."id" = 2
30659
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30660
+  (0.0ms) SAVEPOINT active_record_1
30661
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-01 20:40:19.827636' WHERE "audit_rails_audits"."id" = 3
30662
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30663
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2014-03-02 00:00:00.000000' AND '2014-03-05 23:59:59.999999')
30664
+  (0.0ms) rollback transaction
30665
+  (0.1ms) begin transaction
30666
+  (0.0ms) SAVEPOINT active_record_1
30667
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30668
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30669
+  (0.0ms) SAVEPOINT active_record_1
30670
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30671
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30672
+  (0.0ms) SAVEPOINT active_record_1
30673
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Thu, 06 Mar 2014 20:40:19 UTC +00:00], ["user_name", "John Smith"]]
30674
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30675
+  (0.0ms) SAVEPOINT active_record_1
30676
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-04 20:40:19.838186' WHERE "audit_rails_audits"."id" = 1
30677
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30678
+  (0.0ms) SAVEPOINT active_record_1
30679
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-03 20:40:19.838186' WHERE "audit_rails_audits"."id" = 2
30680
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30681
+  (0.0ms) SAVEPOINT active_record_1
30682
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-01 20:40:19.838186' WHERE "audit_rails_audits"."id" = 3
30683
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30684
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2014-03-02 00:00:00.000000' AND '2014-03-05 23:59:59.999999')
30685
+  (0.0ms) rollback transaction
30686
+ Connecting to database specified by database.yml
30687
+  (0.3ms) begin transaction
30688
+  (0.0ms) SAVEPOINT active_record_1
30689
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30690
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30691
+  (0.0ms) SAVEPOINT active_record_1
30692
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30693
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30694
+  (0.0ms) SAVEPOINT active_record_1
30695
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "Fake User"]]
30696
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30697
+  (0.0ms) SAVEPOINT active_record_1
30698
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-05 00:29:21.888665' WHERE "audit_rails_audits"."id" = 1
30699
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30700
+  (0.0ms) SAVEPOINT active_record_1
30701
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-04 00:29:21.888665' WHERE "audit_rails_audits"."id" = 2
30702
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30703
+  (0.0ms) SAVEPOINT active_record_1
30704
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-04 00:29:21.888665' WHERE "audit_rails_audits"."id" = 3
30705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30706
+  (0.0ms) SAVEPOINT active_record_1
30707
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30708
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30709
+  (0.0ms) SAVEPOINT active_record_1
30710
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30711
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30712
+  (0.0ms) SAVEPOINT active_record_1
30713
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "Fake User"]]
30714
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30715
+  (0.0ms) SAVEPOINT active_record_1
30716
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-05 00:29:21.888665' WHERE "audit_rails_audits"."id" = 4
30717
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30718
+  (0.0ms) SAVEPOINT active_record_1
30719
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-04 00:29:21.888665' WHERE "audit_rails_audits"."id" = 5
30720
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30721
+  (0.0ms) SAVEPOINT active_record_1
30722
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-04 00:29:21.888665' WHERE "audit_rails_audits"."id" = 6
30723
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30724
+  (0.0ms) SAVEPOINT active_record_1
30725
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30726
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30727
+  (0.0ms) SAVEPOINT active_record_1
30728
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30729
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30730
+  (0.0ms) SAVEPOINT active_record_1
30731
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "Fake User"]]
30732
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30733
+  (0.0ms) SAVEPOINT active_record_1
30734
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-05 00:29:21.888665' WHERE "audit_rails_audits"."id" = 7
30735
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30736
+  (0.0ms) SAVEPOINT active_record_1
30737
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-04 00:29:21.888665' WHERE "audit_rails_audits"."id" = 8
30738
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30739
+  (0.0ms) SAVEPOINT active_record_1
30740
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-04 00:29:21.888665' WHERE "audit_rails_audits"."id" = 9
30741
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30742
+ AuditRails::Audit Load (0.0ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2014-03-04 00:00:00.000000' AND '2014-03-07 23:59:59.999999') ORDER BY created_at
30743
+  (0.0ms) rollback transaction
30744
+  (0.1ms) begin transaction
30745
+  (0.0ms) SAVEPOINT active_record_1
30746
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30747
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30748
+  (0.0ms) SAVEPOINT active_record_1
30749
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "Fake User"]]
30750
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30751
+  (0.0ms) SAVEPOINT active_record_1
30752
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30753
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30754
+  (0.0ms) SAVEPOINT active_record_1
30755
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "Fake User"]]
30756
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30757
+  (0.0ms) SAVEPOINT active_record_1
30758
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30759
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30760
+  (0.0ms) SAVEPOINT active_record_1
30761
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "Fake User"]]
30762
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30763
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
30764
+  (0.0ms) rollback transaction
30765
+  (0.1ms) begin transaction
30766
+  (0.0ms) SAVEPOINT active_record_1
30767
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30768
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30769
+  (0.0ms) SAVEPOINT active_record_1
30770
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30771
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30772
+  (0.0ms) SAVEPOINT active_record_1
30773
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30774
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30775
+  (0.0ms) SAVEPOINT active_record_1
30776
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-05 00:29:21.950089' WHERE "audit_rails_audits"."id" = 1
30777
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30778
+  (0.0ms) SAVEPOINT active_record_1
30779
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-04 00:29:21.950089' WHERE "audit_rails_audits"."id" = 2
30780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30781
+  (0.0ms) SAVEPOINT active_record_1
30782
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-02 00:29:21.950089' WHERE "audit_rails_audits"."id" = 3
30783
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30784
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2013-12-07 00:00:00.000000' AND '2014-03-07 23:59:59.999999')
30785
+  (0.0ms) rollback transaction
30786
+  (0.1ms) begin transaction
30787
+  (0.0ms) SAVEPOINT active_record_1
30788
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30789
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30790
+  (0.0ms) SAVEPOINT active_record_1
30791
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30792
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30793
+  (0.0ms) SAVEPOINT active_record_1
30794
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30796
+  (0.0ms) SAVEPOINT active_record_1
30797
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-05 00:29:21.961420' WHERE "audit_rails_audits"."id" = 1
30798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30799
+  (0.0ms) SAVEPOINT active_record_1
30800
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-04 00:29:21.961420' WHERE "audit_rails_audits"."id" = 2
30801
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30802
+  (0.0ms) SAVEPOINT active_record_1
30803
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-02 00:29:21.961420' WHERE "audit_rails_audits"."id" = 3
30804
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30805
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2014-03-03 00:00:00.000000' AND '2014-03-06 23:59:59.999999')
30806
+  (0.0ms) rollback transaction
30807
+  (0.1ms) begin transaction
30808
+  (0.0ms) SAVEPOINT active_record_1
30809
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30810
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30811
+  (0.0ms) SAVEPOINT active_record_1
30812
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30813
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30814
+  (0.0ms) SAVEPOINT active_record_1
30815
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30816
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30817
+  (0.0ms) SAVEPOINT active_record_1
30818
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-05 00:29:21.973678' WHERE "audit_rails_audits"."id" = 1
30819
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30820
+  (0.0ms) SAVEPOINT active_record_1
30821
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-04 00:29:21.973678' WHERE "audit_rails_audits"."id" = 2
30822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30823
+  (0.0ms) SAVEPOINT active_record_1
30824
+  (0.0ms) UPDATE "audit_rails_audits" SET "created_at" = '2014-03-02 00:29:21.973678' WHERE "audit_rails_audits"."id" = 3
30825
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30826
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE ("audit_rails_audits"."created_at" BETWEEN '2014-03-03 00:00:00.000000' AND '2014-03-06 23:59:59.999999')
30827
+  (0.0ms) rollback transaction
30828
+  (0.1ms) begin transaction
30829
+  (0.0ms) SAVEPOINT active_record_1
30830
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30832
+  (0.0ms) SAVEPOINT active_record_1
30833
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30834
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30835
+  (0.0ms) SAVEPOINT active_record_1
30836
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "Fake User"]]
30837
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30838
+  (0.0ms) SAVEPOINT active_record_1
30839
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30840
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30841
+  (0.0ms) SAVEPOINT active_record_1
30842
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30843
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30844
+  (0.0ms) SAVEPOINT active_record_1
30845
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "Fake User"]]
30846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30847
+  (0.0ms) SAVEPOINT active_record_1
30848
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30849
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30850
+  (0.0ms) SAVEPOINT active_record_1
30851
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "John Smith"]]
30852
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30853
+  (0.0ms) SAVEPOINT active_record_1
30854
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Fri, 07 Mar 2014 00:29:21 UTC +00:00], ["user_name", "Fake User"]]
30855
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30856
+  (0.0ms) SELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address
30857
+  (0.0ms) rollback transaction
30858
+  (0.1ms) begin transaction
30859
+  (0.0ms) SAVEPOINT active_record_1
30860
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30862
+  (0.0ms) SAVEPOINT active_record_1
30863
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30864
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30865
+  (0.0ms) SAVEPOINT active_record_1
30866
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "Fake User"]]
30867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30868
+  (0.0ms) SAVEPOINT active_record_1
30869
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30870
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30871
+  (0.0ms) SAVEPOINT active_record_1
30872
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30873
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30874
+  (0.0ms) SAVEPOINT active_record_1
30875
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "Fake User"]]
30876
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30877
+  (0.0ms) SAVEPOINT active_record_1
30878
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30879
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30880
+  (0.0ms) SAVEPOINT active_record_1
30881
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30883
+  (0.0ms) SAVEPOINT active_record_1
30884
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "Fake User"]]
30885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30886
+  (0.0ms) SELECT COUNT(*) AS count_all, user_name AS user_name, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY user_name, controller, action
30887
+  (0.0ms) rollback transaction
30888
+  (0.1ms) begin transaction
30889
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2014-03-07 00:00:00.000000' AND '2014-03-07 23:59:59.999999')
30890
+  (0.0ms) rollback transaction
30891
+  (0.1ms) begin transaction
30892
+  (0.0ms) SAVEPOINT active_record_1
30893
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30895
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2014-03-07 00:00:00.000000' AND '2014-03-07 23:59:59.999999')
30896
+  (0.0ms) rollback transaction
30897
+  (0.1ms) begin transaction
30898
+  (0.0ms) SAVEPOINT active_record_1
30899
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30900
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30901
+  (0.0ms) SAVEPOINT active_record_1
30902
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30903
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30904
+  (0.0ms) SAVEPOINT active_record_1
30905
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "Fake User"]]
30906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30907
+  (0.0ms) SAVEPOINT active_record_1
30908
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30909
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30910
+  (0.0ms) SAVEPOINT active_record_1
30911
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30912
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30913
+  (0.0ms) SAVEPOINT active_record_1
30914
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "Fake User"]]
30915
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30916
+  (0.0ms) SAVEPOINT active_record_1
30917
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.1"], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30919
+  (0.0ms) SAVEPOINT active_record_1
30920
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.2"], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30921
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30922
+  (0.0ms) SAVEPOINT active_record_1
30923
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", "127.0.0.3"], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "Fake User"]]
30924
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30925
+  (0.0ms) SELECT COUNT(*) AS count_all, ip_address AS ip_address FROM "audit_rails_audits" GROUP BY ip_address
30926
+  (0.0ms) rollback transaction
30927
+  (0.1ms) begin transaction
30928
+  (0.0ms) SAVEPOINT active_record_1
30929
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30931
+  (0.0ms) SAVEPOINT active_record_1
30932
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "Fake User"]]
30933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30934
+  (0.0ms) SAVEPOINT active_record_1
30935
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30936
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30937
+  (0.0ms) SAVEPOINT active_record_1
30938
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "Fake User"]]
30939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30940
+  (0.0ms) SAVEPOINT active_record_1
30941
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30942
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30943
+  (0.0ms) SAVEPOINT active_record_1
30944
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "Fake User"]]
30945
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30946
+  (0.0ms) SELECT COUNT(*) AS count_all, controller AS controller, action AS action FROM "audit_rails_audits" GROUP BY controller, action
30947
+  (0.0ms) rollback transaction
30948
+  (0.1ms) begin transaction
30949
+  (0.0ms) SAVEPOINT active_record_1
30950
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30951
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30952
+  (0.0ms) SAVEPOINT active_record_1
30953
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30954
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30955
+  (0.0ms) SAVEPOINT active_record_1
30956
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "Fake User"]]
30957
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30958
+  (0.0ms) SAVEPOINT active_record_1
30959
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30960
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30961
+  (0.0ms) SAVEPOINT active_record_1
30962
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30964
+  (0.0ms) SAVEPOINT active_record_1
30965
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "Fake User"]]
30966
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30967
+  (0.0ms) SAVEPOINT active_record_1
30968
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "home"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30970
+  (0.0ms) SAVEPOINT active_record_1
30971
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "John Smith"]]
30972
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30973
+  (0.0ms) SAVEPOINT active_record_1
30974
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "session"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", nil], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "Fake User"]]
30975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30976
+  (0.0ms) SELECT COUNT(*) AS count_all, strftime('%H', created_at) AS strftime_h_created_at FROM "audit_rails_audits" GROUP BY strftime('%H', created_at)
30977
+  (0.0ms) rollback transaction
30978
+  (0.1ms) begin transaction
30979
+  (0.0ms) rollback transaction
30980
+  (0.1ms) begin transaction
30981
+ Processing by AnonymousController#login as HTML
30982
+ Parameters: {"id"=>"1"}
30983
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2014-03-07 00:00:00.000000' AND '2014-03-07 23:59:59.999999')
30984
+  (0.0ms) SAVEPOINT active_record_1
30985
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "anonymous"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", "User logged in"], ["ip_address", "127.0.0.1"], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "Fake User"]]
30986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
30987
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
30988
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2014-03-07 00:00:00.000000' AND '2014-03-07 23:59:59.999999')
30989
+  (0.0ms) rollback transaction
30990
+  (0.1ms) begin transaction
30991
+ Processing by AuditRails::AuditsController#analytics as HTML
30992
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits"
30993
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
30994
+  (0.0ms) rollback transaction
30995
+  (0.1ms) begin transaction
30996
+ Processing by AuditRails::AuditsController#create as HTML
30997
+  (0.0ms) SAVEPOINT active_record_1
30998
+ SQL (0.0ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "ip_address", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?, ?) [["action", "visit-site"], ["controller", "xyz"], ["created_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["description", nil], ["ip_address", "0.0.0.0"], ["updated_at", Fri, 07 Mar 2014 00:29:22 UTC +00:00], ["user_name", "Fake User"]]
30999
+  (0.0ms) RELEASE SAVEPOINT active_record_1
31000
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
31001
+  (0.0ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'visit-site' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2014-03-07 00:00:00.000000' AND '2014-03-07 23:59:59.999999')
31002
+  (0.0ms) rollback transaction
31003
+  (0.1ms) begin transaction
31004
+  (0.0ms) rollback transaction
31005
+  (0.0ms) begin transaction
31006
+  (0.0ms) rollback transaction