redis_analytics 0.6.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile.lock +159 -40
- data/{LICENSE → MIT-LICENSE} +0 -0
- data/README.md +54 -64
- data/TODO.md +1 -0
- data/app/controllers/redis_analytics/api_controller.rb +50 -0
- data/app/controllers/redis_analytics/application_controller.rb +4 -0
- data/app/controllers/redis_analytics/visits_controller.rb +9 -0
- data/app/helpers/redis_analytics/application_helper.rb +4 -0
- data/app/helpers/redis_analytics/visits_helper.rb +74 -0
- data/app/views/layouts/redis_analytics/application.html.erb +17 -0
- data/app/views/redis_analytics/application/_footer.html.erb +3 -0
- data/{lib/redis_analytics/dashboard/views/footer.erb → app/views/redis_analytics/application/_footer.html.erb~} +0 -0
- data/{lib/redis_analytics/dashboard/views/header.erb → app/views/redis_analytics/application/_header.html.erb} +1 -1
- data/{lib/redis_analytics/dashboard/views/widgets/bounce_rate.erb → app/views/redis_analytics/visits/_bounce_rate.html.erb} +1 -1
- data/{lib/redis_analytics/dashboard/views/widgets/browsers_donut.erb → app/views/redis_analytics/visits/_browsers_donut.html.erb} +1 -1
- data/{lib/redis_analytics/dashboard/views/widgets/first_visits.erb → app/views/redis_analytics/visits/_first_visits.html.erb} +1 -1
- data/{lib/redis_analytics/dashboard/views/widgets/page_depth.erb → app/views/redis_analytics/visits/_page_depth.html.erb} +1 -1
- data/{lib/redis_analytics/dashboard/views/widgets/referers_donut.erb → app/views/redis_analytics/visits/_referers_donut.html.erb} +0 -0
- data/{lib/redis_analytics/dashboard/views/widgets/total_page_views.erb → app/views/redis_analytics/visits/_total_page_views.html.erb} +1 -1
- data/{lib/redis_analytics/dashboard/views/widgets/total_visits.erb → app/views/redis_analytics/visits/_total_visits.html.erb} +1 -1
- data/app/views/redis_analytics/visits/_unique_visits_line.html.erb +26 -0
- data/{lib/redis_analytics/dashboard/views/widgets/unique_visits_line.erb → app/views/redis_analytics/visits/_unique_visits_line.html.erb~} +1 -1
- data/app/views/redis_analytics/visits/_visit_duration.html.erb +3 -0
- data/{lib/redis_analytics/dashboard/views/widgets/visit_spark.erb → app/views/redis_analytics/visits/_visit_spark.html.erb} +1 -1
- data/{lib/redis_analytics/dashboard/views/widgets/visitor_recency_slices.erb → app/views/redis_analytics/visits/_visitor_recency_slices.html.erb} +1 -1
- data/{lib/redis_analytics/dashboard/views/widgets/visits_area.erb → app/views/redis_analytics/visits/_visits_area.html.erb} +2 -2
- data/{lib/redis_analytics/dashboard/views/widgets/visits_donut.erb → app/views/redis_analytics/visits/_visits_donut.html.erb} +0 -0
- data/{lib/redis_analytics/dashboard/views/visits_js.erb → app/views/redis_analytics/visits/_visits_js.html.erb} +13 -10
- data/{lib/redis_analytics/dashboard/views/widgets/world_map.erb → app/views/redis_analytics/visits/_world_map.html.erb} +1 -1
- data/app/views/redis_analytics/visits/index.html.erb +69 -0
- data/{lib/redis_analytics/dashboard/views/visits.erb → app/views/redis_analytics/visits/index.html.erb~} +0 -0
- data/bin/GeoIP.dat +0 -0
- data/config.ru +2 -2
- data/config/routes.rb +5 -0
- data/coverage/assets/0.8.0/application.css +799 -0
- data/coverage/assets/0.8.0/application.js +1559 -0
- data/coverage/assets/0.8.0/colorbox/border.png +0 -0
- data/coverage/assets/0.8.0/colorbox/controls.png +0 -0
- data/coverage/assets/0.8.0/colorbox/loading.gif +0 -0
- data/coverage/assets/0.8.0/colorbox/loading_background.png +0 -0
- data/coverage/assets/0.8.0/favicon_green.png +0 -0
- data/coverage/assets/0.8.0/favicon_red.png +0 -0
- data/coverage/assets/0.8.0/favicon_yellow.png +0 -0
- data/coverage/assets/0.8.0/loading.gif +0 -0
- data/coverage/assets/0.8.0/magnify.png +0 -0
- data/coverage/assets/0.8.0/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/coverage/assets/0.8.0/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/coverage/assets/0.8.0/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/coverage/assets/0.8.0/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/coverage/assets/0.8.0/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/coverage/assets/0.8.0/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/coverage/assets/0.8.0/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/coverage/assets/0.8.0/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/coverage/index.html +3484 -0
- data/lib/redis_analytics.rb +5 -12
- data/lib/redis_analytics/configuration.rb +2 -3
- data/lib/redis_analytics/engine.rb +18 -0
- data/lib/redis_analytics/filter.rb +1 -2
- data/lib/redis_analytics/helpers.rb +1 -2
- data/lib/redis_analytics/metrics.rb +1 -2
- data/lib/redis_analytics/time_ext.rb +0 -76
- data/lib/redis_analytics/tracker.rb +35 -24
- data/lib/redis_analytics/version.rb +2 -3
- data/lib/redis_analytics/visit.rb +4 -5
- data/lib/tasks/redis_analytics_tasks.rake +4 -0
- data/redis_analytics.gemspec +20 -20
- data/script/rails +8 -0
- data/spec/lib/redis_analytics/analytics_spec.rb +0 -59
- data/spec/lib/redis_analytics/configuration_spec.rb +19 -19
- data/spec/lib/redis_analytics/{dashboard_spec.rb → engine_spec.rb} +2 -8
- data/spec/lib/redis_analytics/filter_spec.rb +4 -4
- data/spec/lib/redis_analytics/tracker_spec.rb +45 -6
- data/spec/spec_helper.rb +2 -2
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +67 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/production.sqlite3 +0 -0
- data/test/dummy/log/development.log +1605 -0
- data/test/dummy/log/production.log +882 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/assets/application-ac39e235d42f60499cd65a4b78076ba3.css +14 -0
- data/test/dummy/public/assets/application-ac39e235d42f60499cd65a4b78076ba3.css.gz +0 -0
- data/test/dummy/public/assets/application-c900658d554ff9f314a2e1b97cd68997.js +10752 -0
- data/test/dummy/public/assets/application-c900658d554ff9f314a2e1b97cd68997.js.gz +0 -0
- data/test/dummy/public/assets/manifest-5bcba723c313582b1d428fc3bf592b29.json +1 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/tmp/cache/assets/C86/E20/sprockets%2F04d6293b6d7c30b20475e886dc634936 +0 -0
- data/test/dummy/tmp/cache/assets/C88/400/sprockets%2F1bb834b9f3b720193591960cf7f31497 +0 -0
- data/test/dummy/tmp/cache/assets/C8D/800/sprockets%2Fb484d3480591b77bf84376f1f41a6457 +0 -0
- data/test/dummy/tmp/cache/assets/C97/230/sprockets%2Ff8c56a6d1d5685424871464fc480f956 +0 -0
- data/test/dummy/tmp/cache/assets/C98/560/sprockets%2Ff14a2366122e6017b965b32290b8abb0 +0 -0
- data/test/dummy/tmp/cache/assets/CAE/7D0/sprockets%2F1f0b25ca08195d3582e4fe04396e9270 +0 -0
- data/test/dummy/tmp/cache/assets/CB9/550/sprockets%2F0505a9fb5602a3fae429f389832747d8 +0 -0
- data/test/dummy/tmp/cache/assets/CBA/030/sprockets%2F510aa1c63fe533f77a197367b79f2919 +0 -0
- data/test/dummy/tmp/cache/assets/CBC/630/sprockets%2F8fca8928788707a4ba625519ab402d58 +0 -0
- data/test/dummy/tmp/cache/assets/CC6/EE0/sprockets%2Fb6d3cc91f7b3559f985a978176b44324 +0 -0
- data/test/dummy/tmp/cache/assets/CC9/9C0/sprockets%2F84294e9b30cf387e6d8a35f82616a796 +0 -0
- data/test/dummy/tmp/cache/assets/CDA/880/sprockets%2F6b1913c56c962748122caf34704afdb5 +0 -0
- data/test/dummy/tmp/cache/assets/CDD/BF0/sprockets%2F1f5080b606781094922ecaccd9d508f2 +0 -0
- data/test/dummy/tmp/cache/assets/CF0/BB0/sprockets%2F48cd49adc4f96c8324c46c45641b6865 +0 -0
- data/test/dummy/tmp/cache/assets/CFE/380/sprockets%2F8e8d04799794da144a9907a9f82e0cf8 +0 -0
- data/test/dummy/tmp/cache/assets/D06/470/sprockets%2F2e9124aa82b45552ba5a8307f4f16a8e +0 -0
- data/test/dummy/tmp/cache/assets/D06/B80/sprockets%2Fb658eb46471a1b356c0e13962f1a52ee +0 -0
- data/test/dummy/tmp/cache/assets/D07/520/sprockets%2F0176f74cb205f694569fa21a53b2fa0e +0 -0
- data/test/dummy/tmp/cache/assets/D0A/3C0/sprockets%2F8fd1601c6d442f22a88d0e43bb87117f +0 -0
- data/test/dummy/tmp/cache/assets/D10/130/sprockets%2F7af0bd97720d268b9835405c8bae2d06 +0 -0
- data/test/dummy/tmp/cache/assets/D15/450/sprockets%2Fae3344670b608424cdc864eca5496fb9 +0 -0
- data/test/dummy/tmp/cache/assets/D16/7F0/sprockets%2F73d738bf9b779ad016ed62131d85cc16 +0 -0
- data/test/dummy/tmp/cache/assets/D16/A30/sprockets%2F23659e6e2161bb90c6f382ecbef73906 +0 -0
- data/test/dummy/tmp/cache/assets/D2B/060/sprockets%2Fd5891eb52eb6329a928461796e9ddfe5 +0 -0
- data/test/dummy/tmp/cache/assets/D32/810/sprockets%2F640ab72cec151bc94248b091f6b763bb +0 -0
- data/test/dummy/tmp/cache/assets/D37/C50/sprockets%2F00afdaa74ea16690227f771ae0879e1c +0 -0
- data/test/dummy/tmp/cache/assets/D39/A80/sprockets%2Ff850350eb319d86a5e0c02c2279cffa5 +0 -0
- data/test/dummy/tmp/cache/assets/D3F/170/sprockets%2F3b7a50f2bb29ad782e0352fc784d582f +0 -0
- data/test/dummy/tmp/cache/assets/D54/280/sprockets%2F8e51b269010978fe78fa369f6dfa1bf6 +0 -0
- data/test/dummy/tmp/cache/assets/D5C/120/sprockets%2F6b74e64b0422b8c574caba3a1746acd2 +0 -0
- data/test/dummy/tmp/cache/assets/D5D/E00/sprockets%2Fee3d10401f2a2d4a84f4fe56181fe1c1 +0 -0
- data/test/dummy/tmp/cache/assets/D68/310/sprockets%2Fa6108a4fca3b4012f99dcf46e24f5f60 +0 -0
- data/test/dummy/tmp/cache/assets/D6C/8C0/sprockets%2F06e1e915faab12cbf879a6b15b9136e7 +0 -0
- data/test/dummy/tmp/cache/assets/D70/310/sprockets%2Fab142f83166b2fc048379c9dfddd355a +0 -0
- data/test/dummy/tmp/cache/assets/D74/9F0/sprockets%2F59ed8bd7c6ca0dbe0f1921ee14667375 +0 -0
- data/test/dummy/tmp/cache/assets/D76/270/sprockets%2F006a046ae88edf3f8c84dc30ef8056d8 +0 -0
- data/test/dummy/tmp/cache/assets/D82/590/sprockets%2Fa6f6f970aa669d95690af983eb2b6a5c +0 -0
- data/test/dummy/tmp/cache/assets/D8D/440/sprockets%2F486b3eff5dce57385a599ef92be18c65 +0 -0
- data/test/dummy/tmp/cache/assets/D93/FF0/sprockets%2Fd06dd1928f37e37a29edb4dbaeb20403 +0 -0
- data/test/dummy/tmp/cache/assets/D99/350/sprockets%2F31bdb7fc1c62c06d71678d04fd0db9b8 +0 -0
- data/test/dummy/tmp/cache/assets/D9C/070/sprockets%2F9be5d5a71da06ce64d0ed17b3937e15d +0 -0
- data/test/dummy/tmp/cache/assets/D9E/5B0/sprockets%2Fd3f2f56488b7ac4890a2ad0bfef7c322 +0 -0
- data/test/dummy/tmp/cache/assets/DA4/020/sprockets%2F0fc75dd594e2c890f93a6dcd7332aaa8 +0 -0
- data/test/dummy/tmp/cache/assets/DA4/6B0/sprockets%2F17a2e22cd7356ee86da5d99f0a08bbf7 +0 -0
- data/test/dummy/tmp/cache/assets/DA5/470/sprockets%2Fa49ebde3ec35e12d52892e188a5cfd90 +0 -0
- data/test/dummy/tmp/cache/assets/DA6/D90/sprockets%2Fe3d875d9f2fb7341ae0e31f64c90e6bf +0 -0
- data/test/dummy/tmp/cache/assets/DA7/CA0/sprockets%2F0a03bffc91afd8872e8986daf8a2309b +0 -0
- data/test/dummy/tmp/cache/assets/DAD/FC0/sprockets%2F9b6809cd65f83a6bfaee80543f9e0ab7 +0 -0
- data/test/dummy/tmp/cache/assets/DC4/410/sprockets%2F7c23fbd015fe022d7eed035b4ff3a59c +0 -0
- data/test/dummy/tmp/cache/assets/DCB/CA0/sprockets%2F940121ecc7ae38abf79cc78efadf2212 +0 -0
- data/test/dummy/tmp/cache/assets/DCC/C10/sprockets%2F7cb37eb6b6ca3028ffd5c5420d8d7fc1 +0 -0
- data/test/dummy/tmp/cache/assets/DCD/4E0/sprockets%2Fcff1de305ed821d80d98f4cafa27414d +0 -0
- data/test/dummy/tmp/cache/assets/E07/1E0/sprockets%2Fd79ac6cbbaf490e5a3f09ab8288d3c9e +0 -0
- data/test/dummy/tmp/cache/assets/E39/680/sprockets%2F1e91e9837edc18aeeaf8df3c82f2af0e +0 -0
- data/test/dummy/tmp/cache/assets/E56/670/sprockets%2Fbd0e4d12cea996e0d2eebaa879a17eca +0 -0
- data/test/dummy/tmp/cache/assets/E57/150/sprockets%2Fdfa6edddd9357edcafaf06c20d21e561 +0 -0
- data/test/dummy/tmp/cache/assets/E5B/2B0/sprockets%2Ffebbeb2ea0bcd485bf5b9bd6190b9f44 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/006eb7cc017cf18c3ea32cab97f0cc3c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/00afdaa74ea16690227f771ae0879e1c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0125613fec11977628d50d4198ef25f3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/04d6293b6d7c30b20475e886dc634936 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0c6b5095a86cd9aa4d15f4258a08f315 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/17a2e22cd7356ee86da5d99f0a08bbf7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/192691b9e0bedebfde12633bb3629d0b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1e91e9837edc18aeeaf8df3c82f2af0e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1f0b25ca08195d3582e4fe04396e9270 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/23659e6e2161bb90c6f382ecbef73906 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/23b9bf2d5f9b45144a2803844eaa826e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/243cc575289b3170af701574d19d6353 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/24abc0717cf109a24278323c0d6756a0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2b6cc5f28a12c36cd4095832a5107969 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/326592f095651b767387e7c1d2b01dfe +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3bb822a002a8951f71e53f450090799b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3f91dad02acd15d7437b62ddca53c58b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/486b3eff5dce57385a599ef92be18c65 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/48cd49adc4f96c8324c46c45641b6865 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4b5d99d538ae32ad329cb37e413dbacc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4e89e9cec1b5e275bfeb078a9abfef44 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/510aa1c63fe533f77a197367b79f2919 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5cf60638cb580f41112a5a83eb3b72ef +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5dfbbe7f012f6cb7c29b1298cd9ff406 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/640ab72cec151bc94248b091f6b763bb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6760a9b2947edeec5433ca0ff9d7a295 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6b74e64b0422b8c574caba3a1746acd2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6c2f18f7338d56feecce32780357521c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6f292799ddb92a69f64c5a60c921a2d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/731ed4a2128ad4c7240bb520611c8404 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/73d738bf9b779ad016ed62131d85cc16 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7477fb841e65b8c9c48c40c13935a851 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/77412054774bd02630c93c1e8ac6b26a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7751914469530dae0646d92467e9d72e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/794a40bf52fa0deda8b4e5efa8ac523a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7af0bd97720d268b9835405c8bae2d06 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/82ecc84179ce77914906a81d29b483cf +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8d62150b658b3a8b6fed7e8951f52392 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8e51b269010978fe78fa369f6dfa1bf6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8e8d04799794da144a9907a9f82e0cf8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8ea331810c31cbe1ba34b91a02f769e7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8fd1601c6d442f22a88d0e43bb87117f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/953bc37b1ee0915247dba29773960202 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/978f6f32b21b72d3e89b0c0f6f3a4a83 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/994386d11af17e88b6d107b83f41f8b5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9b077a68a557a208cf34297edadebdd2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9b54afa4ef026f4c288feeec49f2f526 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9b6809cd65f83a6bfaee80543f9e0ab7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9be5d5a71da06ce64d0ed17b3937e15d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a29d0dc527ff5ce1252ccf6370514620 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a49ebde3ec35e12d52892e188a5cfd90 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a6108a4fca3b4012f99dcf46e24f5f60 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/aad6778bf60f6f1919628606c92cfd6f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ab142f83166b2fc048379c9dfddd355a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ae3344670b608424cdc864eca5496fb9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b01583a39abd5ce0a3d2b2967c6f75bd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b2780e7c581a2f0cb1d61346c6d1c1cd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b3f0354298e8a43af381a6e42a03f0bc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b52b477f01cb65c5e1c6a91f6f0be20c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b6fbc3e4c5191de2cc58174a3eeb7cfc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bb39143b57041f96c48b71e92f7e09f2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/be0b9e741941205338510e296868aab2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c9e69990b1552b575b271aaabbfc4eb5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c9eeea792acbd377e29de43d6b491291 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cb67795d1180b371b5b749662b9adefb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cfdf466647e83eb93e0d6630e4b51a25 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cff1de305ed821d80d98f4cafa27414d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d5891eb52eb6329a928461796e9ddfe5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d7491740e7757fe2ec57fd6d25461e5c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d80f54242a6e7f4399481b7357d439a4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/df16db3bfcc56fafc73b853b7999be1f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dfa6edddd9357edcafaf06c20d21e561 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e3d875d9f2fb7341ae0e31f64c90e6bf +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e7bd439b274a2155050b47e5a64ea72d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ee3d10401f2a2d4a84f4fe56181fe1c1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f14a2366122e6017b965b32290b8abb0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f9a412f49281cc7e6512f0787f7ba05f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/febbeb2ea0bcd485bf5b9bd6190b9f44 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/00afdaa74ea16690227f771ae0879e1c +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/73d738bf9b779ad016ed62131d85cc16 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/dfa6edddd9357edcafaf06c20d21e561 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/production/sprockets/febbeb2ea0bcd485bf5b9bd6190b9f44 +0 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/redis_analytics_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- data/{lib/redis_analytics/dashboard/public/javascripts/vendor/bootstrap → vendor/assets/javascripts/redis_analytics}/bootstrap.min.js +0 -0
- data/vendor/assets/javascripts/redis_analytics/engine.js +15 -0
- data/{lib/redis_analytics/dashboard/public/javascripts/vendor → vendor/assets/javascripts/redis_analytics}/jquery-jvectormap-1.2.2.min.js +0 -0
- data/{lib/redis_analytics/dashboard/public/javascripts/vendor → vendor/assets/javascripts/redis_analytics}/jquery-jvectormap-world-mill-en.js +0 -0
- data/{lib/redis_analytics/dashboard/public/javascripts/vendor → vendor/assets/javascripts/redis_analytics}/morris.min.js +0 -0
- data/{lib/redis_analytics/dashboard/public/javascripts/vendor → vendor/assets/javascripts/redis_analytics}/raphael-min.js +0 -0
- data/{lib/redis_analytics/dashboard/public/css → vendor/assets/stylesheets/redis_analytics}/bootstrap-responsive.min.css +0 -0
- data/{lib/redis_analytics/dashboard/public/css → vendor/assets/stylesheets/redis_analytics}/bootstrap.min.css +0 -0
- data/vendor/assets/stylesheets/redis_analytics/engine.css +12 -0
- data/{lib/redis_analytics/dashboard/public/css → vendor/assets/stylesheets/redis_analytics}/jquery-jvectormap-1.2.2.css +0 -0
- data/{lib/redis_analytics/dashboard/public/css → vendor/assets/stylesheets/redis_analytics}/morris.css +0 -0
- metadata +307 -122
- data/bin/redis_analytics_dashboard +0 -17
- data/lib/redis_analytics/analytics.rb +0 -45
- data/lib/redis_analytics/api.rb +0 -60
- data/lib/redis_analytics/dashboard.rb +0 -53
- data/lib/redis_analytics/dashboard/public/img/favicon.ico +0 -0
- data/lib/redis_analytics/dashboard/public/img/glyphicons-halflings-white.png +0 -0
- data/lib/redis_analytics/dashboard/public/img/glyphicons-halflings.png +0 -0
- data/lib/redis_analytics/dashboard/public/javascripts/vendor/jquery-1.9.1.min.js +0 -5
- data/lib/redis_analytics/dashboard/views/activity.erb +0 -7
- data/lib/redis_analytics/dashboard/views/dialogs/unique_visits.erb +0 -41
- data/lib/redis_analytics/dashboard/views/dialogs/visits.erb +0 -40
- data/lib/redis_analytics/dashboard/views/layout.erb +0 -16
- data/lib/redis_analytics/dashboard/views/widgets/visit_duration.erb +0 -3
- data/lib/redis_analytics/railtie.rb +0 -13
- data/wsd.png +0 -0
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
|
2
|
+
|
|
3
|
+
require 'rails/all'
|
|
4
|
+
|
|
5
|
+
Bundler.require(*Rails.groups)
|
|
6
|
+
|
|
7
|
+
# -- configure redis analytics
|
|
8
|
+
require "redis_analytics"
|
|
9
|
+
|
|
10
|
+
RedisAnalytics.configure do |configuration|
|
|
11
|
+
configuration.redis_connection = Redis.new(:host => 'localhost', :port => '6379')
|
|
12
|
+
configuration.redis_namespace = 'ra'
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
module Dummy
|
|
16
|
+
class Application < Rails::Application
|
|
17
|
+
# Settings in config/environments/* take precedence over those specified here.
|
|
18
|
+
# Application configuration should go into files in config/initializers
|
|
19
|
+
# -- all .rb files in that directory are automatically loaded.
|
|
20
|
+
|
|
21
|
+
# Custom directories with classes and modules you want to be autoloadable.
|
|
22
|
+
# config.autoload_paths += %W(#{config.root}/extras)
|
|
23
|
+
|
|
24
|
+
# Only load the plugins named here, in the order given (default is alphabetical).
|
|
25
|
+
# :all can be used as a placeholder for all plugins not explicitly named.
|
|
26
|
+
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
|
27
|
+
|
|
28
|
+
# Activate observers that should always be running.
|
|
29
|
+
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
|
30
|
+
|
|
31
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
|
32
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
|
33
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
|
34
|
+
|
|
35
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
|
36
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
|
37
|
+
# config.i18n.default_locale = :de
|
|
38
|
+
|
|
39
|
+
# Configure the default encoding used in templates for Ruby 1.9.
|
|
40
|
+
config.encoding = "utf-8"
|
|
41
|
+
|
|
42
|
+
# Configure sensitive parameters which will be filtered from the log file.
|
|
43
|
+
config.filter_parameters += [:password]
|
|
44
|
+
|
|
45
|
+
# Enable escaping HTML in JSON.
|
|
46
|
+
config.active_support.escape_html_entities_in_json = true
|
|
47
|
+
|
|
48
|
+
# Use SQL instead of Active Record's schema dumper when creating the database.
|
|
49
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
|
50
|
+
# like if you have constraints or database-specific column types
|
|
51
|
+
# config.active_record.schema_format = :sql
|
|
52
|
+
|
|
53
|
+
# Enforce whitelist mode for mass assignment.
|
|
54
|
+
# This will create an empty whitelist of attributes available for mass-assignment for all models
|
|
55
|
+
# in your app. As such, your models will need to explicitly whitelist or blacklist accessible
|
|
56
|
+
# parameters by using an attr_accessible or attr_protected declaration.
|
|
57
|
+
# config.active_record.whitelist_attributes = true
|
|
58
|
+
|
|
59
|
+
# Enable the asset pipeline
|
|
60
|
+
config.assets.enabled = true
|
|
61
|
+
|
|
62
|
+
# Version of your assets, change this if you want to expire all your assets
|
|
63
|
+
config.assets.version = '1.0'
|
|
64
|
+
|
|
65
|
+
end
|
|
66
|
+
end
|
|
67
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# SQLite version 3.x
|
|
2
|
+
# gem install sqlite3
|
|
3
|
+
#
|
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
|
5
|
+
# gem 'sqlite3'
|
|
6
|
+
development:
|
|
7
|
+
adapter: sqlite3
|
|
8
|
+
database: db/development.sqlite3
|
|
9
|
+
pool: 5
|
|
10
|
+
timeout: 5000
|
|
11
|
+
|
|
12
|
+
# Warning: The database defined as "test" will be erased and
|
|
13
|
+
# re-generated from your development database when you run "rake".
|
|
14
|
+
# Do not set this db to the same as development or production.
|
|
15
|
+
test:
|
|
16
|
+
adapter: sqlite3
|
|
17
|
+
database: db/test.sqlite3
|
|
18
|
+
pool: 5
|
|
19
|
+
timeout: 5000
|
|
20
|
+
|
|
21
|
+
production:
|
|
22
|
+
adapter: sqlite3
|
|
23
|
+
database: db/production.sqlite3
|
|
24
|
+
pool: 5
|
|
25
|
+
timeout: 5000
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Dummy::Application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
|
3
|
+
|
|
4
|
+
# In the development environment your application's code is reloaded on
|
|
5
|
+
# every request. This slows down response time but is perfect for development
|
|
6
|
+
# since you don't have to restart the web server when you make code changes.
|
|
7
|
+
config.cache_classes = false
|
|
8
|
+
|
|
9
|
+
# Log error messages when you accidentally call methods on nil.
|
|
10
|
+
config.whiny_nils = true
|
|
11
|
+
|
|
12
|
+
# Show full error reports and disable caching
|
|
13
|
+
config.consider_all_requests_local = true
|
|
14
|
+
config.action_controller.perform_caching = false
|
|
15
|
+
|
|
16
|
+
# Don't care if the mailer can't send
|
|
17
|
+
config.action_mailer.raise_delivery_errors = false
|
|
18
|
+
|
|
19
|
+
# Print deprecation notices to the Rails logger
|
|
20
|
+
config.active_support.deprecation = :log
|
|
21
|
+
|
|
22
|
+
# Only use best-standards-support built into browsers
|
|
23
|
+
config.action_dispatch.best_standards_support = :builtin
|
|
24
|
+
|
|
25
|
+
# Raise exception on mass assignment protection for Active Record models
|
|
26
|
+
# config.active_record.mass_assignment_sanitizer = :strict
|
|
27
|
+
|
|
28
|
+
# Log the query plan for queries taking more than this (works
|
|
29
|
+
# with SQLite, MySQL, and PostgreSQL)
|
|
30
|
+
# config.active_record.auto_explain_threshold_in_seconds = 0.5
|
|
31
|
+
|
|
32
|
+
# Do not compress assets
|
|
33
|
+
config.assets.compress = false
|
|
34
|
+
|
|
35
|
+
# Expands the lines which load the assets
|
|
36
|
+
config.assets.debug = true
|
|
37
|
+
end
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
Dummy::Application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
|
3
|
+
|
|
4
|
+
# Code is not reloaded between requests
|
|
5
|
+
config.cache_classes = true
|
|
6
|
+
|
|
7
|
+
# Full error reports are disabled and caching is turned on
|
|
8
|
+
config.consider_all_requests_local = false
|
|
9
|
+
config.action_controller.perform_caching = true
|
|
10
|
+
|
|
11
|
+
# Disable Rails's static asset server (Apache or nginx will already do this)
|
|
12
|
+
config.serve_static_assets = false
|
|
13
|
+
|
|
14
|
+
# Compress JavaScripts and CSS
|
|
15
|
+
config.assets.compress = true
|
|
16
|
+
|
|
17
|
+
# Don't fallback to assets pipeline if a precompiled asset is missed
|
|
18
|
+
config.assets.compile = false
|
|
19
|
+
|
|
20
|
+
# Generate digests for assets URLs
|
|
21
|
+
config.assets.digest = true
|
|
22
|
+
|
|
23
|
+
# Defaults to nil and saved in location specified by config.assets.prefix
|
|
24
|
+
# config.assets.manifest = YOUR_PATH
|
|
25
|
+
|
|
26
|
+
# Specifies the header that your server uses for sending files
|
|
27
|
+
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
|
|
28
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
|
29
|
+
|
|
30
|
+
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
|
|
31
|
+
# config.force_ssl = true
|
|
32
|
+
|
|
33
|
+
# See everything in the log (default is :info)
|
|
34
|
+
# config.log_level = :debug
|
|
35
|
+
|
|
36
|
+
# Prepend all log lines with the following tags
|
|
37
|
+
# config.log_tags = [ :subdomain, :uuid ]
|
|
38
|
+
|
|
39
|
+
# Use a different logger for distributed setups
|
|
40
|
+
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
|
|
41
|
+
|
|
42
|
+
# Use a different cache store in production
|
|
43
|
+
# config.cache_store = :mem_cache_store
|
|
44
|
+
|
|
45
|
+
# Enable serving of images, stylesheets, and JavaScripts from an asset server
|
|
46
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
|
47
|
+
|
|
48
|
+
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
|
|
49
|
+
# config.assets.precompile += %w( search.js )
|
|
50
|
+
|
|
51
|
+
# Disable delivery errors, bad email addresses will be ignored
|
|
52
|
+
# config.action_mailer.raise_delivery_errors = false
|
|
53
|
+
|
|
54
|
+
# Enable threaded mode
|
|
55
|
+
# config.threadsafe!
|
|
56
|
+
|
|
57
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
|
58
|
+
# the I18n.default_locale when a translation can not be found)
|
|
59
|
+
config.i18n.fallbacks = true
|
|
60
|
+
|
|
61
|
+
# Send deprecation notices to registered listeners
|
|
62
|
+
config.active_support.deprecation = :notify
|
|
63
|
+
|
|
64
|
+
# Log the query plan for queries taking more than this (works
|
|
65
|
+
# with SQLite, MySQL, and PostgreSQL)
|
|
66
|
+
# config.active_record.auto_explain_threshold_in_seconds = 0.5
|
|
67
|
+
end
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Dummy::Application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
|
3
|
+
|
|
4
|
+
# The test environment is used exclusively to run your application's
|
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
|
8
|
+
config.cache_classes = true
|
|
9
|
+
|
|
10
|
+
# Configure static asset server for tests with Cache-Control for performance
|
|
11
|
+
config.serve_static_assets = true
|
|
12
|
+
config.static_cache_control = "public, max-age=3600"
|
|
13
|
+
|
|
14
|
+
# Log error messages when you accidentally call methods on nil
|
|
15
|
+
config.whiny_nils = true
|
|
16
|
+
|
|
17
|
+
# Show full error reports and disable caching
|
|
18
|
+
config.consider_all_requests_local = true
|
|
19
|
+
config.action_controller.perform_caching = false
|
|
20
|
+
|
|
21
|
+
# Raise exceptions instead of rendering exception templates
|
|
22
|
+
config.action_dispatch.show_exceptions = false
|
|
23
|
+
|
|
24
|
+
# Disable request forgery protection in test environment
|
|
25
|
+
config.action_controller.allow_forgery_protection = false
|
|
26
|
+
|
|
27
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
|
28
|
+
# The :test delivery method accumulates sent emails in the
|
|
29
|
+
# ActionMailer::Base.deliveries array.
|
|
30
|
+
config.action_mailer.delivery_method = :test
|
|
31
|
+
|
|
32
|
+
# Raise exception on mass assignment protection for Active Record models
|
|
33
|
+
config.active_record.mass_assignment_sanitizer = :strict
|
|
34
|
+
|
|
35
|
+
# Print deprecation notices to the stderr
|
|
36
|
+
config.active_support.deprecation = :stderr
|
|
37
|
+
end
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
|
5
|
+
|
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Add new inflection rules using the following format
|
|
4
|
+
# (all these examples are active by default):
|
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
|
8
|
+
# inflect.irregular 'person', 'people'
|
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
|
10
|
+
# end
|
|
11
|
+
#
|
|
12
|
+
# These inflection rules are supported but not enabled by default:
|
|
13
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
|
14
|
+
# inflect.acronym 'RESTful'
|
|
15
|
+
# end
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
|
7
|
+
Dummy::Application.config.secret_token = 'cc7209a03d4c4ba3fd58ceda10e7f83af48f5887afb024745ff8a8ed62dc88d4d97a7ab2549166dbd630045fd6f7db8d290862f459d74f18942ed323eafd4ff2'
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
|
|
4
|
+
|
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
|
6
|
+
# which shouldn't be used to store highly confidential information
|
|
7
|
+
# (create the session table with "rails generate session_migration")
|
|
8
|
+
# Dummy::Application.config.session_store :active_record_store
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
#
|
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
|
4
|
+
# is enabled by default.
|
|
5
|
+
|
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
|
8
|
+
wrap_parameters format: [:json]
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
# Disable root element in JSON by default.
|
|
12
|
+
ActiveSupport.on_load(:active_record) do
|
|
13
|
+
self.include_root_in_json = false
|
|
14
|
+
end
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,1605 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
Started GET "/" for 127.0.0.1 at 2014-04-23 15:15:15 +0530
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
Started GET "/redis_analytics" for 127.0.0.1 at 2014-04-23 15:15:21 +0530
|
|
7
|
+
Processing by RedisAnalytics::VisitsController#index as HTML
|
|
8
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_area.html.erb (0.6ms)
|
|
9
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_donut.html.erb (1.4ms)
|
|
10
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_referers_donut.html.erb (0.8ms)
|
|
11
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_browsers_donut.html.erb (0.5ms)
|
|
12
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_unique_visits_line.html.erb (0.7ms)
|
|
13
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_world_map.html.erb (0.7ms)
|
|
14
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visitor_recency_slices.html.erb (0.6ms)
|
|
15
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_visits.html.erb (0.5ms)
|
|
16
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_page_views.html.erb (0.4ms)
|
|
17
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_page_depth.html.erb (0.6ms)
|
|
18
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_bounce_rate.html.erb (0.7ms)
|
|
19
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visit_duration.html.erb (0.7ms)
|
|
20
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_first_visits.html.erb (1.2ms)
|
|
21
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_js.html.erb (3.1ms)
|
|
22
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/index.html.erb within layouts/redis_analytics/application (206.9ms)
|
|
23
|
+
Completed 500 Internal Server Error in 399ms
|
|
24
|
+
|
|
25
|
+
ActionView::Template::Error (/Users/schubert/Code/private/redis_analytics/vendor/assets/stylesheets/redis_analytics/engine_application.css has already been required):
|
|
26
|
+
2: <html>
|
|
27
|
+
3: <head>
|
|
28
|
+
4: <title>RedisAnalytics</title>
|
|
29
|
+
5: <%= stylesheet_link_tag "redis_analytics/engine_application", :media => "all" %>
|
|
30
|
+
6: <%= javascript_include_tag "redis_analytics/engine_application" %>
|
|
31
|
+
7: <%= csrf_meta_tags %>
|
|
32
|
+
8: </head>
|
|
33
|
+
sprockets (2.12.0) lib/sprockets/base.rb:392:in `circular_call_protection'
|
|
34
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
35
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
36
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
37
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
38
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
39
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
40
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
41
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
|
|
42
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
43
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
44
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
45
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
|
|
46
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
|
|
47
|
+
sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
|
|
48
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
49
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
50
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
51
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
52
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
53
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
54
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
55
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
|
|
56
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
57
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
58
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
59
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
|
|
60
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
|
|
61
|
+
sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
|
|
62
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
63
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
64
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
65
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
66
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
67
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
68
|
+
sprockets (2.12.0) lib/sprockets/bundled_asset.rb:16:in `initialize'
|
|
69
|
+
sprockets (2.12.0) lib/sprockets/base.rb:377:in `new'
|
|
70
|
+
sprockets (2.12.0) lib/sprockets/base.rb:377:in `build_asset'
|
|
71
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
72
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
73
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
74
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
75
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
76
|
+
sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset'
|
|
77
|
+
sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]'
|
|
78
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:223:in `lookup_asset_for_path'
|
|
79
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:165:in `block in stylesheet_link_tag'
|
|
80
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:163:in `map'
|
|
81
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:163:in `stylesheet_link_tag'
|
|
82
|
+
/Users/schubert/Code/private/redis_analytics/app/views/layouts/redis_analytics/application.html.erb:5:in `___sers_schubert__ode_private_redis_analytics_app_views_layouts_redis_analytics_application_html_erb___784947552385584497_70159129477440'
|
|
83
|
+
actionview (4.1.0) lib/action_view/template.rb:145:in `block in render'
|
|
84
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
|
|
85
|
+
actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
|
|
86
|
+
actionview (4.1.0) lib/action_view/template.rb:143:in `render'
|
|
87
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout'
|
|
88
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
|
|
89
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
|
90
|
+
actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
|
91
|
+
actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
|
92
|
+
actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
|
|
93
|
+
actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
|
94
|
+
actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
|
|
95
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
|
96
|
+
actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
|
|
97
|
+
actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
|
|
98
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
99
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
|
100
|
+
activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
|
101
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
|
102
|
+
activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
|
103
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
|
104
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
|
105
|
+
activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
|
106
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
|
107
|
+
actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
108
|
+
actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
|
109
|
+
actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
|
|
110
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
111
|
+
actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
112
|
+
activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
|
113
|
+
actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
114
|
+
actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
115
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
116
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
|
117
|
+
activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
118
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
|
|
119
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
120
|
+
actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
121
|
+
activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
122
|
+
actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
|
|
123
|
+
actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
|
|
124
|
+
actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
|
|
125
|
+
actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
126
|
+
actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
|
|
127
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
|
128
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
|
129
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
|
130
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
131
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
132
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
133
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
134
|
+
railties (4.1.0) lib/rails/engine.rb:514:in `call'
|
|
135
|
+
railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
|
|
136
|
+
railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
|
|
137
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
138
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
139
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
140
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
141
|
+
/Users/schubert/Code/private/redis_analytics/lib/redis_analytics/tracker.rb:17:in `call!'
|
|
142
|
+
/Users/schubert/Code/private/redis_analytics/lib/redis_analytics/tracker.rb:11:in `call'
|
|
143
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
144
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
145
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
146
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
147
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
|
148
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
149
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
150
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
151
|
+
activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
|
|
152
|
+
activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
|
153
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
154
|
+
activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
|
155
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
156
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
157
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
158
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
159
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
160
|
+
railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
161
|
+
railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
162
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
163
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
164
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
165
|
+
railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
|
|
166
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
167
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
168
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
169
|
+
activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
|
170
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
171
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
172
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
|
173
|
+
railties (4.1.0) lib/rails/engine.rb:514:in `call'
|
|
174
|
+
railties (4.1.0) lib/rails/application.rb:144:in `call'
|
|
175
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
176
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
177
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
178
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
179
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
180
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
|
|
184
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
|
|
185
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (25.3ms)
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
Started GET "/redis_analytics" for 127.0.0.1 at 2014-04-23 15:17:19 +0530
|
|
189
|
+
Processing by RedisAnalytics::VisitsController#index as HTML
|
|
190
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_area.html.erb (0.1ms)
|
|
191
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_donut.html.erb (0.1ms)
|
|
192
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_referers_donut.html.erb (0.1ms)
|
|
193
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_browsers_donut.html.erb (0.1ms)
|
|
194
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_unique_visits_line.html.erb (0.1ms)
|
|
195
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_world_map.html.erb (0.1ms)
|
|
196
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visitor_recency_slices.html.erb (0.1ms)
|
|
197
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_visits.html.erb (0.1ms)
|
|
198
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_page_views.html.erb (0.1ms)
|
|
199
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_page_depth.html.erb (0.1ms)
|
|
200
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_bounce_rate.html.erb (0.1ms)
|
|
201
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visit_duration.html.erb (0.1ms)
|
|
202
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_first_visits.html.erb (0.1ms)
|
|
203
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_js.html.erb (1.5ms)
|
|
204
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/index.html.erb within layouts/redis_analytics/application (20.1ms)
|
|
205
|
+
Completed 500 Internal Server Error in 112ms
|
|
206
|
+
|
|
207
|
+
ActionView::Template::Error (/Users/schubert/Code/private/redis_analytics/vendor/assets/stylesheets/redis_analytics/engine_application.css has already been required):
|
|
208
|
+
2: <html>
|
|
209
|
+
3: <head>
|
|
210
|
+
4: <title>RedisAnalytics</title>
|
|
211
|
+
5: <%= stylesheet_link_tag "redis_analytics/engine_application", :media => "all" %>
|
|
212
|
+
6: <%= javascript_include_tag "redis_analytics/engine_application" %>
|
|
213
|
+
7: <%= csrf_meta_tags %>
|
|
214
|
+
8: </head>
|
|
215
|
+
sprockets (2.12.0) lib/sprockets/base.rb:392:in `circular_call_protection'
|
|
216
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
217
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
218
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
219
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
220
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
221
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
222
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
223
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
|
|
224
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
225
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
226
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
227
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
|
|
228
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
|
|
229
|
+
sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
|
|
230
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
231
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
232
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
233
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
234
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
235
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
236
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
237
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
|
|
238
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
239
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
240
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
241
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
|
|
242
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
|
|
243
|
+
sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
|
|
244
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
245
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
246
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
247
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
248
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
249
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
250
|
+
sprockets (2.12.0) lib/sprockets/bundled_asset.rb:16:in `initialize'
|
|
251
|
+
sprockets (2.12.0) lib/sprockets/base.rb:377:in `new'
|
|
252
|
+
sprockets (2.12.0) lib/sprockets/base.rb:377:in `build_asset'
|
|
253
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
254
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
255
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
256
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
257
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
258
|
+
sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset'
|
|
259
|
+
sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]'
|
|
260
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:223:in `lookup_asset_for_path'
|
|
261
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:165:in `block in stylesheet_link_tag'
|
|
262
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:163:in `map'
|
|
263
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:163:in `stylesheet_link_tag'
|
|
264
|
+
/Users/schubert/Code/private/redis_analytics/app/views/layouts/redis_analytics/application.html.erb:5:in `___sers_schubert__ode_private_redis_analytics_app_views_layouts_redis_analytics_application_html_erb___784947552385584497_70159129477440'
|
|
265
|
+
actionview (4.1.0) lib/action_view/template.rb:145:in `block in render'
|
|
266
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
|
|
267
|
+
actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
|
|
268
|
+
actionview (4.1.0) lib/action_view/template.rb:143:in `render'
|
|
269
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout'
|
|
270
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
|
|
271
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
|
272
|
+
actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
|
273
|
+
actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
|
274
|
+
actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
|
|
275
|
+
actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
|
276
|
+
actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
|
|
277
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
|
278
|
+
actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
|
|
279
|
+
actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
|
|
280
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
281
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
|
282
|
+
activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
|
283
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
|
284
|
+
activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
|
285
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
|
286
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
|
287
|
+
activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
|
288
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
|
289
|
+
actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
290
|
+
actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
|
291
|
+
actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
|
|
292
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
293
|
+
actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
294
|
+
activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
|
295
|
+
actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
296
|
+
actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
297
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
298
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
|
299
|
+
activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
300
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
|
|
301
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
302
|
+
actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
303
|
+
activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
304
|
+
actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
|
|
305
|
+
actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
|
|
306
|
+
actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
|
|
307
|
+
actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
308
|
+
actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
|
|
309
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
|
310
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
|
311
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
|
312
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
313
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
314
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
315
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
316
|
+
railties (4.1.0) lib/rails/engine.rb:514:in `call'
|
|
317
|
+
railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
|
|
318
|
+
railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
|
|
319
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
320
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
321
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
322
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
323
|
+
/Users/schubert/Code/private/redis_analytics/lib/redis_analytics/tracker.rb:17:in `call!'
|
|
324
|
+
/Users/schubert/Code/private/redis_analytics/lib/redis_analytics/tracker.rb:11:in `call'
|
|
325
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
326
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
327
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
328
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
329
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
|
330
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
331
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
332
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
333
|
+
activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
|
|
334
|
+
activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
|
335
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
336
|
+
activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
|
337
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
338
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
339
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
340
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
341
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
342
|
+
railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
343
|
+
railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
344
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
345
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
346
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
347
|
+
railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
|
|
348
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
349
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
350
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
351
|
+
activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
|
352
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
353
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
354
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
|
355
|
+
railties (4.1.0) lib/rails/engine.rb:514:in `call'
|
|
356
|
+
railties (4.1.0) lib/rails/application.rb:144:in `call'
|
|
357
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
358
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
359
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
360
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
361
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
362
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms)
|
|
366
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
|
|
367
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (21.5ms)
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
Started GET "/redis_analytics" for 127.0.0.1 at 2014-04-23 15:22:11 +0530
|
|
371
|
+
Processing by RedisAnalytics::VisitsController#index as HTML
|
|
372
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_area.html.erb (0.5ms)
|
|
373
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_donut.html.erb (0.5ms)
|
|
374
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_referers_donut.html.erb (0.5ms)
|
|
375
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_browsers_donut.html.erb (0.4ms)
|
|
376
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_unique_visits_line.html.erb (0.4ms)
|
|
377
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_world_map.html.erb (0.5ms)
|
|
378
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visitor_recency_slices.html.erb (0.4ms)
|
|
379
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_visits.html.erb (0.4ms)
|
|
380
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_page_views.html.erb (0.4ms)
|
|
381
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_page_depth.html.erb (0.4ms)
|
|
382
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_bounce_rate.html.erb (0.4ms)
|
|
383
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visit_duration.html.erb (0.5ms)
|
|
384
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_first_visits.html.erb (0.5ms)
|
|
385
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_js.html.erb (7.4ms)
|
|
386
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/index.html.erb within layouts/redis_analytics/application (48.0ms)
|
|
387
|
+
Completed 500 Internal Server Error in 81ms
|
|
388
|
+
|
|
389
|
+
ActionView::Template::Error (/Users/schubert/Code/private/redis_analytics/vendor/assets/stylesheets/redis_analytics/engine.css has already been required):
|
|
390
|
+
2: <html>
|
|
391
|
+
3: <head>
|
|
392
|
+
4: <title>RedisAnalytics</title>
|
|
393
|
+
5: <%= stylesheet_link_tag "redis_analytics/engine", :media => "all" %>
|
|
394
|
+
6: <%= javascript_include_tag "redis_analytics/engine" %>
|
|
395
|
+
7: <%= csrf_meta_tags %>
|
|
396
|
+
8: </head>
|
|
397
|
+
sprockets (2.12.0) lib/sprockets/base.rb:392:in `circular_call_protection'
|
|
398
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
399
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
400
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
401
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
402
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
403
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
404
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
405
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
|
|
406
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
407
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
408
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
409
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
|
|
410
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
|
|
411
|
+
sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
|
|
412
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
413
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
414
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
415
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
416
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
417
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
418
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
419
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
|
|
420
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
421
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
422
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
423
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
|
|
424
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
|
|
425
|
+
sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
|
|
426
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
427
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
428
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
429
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
430
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
431
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
432
|
+
sprockets (2.12.0) lib/sprockets/bundled_asset.rb:16:in `initialize'
|
|
433
|
+
sprockets (2.12.0) lib/sprockets/base.rb:377:in `new'
|
|
434
|
+
sprockets (2.12.0) lib/sprockets/base.rb:377:in `build_asset'
|
|
435
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
436
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
437
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
438
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
439
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
440
|
+
sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset'
|
|
441
|
+
sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]'
|
|
442
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:223:in `lookup_asset_for_path'
|
|
443
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:165:in `block in stylesheet_link_tag'
|
|
444
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:163:in `map'
|
|
445
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:163:in `stylesheet_link_tag'
|
|
446
|
+
/Users/schubert/Code/private/redis_analytics/app/views/layouts/redis_analytics/application.html.erb:5:in `___sers_schubert__ode_private_redis_analytics_app_views_layouts_redis_analytics_application_html_erb__735595205067313999_70350943619100'
|
|
447
|
+
actionview (4.1.0) lib/action_view/template.rb:145:in `block in render'
|
|
448
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
|
|
449
|
+
actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
|
|
450
|
+
actionview (4.1.0) lib/action_view/template.rb:143:in `render'
|
|
451
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout'
|
|
452
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
|
|
453
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
|
454
|
+
actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
|
455
|
+
actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
|
456
|
+
actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
|
|
457
|
+
actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
|
458
|
+
actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
|
|
459
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
|
460
|
+
actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
|
|
461
|
+
actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
|
|
462
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
463
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
|
464
|
+
activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
|
465
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
|
466
|
+
activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
|
467
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
|
468
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
|
469
|
+
activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
|
470
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
|
471
|
+
actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
472
|
+
actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
|
473
|
+
actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
|
|
474
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
475
|
+
actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
476
|
+
activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
|
477
|
+
actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
478
|
+
actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
479
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
480
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
|
481
|
+
activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
482
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
|
|
483
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
484
|
+
actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
485
|
+
activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
486
|
+
actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
|
|
487
|
+
actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
|
|
488
|
+
actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
|
|
489
|
+
actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
490
|
+
actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
|
|
491
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
|
492
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
|
493
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
|
494
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
495
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
496
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
497
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
498
|
+
railties (4.1.0) lib/rails/engine.rb:514:in `call'
|
|
499
|
+
railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
|
|
500
|
+
railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
|
|
501
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
502
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
503
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
504
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
505
|
+
/Users/schubert/Code/private/redis_analytics/lib/redis_analytics/tracker.rb:17:in `call!'
|
|
506
|
+
/Users/schubert/Code/private/redis_analytics/lib/redis_analytics/tracker.rb:11:in `call'
|
|
507
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
508
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
509
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
510
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
511
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
|
512
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
513
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
514
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
515
|
+
activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
|
|
516
|
+
activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
|
517
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
518
|
+
activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
|
519
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
520
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
521
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
522
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
523
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
524
|
+
railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
525
|
+
railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
526
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
527
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
528
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
529
|
+
railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
|
|
530
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
531
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
532
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
533
|
+
activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
|
534
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
535
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
536
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
|
537
|
+
railties (4.1.0) lib/rails/engine.rb:514:in `call'
|
|
538
|
+
railties (4.1.0) lib/rails/application.rb:144:in `call'
|
|
539
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
540
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
541
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
542
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
543
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
544
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
|
|
548
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
|
|
549
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.8ms)
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
Started GET "/redis_analytics" for 127.0.0.1 at 2014-04-23 15:23:08 +0530
|
|
553
|
+
Processing by RedisAnalytics::VisitsController#index as HTML
|
|
554
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_area.html.erb (0.6ms)
|
|
555
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_donut.html.erb (0.5ms)
|
|
556
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_referers_donut.html.erb (0.5ms)
|
|
557
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_browsers_donut.html.erb (0.7ms)
|
|
558
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_unique_visits_line.html.erb (0.5ms)
|
|
559
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_world_map.html.erb (0.5ms)
|
|
560
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visitor_recency_slices.html.erb (0.4ms)
|
|
561
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_visits.html.erb (0.4ms)
|
|
562
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_page_views.html.erb (0.5ms)
|
|
563
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_page_depth.html.erb (0.6ms)
|
|
564
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_bounce_rate.html.erb (0.7ms)
|
|
565
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visit_duration.html.erb (0.5ms)
|
|
566
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_first_visits.html.erb (0.4ms)
|
|
567
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_js.html.erb (2.7ms)
|
|
568
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/index.html.erb within layouts/redis_analytics/application (46.9ms)
|
|
569
|
+
Completed 500 Internal Server Error in 82ms
|
|
570
|
+
|
|
571
|
+
ActionView::Template::Error (/Users/schubert/Code/private/redis_analytics/vendor/assets/stylesheets/redis_analytics/engine.css has already been required):
|
|
572
|
+
2: <html>
|
|
573
|
+
3: <head>
|
|
574
|
+
4: <title>RedisAnalytics</title>
|
|
575
|
+
5: <%= stylesheet_link_tag "redis_analytics/engine", :media => "all" %>
|
|
576
|
+
6: <%= javascript_include_tag "redis_analytics/engine" %>
|
|
577
|
+
7: <%= csrf_meta_tags %>
|
|
578
|
+
8: </head>
|
|
579
|
+
sprockets (2.12.0) lib/sprockets/base.rb:392:in `circular_call_protection'
|
|
580
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
581
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
582
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
583
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
584
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
585
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
586
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
587
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
|
|
588
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
589
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
590
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
591
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
|
|
592
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
|
|
593
|
+
sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
|
|
594
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
595
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
596
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
597
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
598
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
599
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
600
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
601
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
|
|
602
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
603
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
604
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
605
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
|
|
606
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
|
|
607
|
+
sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
|
|
608
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
609
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
610
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
611
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
612
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
613
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
614
|
+
sprockets (2.12.0) lib/sprockets/bundled_asset.rb:16:in `initialize'
|
|
615
|
+
sprockets (2.12.0) lib/sprockets/base.rb:377:in `new'
|
|
616
|
+
sprockets (2.12.0) lib/sprockets/base.rb:377:in `build_asset'
|
|
617
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
618
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
619
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
620
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
621
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
622
|
+
sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset'
|
|
623
|
+
sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]'
|
|
624
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:223:in `lookup_asset_for_path'
|
|
625
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:165:in `block in stylesheet_link_tag'
|
|
626
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:163:in `map'
|
|
627
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:163:in `stylesheet_link_tag'
|
|
628
|
+
/Users/schubert/Code/private/redis_analytics/app/views/layouts/redis_analytics/application.html.erb:5:in `___sers_schubert__ode_private_redis_analytics_app_views_layouts_redis_analytics_application_html_erb__1941979358150640550_70112493263320'
|
|
629
|
+
actionview (4.1.0) lib/action_view/template.rb:145:in `block in render'
|
|
630
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
|
|
631
|
+
actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
|
|
632
|
+
actionview (4.1.0) lib/action_view/template.rb:143:in `render'
|
|
633
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout'
|
|
634
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
|
|
635
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
|
636
|
+
actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
|
637
|
+
actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
|
638
|
+
actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
|
|
639
|
+
actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
|
640
|
+
actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
|
|
641
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
|
642
|
+
actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
|
|
643
|
+
actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
|
|
644
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
645
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
|
646
|
+
activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
|
647
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
|
648
|
+
activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
|
649
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
|
650
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
|
651
|
+
activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
|
652
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
|
653
|
+
actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
654
|
+
actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
|
655
|
+
actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
|
|
656
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
657
|
+
actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
658
|
+
activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
|
659
|
+
actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
660
|
+
actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
661
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
662
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
|
663
|
+
activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
664
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
|
|
665
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
666
|
+
actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
667
|
+
activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
668
|
+
actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
|
|
669
|
+
actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
|
|
670
|
+
actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
|
|
671
|
+
actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
672
|
+
actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
|
|
673
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
|
674
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
|
675
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
|
676
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
677
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
678
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
679
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
680
|
+
railties (4.1.0) lib/rails/engine.rb:514:in `call'
|
|
681
|
+
railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
|
|
682
|
+
railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
|
|
683
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
684
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
685
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
686
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
687
|
+
/Users/schubert/Code/private/redis_analytics/lib/redis_analytics/tracker.rb:17:in `call!'
|
|
688
|
+
/Users/schubert/Code/private/redis_analytics/lib/redis_analytics/tracker.rb:11:in `call'
|
|
689
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
690
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
691
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
692
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
693
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
|
694
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
695
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
696
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
697
|
+
activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
|
|
698
|
+
activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
|
699
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
700
|
+
activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
|
701
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
702
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
703
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
704
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
705
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
706
|
+
railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
707
|
+
railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
708
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
709
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
710
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
711
|
+
railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
|
|
712
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
713
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
714
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
715
|
+
activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
|
716
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
717
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
718
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
|
719
|
+
railties (4.1.0) lib/rails/engine.rb:514:in `call'
|
|
720
|
+
railties (4.1.0) lib/rails/application.rb:144:in `call'
|
|
721
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
722
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
723
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
724
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
725
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
726
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
|
|
730
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
|
|
731
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.6ms)
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
Started GET "/redis_analytics" for 127.0.0.1 at 2014-04-23 15:25:33 +0530
|
|
735
|
+
Processing by RedisAnalytics::VisitsController#index as HTML
|
|
736
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_area.html.erb (0.6ms)
|
|
737
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_donut.html.erb (0.5ms)
|
|
738
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_referers_donut.html.erb (3.6ms)
|
|
739
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_browsers_donut.html.erb (0.5ms)
|
|
740
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_unique_visits_line.html.erb (0.5ms)
|
|
741
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_world_map.html.erb (0.5ms)
|
|
742
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visitor_recency_slices.html.erb (0.6ms)
|
|
743
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_visits.html.erb (0.6ms)
|
|
744
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_page_views.html.erb (0.5ms)
|
|
745
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_page_depth.html.erb (0.5ms)
|
|
746
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_bounce_rate.html.erb (0.4ms)
|
|
747
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visit_duration.html.erb (0.6ms)
|
|
748
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_first_visits.html.erb (0.4ms)
|
|
749
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_js.html.erb (2.6ms)
|
|
750
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/index.html.erb within layouts/redis_analytics/application (61.0ms)
|
|
751
|
+
Completed 500 Internal Server Error in 96ms
|
|
752
|
+
|
|
753
|
+
ActionView::Template::Error (/Users/schubert/Code/private/redis_analytics/vendor/assets/stylesheets/redis_analytics/engine.css has already been required):
|
|
754
|
+
2: <html>
|
|
755
|
+
3: <head>
|
|
756
|
+
4: <title>RedisAnalytics</title>
|
|
757
|
+
5: <%= stylesheet_link_tag "redis_analytics/engine", :media => "all" %>
|
|
758
|
+
6: <%= javascript_include_tag "redis_analytics/engine" %>
|
|
759
|
+
7: <%= csrf_meta_tags %>
|
|
760
|
+
8: </head>
|
|
761
|
+
sprockets (2.12.0) lib/sprockets/base.rb:392:in `circular_call_protection'
|
|
762
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
763
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
764
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
765
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
766
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
767
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
768
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
769
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
|
|
770
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
771
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
772
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
773
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
|
|
774
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
|
|
775
|
+
sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
|
|
776
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
777
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
778
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
779
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
780
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
781
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
782
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
783
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
|
|
784
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
785
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
786
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
787
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
|
|
788
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
|
|
789
|
+
sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
|
|
790
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
791
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
792
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
793
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
794
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
795
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
796
|
+
sprockets (2.12.0) lib/sprockets/bundled_asset.rb:16:in `initialize'
|
|
797
|
+
sprockets (2.12.0) lib/sprockets/base.rb:377:in `new'
|
|
798
|
+
sprockets (2.12.0) lib/sprockets/base.rb:377:in `build_asset'
|
|
799
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
800
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
801
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
802
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
803
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
804
|
+
sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset'
|
|
805
|
+
sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]'
|
|
806
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:223:in `lookup_asset_for_path'
|
|
807
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:165:in `block in stylesheet_link_tag'
|
|
808
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:163:in `map'
|
|
809
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:163:in `stylesheet_link_tag'
|
|
810
|
+
/Users/schubert/Code/private/redis_analytics/app/views/layouts/redis_analytics/application.html.erb:5:in `___sers_schubert__ode_private_redis_analytics_app_views_layouts_redis_analytics_application_html_erb___3530475792405577640_70263349598260'
|
|
811
|
+
actionview (4.1.0) lib/action_view/template.rb:145:in `block in render'
|
|
812
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
|
|
813
|
+
actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
|
|
814
|
+
actionview (4.1.0) lib/action_view/template.rb:143:in `render'
|
|
815
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout'
|
|
816
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
|
|
817
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
|
818
|
+
actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
|
819
|
+
actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
|
820
|
+
actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
|
|
821
|
+
actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
|
822
|
+
actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
|
|
823
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
|
824
|
+
actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
|
|
825
|
+
actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
|
|
826
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
827
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
|
828
|
+
activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
|
829
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
|
830
|
+
activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
|
831
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
|
832
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
|
833
|
+
activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
|
834
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
|
835
|
+
actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
836
|
+
actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
|
837
|
+
actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
|
|
838
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
839
|
+
actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
840
|
+
activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
|
841
|
+
actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
842
|
+
actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
843
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
844
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
|
845
|
+
activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
846
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
|
|
847
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
848
|
+
actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
849
|
+
activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
850
|
+
actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
|
|
851
|
+
actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
|
|
852
|
+
actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
|
|
853
|
+
actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
854
|
+
actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
|
|
855
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
|
856
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
|
857
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
|
858
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
859
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
860
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
861
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
862
|
+
railties (4.1.0) lib/rails/engine.rb:514:in `call'
|
|
863
|
+
railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
|
|
864
|
+
railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
|
|
865
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
866
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
867
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
868
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
869
|
+
/Users/schubert/Code/private/redis_analytics/lib/redis_analytics/tracker.rb:17:in `call!'
|
|
870
|
+
/Users/schubert/Code/private/redis_analytics/lib/redis_analytics/tracker.rb:11:in `call'
|
|
871
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
872
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
873
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
874
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
875
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
|
876
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
877
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
878
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
879
|
+
activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
|
|
880
|
+
activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
|
881
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
882
|
+
activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
|
883
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
884
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
885
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
886
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
887
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
888
|
+
railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
889
|
+
railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
890
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
891
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
892
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
893
|
+
railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
|
|
894
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
895
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
896
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
897
|
+
activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
|
898
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
899
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
900
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
|
901
|
+
railties (4.1.0) lib/rails/engine.rb:514:in `call'
|
|
902
|
+
railties (4.1.0) lib/rails/application.rb:144:in `call'
|
|
903
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
904
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
905
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
906
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
907
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
908
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
909
|
+
|
|
910
|
+
|
|
911
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
|
|
912
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
|
|
913
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.1ms)
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
Started GET "/redis_analytics" for 127.0.0.1 at 2014-04-23 15:26:23 +0530
|
|
917
|
+
Processing by RedisAnalytics::VisitsController#index as HTML
|
|
918
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_area.html.erb (0.7ms)
|
|
919
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_donut.html.erb (0.5ms)
|
|
920
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_referers_donut.html.erb (0.5ms)
|
|
921
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_browsers_donut.html.erb (0.4ms)
|
|
922
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_unique_visits_line.html.erb (0.5ms)
|
|
923
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_world_map.html.erb (0.5ms)
|
|
924
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visitor_recency_slices.html.erb (0.5ms)
|
|
925
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_visits.html.erb (0.4ms)
|
|
926
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_page_views.html.erb (0.5ms)
|
|
927
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_page_depth.html.erb (0.5ms)
|
|
928
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_bounce_rate.html.erb (0.7ms)
|
|
929
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visit_duration.html.erb (0.5ms)
|
|
930
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_first_visits.html.erb (0.4ms)
|
|
931
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_js.html.erb (2.5ms)
|
|
932
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/index.html.erb within layouts/redis_analytics/application (48.3ms)
|
|
933
|
+
Completed 500 Internal Server Error in 81ms
|
|
934
|
+
|
|
935
|
+
ActionView::Template::Error (/Users/schubert/Code/private/redis_analytics/vendor/assets/stylesheets/redis_analytics/engine.css has already been required):
|
|
936
|
+
2: <html>
|
|
937
|
+
3: <head>
|
|
938
|
+
4: <title>RedisAnalytics</title>
|
|
939
|
+
5: <%= stylesheet_link_tag "redis_analytics/engine", :media => "all" %>
|
|
940
|
+
6: <%= javascript_include_tag "redis_analytics/engine" %>
|
|
941
|
+
7: <%= csrf_meta_tags %>
|
|
942
|
+
8: </head>
|
|
943
|
+
sprockets (2.12.0) lib/sprockets/base.rb:392:in `circular_call_protection'
|
|
944
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
945
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
946
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
947
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
948
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
949
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
950
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
951
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
|
|
952
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
953
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
954
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
955
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
|
|
956
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
|
|
957
|
+
sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
|
|
958
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
959
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
960
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
961
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
962
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
963
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
964
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
965
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
|
|
966
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
967
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
968
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
969
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
|
|
970
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
|
|
971
|
+
sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
|
|
972
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
973
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
974
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
975
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
976
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
977
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
978
|
+
sprockets (2.12.0) lib/sprockets/bundled_asset.rb:16:in `initialize'
|
|
979
|
+
sprockets (2.12.0) lib/sprockets/base.rb:377:in `new'
|
|
980
|
+
sprockets (2.12.0) lib/sprockets/base.rb:377:in `build_asset'
|
|
981
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
982
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
983
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
984
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
985
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
986
|
+
sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset'
|
|
987
|
+
sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]'
|
|
988
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:223:in `lookup_asset_for_path'
|
|
989
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:165:in `block in stylesheet_link_tag'
|
|
990
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:163:in `map'
|
|
991
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:163:in `stylesheet_link_tag'
|
|
992
|
+
/Users/schubert/Code/private/redis_analytics/app/views/layouts/redis_analytics/application.html.erb:5:in `___sers_schubert__ode_private_redis_analytics_app_views_layouts_redis_analytics_application_html_erb___1090973320093016065_70251757000580'
|
|
993
|
+
actionview (4.1.0) lib/action_view/template.rb:145:in `block in render'
|
|
994
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
|
|
995
|
+
actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
|
|
996
|
+
actionview (4.1.0) lib/action_view/template.rb:143:in `render'
|
|
997
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout'
|
|
998
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
|
|
999
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
|
1000
|
+
actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
|
1001
|
+
actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
|
1002
|
+
actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
|
|
1003
|
+
actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
|
1004
|
+
actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
|
|
1005
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
|
1006
|
+
actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
|
|
1007
|
+
actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
|
|
1008
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
1009
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
|
1010
|
+
activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
|
1011
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
|
1012
|
+
activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
|
1013
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
|
1014
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
|
1015
|
+
activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
|
1016
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
|
1017
|
+
actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
1018
|
+
actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
|
1019
|
+
actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
|
|
1020
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
1021
|
+
actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
1022
|
+
activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
|
1023
|
+
actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
1024
|
+
actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
1025
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
1026
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
|
1027
|
+
activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
1028
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
|
|
1029
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
1030
|
+
actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
1031
|
+
activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
1032
|
+
actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
|
|
1033
|
+
actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
|
|
1034
|
+
actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
|
|
1035
|
+
actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
1036
|
+
actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
|
|
1037
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
|
1038
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
|
1039
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
|
1040
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
1041
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
1042
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
1043
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
1044
|
+
railties (4.1.0) lib/rails/engine.rb:514:in `call'
|
|
1045
|
+
railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
|
|
1046
|
+
railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
|
|
1047
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
1048
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
1049
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
1050
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
1051
|
+
/Users/schubert/Code/private/redis_analytics/lib/redis_analytics/tracker.rb:17:in `call!'
|
|
1052
|
+
/Users/schubert/Code/private/redis_analytics/lib/redis_analytics/tracker.rb:11:in `call'
|
|
1053
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
1054
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
1055
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
1056
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
1057
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
|
1058
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
1059
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
1060
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
1061
|
+
activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
|
|
1062
|
+
activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
|
1063
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
1064
|
+
activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
|
1065
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
1066
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
1067
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
1068
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
1069
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
1070
|
+
railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
1071
|
+
railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
1072
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
1073
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1074
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
1075
|
+
railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
|
|
1076
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
1077
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
1078
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
1079
|
+
activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
|
1080
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
1081
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
1082
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
|
1083
|
+
railties (4.1.0) lib/rails/engine.rb:514:in `call'
|
|
1084
|
+
railties (4.1.0) lib/rails/application.rb:144:in `call'
|
|
1085
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
1086
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
1087
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
1088
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
1089
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
1090
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
1091
|
+
|
|
1092
|
+
|
|
1093
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
|
|
1094
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms)
|
|
1095
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.4ms)
|
|
1096
|
+
|
|
1097
|
+
|
|
1098
|
+
Started GET "/redis_analytics" for 127.0.0.1 at 2014-04-23 15:26:24 +0530
|
|
1099
|
+
Processing by RedisAnalytics::VisitsController#index as HTML
|
|
1100
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_area.html.erb (0.1ms)
|
|
1101
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_donut.html.erb (0.1ms)
|
|
1102
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_referers_donut.html.erb (0.1ms)
|
|
1103
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_browsers_donut.html.erb (0.1ms)
|
|
1104
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_unique_visits_line.html.erb (0.1ms)
|
|
1105
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_world_map.html.erb (0.1ms)
|
|
1106
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visitor_recency_slices.html.erb (0.1ms)
|
|
1107
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_visits.html.erb (0.1ms)
|
|
1108
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_page_views.html.erb (0.1ms)
|
|
1109
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_page_depth.html.erb (0.1ms)
|
|
1110
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_bounce_rate.html.erb (0.0ms)
|
|
1111
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visit_duration.html.erb (0.0ms)
|
|
1112
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_first_visits.html.erb (0.1ms)
|
|
1113
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_js.html.erb (1.6ms)
|
|
1114
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/index.html.erb within layouts/redis_analytics/application (21.9ms)
|
|
1115
|
+
Completed 500 Internal Server Error in 50ms
|
|
1116
|
+
|
|
1117
|
+
ActionView::Template::Error (/Users/schubert/Code/private/redis_analytics/vendor/assets/stylesheets/redis_analytics/engine.css has already been required):
|
|
1118
|
+
2: <html>
|
|
1119
|
+
3: <head>
|
|
1120
|
+
4: <title>RedisAnalytics</title>
|
|
1121
|
+
5: <%= stylesheet_link_tag "redis_analytics/engine", :media => "all" %>
|
|
1122
|
+
6: <%= javascript_include_tag "redis_analytics/engine" %>
|
|
1123
|
+
7: <%= csrf_meta_tags %>
|
|
1124
|
+
8: </head>
|
|
1125
|
+
sprockets (2.12.0) lib/sprockets/base.rb:392:in `circular_call_protection'
|
|
1126
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
1127
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
1128
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
1129
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
1130
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
1131
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
1132
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
1133
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
|
|
1134
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
1135
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
1136
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
1137
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
|
|
1138
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
|
|
1139
|
+
sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
|
|
1140
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
1141
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
1142
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
1143
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
1144
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
1145
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
1146
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
1147
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
|
|
1148
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
1149
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
1150
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
1151
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
|
|
1152
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
|
|
1153
|
+
sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
|
|
1154
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
1155
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
1156
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
1157
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
1158
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
1159
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
1160
|
+
sprockets (2.12.0) lib/sprockets/bundled_asset.rb:16:in `initialize'
|
|
1161
|
+
sprockets (2.12.0) lib/sprockets/base.rb:377:in `new'
|
|
1162
|
+
sprockets (2.12.0) lib/sprockets/base.rb:377:in `build_asset'
|
|
1163
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
1164
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
1165
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
1166
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
1167
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
1168
|
+
sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset'
|
|
1169
|
+
sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]'
|
|
1170
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:223:in `lookup_asset_for_path'
|
|
1171
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:165:in `block in stylesheet_link_tag'
|
|
1172
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:163:in `map'
|
|
1173
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:163:in `stylesheet_link_tag'
|
|
1174
|
+
/Users/schubert/Code/private/redis_analytics/app/views/layouts/redis_analytics/application.html.erb:5:in `___sers_schubert__ode_private_redis_analytics_app_views_layouts_redis_analytics_application_html_erb___1090973320093016065_70251757000580'
|
|
1175
|
+
actionview (4.1.0) lib/action_view/template.rb:145:in `block in render'
|
|
1176
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
|
|
1177
|
+
actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
|
|
1178
|
+
actionview (4.1.0) lib/action_view/template.rb:143:in `render'
|
|
1179
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout'
|
|
1180
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
|
|
1181
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
|
1182
|
+
actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
|
1183
|
+
actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
|
1184
|
+
actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
|
|
1185
|
+
actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
|
1186
|
+
actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
|
|
1187
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
|
1188
|
+
actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
|
|
1189
|
+
actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
|
|
1190
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
1191
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
|
1192
|
+
activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
|
1193
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
|
1194
|
+
activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
|
1195
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
|
1196
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
|
1197
|
+
activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
|
1198
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
|
1199
|
+
actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
1200
|
+
actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
|
1201
|
+
actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
|
|
1202
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
1203
|
+
actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
1204
|
+
activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
|
1205
|
+
actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
1206
|
+
actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
1207
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
1208
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
|
1209
|
+
activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
1210
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
|
|
1211
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
1212
|
+
actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
1213
|
+
activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
1214
|
+
actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
|
|
1215
|
+
actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
|
|
1216
|
+
actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
|
|
1217
|
+
actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
1218
|
+
actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
|
|
1219
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
|
1220
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
|
1221
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
|
1222
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
1223
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
1224
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
1225
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
1226
|
+
railties (4.1.0) lib/rails/engine.rb:514:in `call'
|
|
1227
|
+
railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
|
|
1228
|
+
railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
|
|
1229
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
1230
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
1231
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
1232
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
1233
|
+
/Users/schubert/Code/private/redis_analytics/lib/redis_analytics/tracker.rb:17:in `call!'
|
|
1234
|
+
/Users/schubert/Code/private/redis_analytics/lib/redis_analytics/tracker.rb:11:in `call'
|
|
1235
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
1236
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
1237
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
1238
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
1239
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
|
1240
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
1241
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
1242
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
1243
|
+
activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
|
|
1244
|
+
activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
|
1245
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
1246
|
+
activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
|
1247
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
1248
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
1249
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
1250
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
1251
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
1252
|
+
railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
1253
|
+
railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
1254
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
1255
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1256
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
1257
|
+
railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
|
|
1258
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
1259
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
1260
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
1261
|
+
activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
|
1262
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
1263
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
1264
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
|
1265
|
+
railties (4.1.0) lib/rails/engine.rb:514:in `call'
|
|
1266
|
+
railties (4.1.0) lib/rails/application.rb:144:in `call'
|
|
1267
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
1268
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
1269
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
1270
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
1271
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
1272
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
1273
|
+
|
|
1274
|
+
|
|
1275
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
|
|
1276
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms)
|
|
1277
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.7ms)
|
|
1278
|
+
|
|
1279
|
+
|
|
1280
|
+
Started GET "/redis_analytics" for 127.0.0.1 at 2014-04-23 15:26:26 +0530
|
|
1281
|
+
Processing by RedisAnalytics::VisitsController#index as HTML
|
|
1282
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_area.html.erb (0.1ms)
|
|
1283
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_donut.html.erb (0.1ms)
|
|
1284
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_referers_donut.html.erb (0.1ms)
|
|
1285
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_browsers_donut.html.erb (0.1ms)
|
|
1286
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_unique_visits_line.html.erb (0.1ms)
|
|
1287
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_world_map.html.erb (0.1ms)
|
|
1288
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visitor_recency_slices.html.erb (0.0ms)
|
|
1289
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_visits.html.erb (0.1ms)
|
|
1290
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_page_views.html.erb (0.1ms)
|
|
1291
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_page_depth.html.erb (0.2ms)
|
|
1292
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_bounce_rate.html.erb (0.1ms)
|
|
1293
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visit_duration.html.erb (0.1ms)
|
|
1294
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_first_visits.html.erb (0.1ms)
|
|
1295
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_js.html.erb (1.5ms)
|
|
1296
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/index.html.erb within layouts/redis_analytics/application (21.7ms)
|
|
1297
|
+
Completed 500 Internal Server Error in 57ms
|
|
1298
|
+
|
|
1299
|
+
ActionView::Template::Error (/Users/schubert/Code/private/redis_analytics/vendor/assets/stylesheets/redis_analytics/engine.css has already been required):
|
|
1300
|
+
2: <html>
|
|
1301
|
+
3: <head>
|
|
1302
|
+
4: <title>RedisAnalytics</title>
|
|
1303
|
+
5: <%= stylesheet_link_tag "redis_analytics/engine", :media => "all" %>
|
|
1304
|
+
6: <%= javascript_include_tag "redis_analytics/engine" %>
|
|
1305
|
+
7: <%= csrf_meta_tags %>
|
|
1306
|
+
8: </head>
|
|
1307
|
+
sprockets (2.12.0) lib/sprockets/base.rb:392:in `circular_call_protection'
|
|
1308
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
1309
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
1310
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
1311
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
1312
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
1313
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
1314
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
1315
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
|
|
1316
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
1317
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
1318
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
1319
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
|
|
1320
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
|
|
1321
|
+
sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
|
|
1322
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
1323
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
1324
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
1325
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
1326
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
1327
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
1328
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
|
1329
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `each'
|
|
1330
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
|
1331
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
|
1332
|
+
sprockets (2.12.0) lib/sprockets/processed_asset.rb:16:in `initialize'
|
|
1333
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `new'
|
|
1334
|
+
sprockets (2.12.0) lib/sprockets/base.rb:374:in `block in build_asset'
|
|
1335
|
+
sprockets (2.12.0) lib/sprockets/base.rb:395:in `circular_call_protection'
|
|
1336
|
+
sprockets (2.12.0) lib/sprockets/base.rb:373:in `build_asset'
|
|
1337
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
1338
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
1339
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
1340
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
1341
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
1342
|
+
sprockets (2.12.0) lib/sprockets/bundled_asset.rb:16:in `initialize'
|
|
1343
|
+
sprockets (2.12.0) lib/sprockets/base.rb:377:in `new'
|
|
1344
|
+
sprockets (2.12.0) lib/sprockets/base.rb:377:in `build_asset'
|
|
1345
|
+
sprockets (2.12.0) lib/sprockets/index.rb:94:in `block in build_asset'
|
|
1346
|
+
sprockets (2.12.0) lib/sprockets/caching.rb:58:in `cache_asset'
|
|
1347
|
+
sprockets (2.12.0) lib/sprockets/index.rb:93:in `build_asset'
|
|
1348
|
+
sprockets (2.12.0) lib/sprockets/base.rb:287:in `find_asset'
|
|
1349
|
+
sprockets (2.12.0) lib/sprockets/index.rb:61:in `find_asset'
|
|
1350
|
+
sprockets (2.12.0) lib/sprockets/environment.rb:75:in `find_asset'
|
|
1351
|
+
sprockets (2.12.0) lib/sprockets/base.rb:295:in `[]'
|
|
1352
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:223:in `lookup_asset_for_path'
|
|
1353
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:165:in `block in stylesheet_link_tag'
|
|
1354
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:163:in `map'
|
|
1355
|
+
sprockets-rails (2.1.1) lib/sprockets/rails/helper.rb:163:in `stylesheet_link_tag'
|
|
1356
|
+
/Users/schubert/Code/private/redis_analytics/app/views/layouts/redis_analytics/application.html.erb:5:in `___sers_schubert__ode_private_redis_analytics_app_views_layouts_redis_analytics_application_html_erb___1090973320093016065_70251757000580'
|
|
1357
|
+
actionview (4.1.0) lib/action_view/template.rb:145:in `block in render'
|
|
1358
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:161:in `instrument'
|
|
1359
|
+
actionview (4.1.0) lib/action_view/template.rb:339:in `instrument'
|
|
1360
|
+
actionview (4.1.0) lib/action_view/template.rb:143:in `render'
|
|
1361
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:67:in `render_with_layout'
|
|
1362
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:53:in `render_template'
|
|
1363
|
+
actionview (4.1.0) lib/action_view/renderer/template_renderer.rb:17:in `render'
|
|
1364
|
+
actionview (4.1.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
|
1365
|
+
actionview (4.1.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
|
1366
|
+
actionview (4.1.0) lib/action_view/rendering.rb:99:in `_render_template'
|
|
1367
|
+
actionpack (4.1.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
|
1368
|
+
actionview (4.1.0) lib/action_view/rendering.rb:82:in `render_to_body'
|
|
1369
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
|
1370
|
+
actionpack (4.1.0) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
|
|
1371
|
+
actionpack (4.1.0) lib/abstract_controller/rendering.rb:25:in `render'
|
|
1372
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
|
1373
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
|
1374
|
+
activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
|
1375
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
|
1376
|
+
activesupport (4.1.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
|
1377
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
|
1378
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
|
1379
|
+
activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
|
1380
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
|
1381
|
+
actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
|
1382
|
+
actionpack (4.1.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
|
1383
|
+
actionpack (4.1.0) lib/abstract_controller/base.rb:189:in `process_action'
|
|
1384
|
+
actionpack (4.1.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
1385
|
+
actionpack (4.1.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
1386
|
+
activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
|
1387
|
+
actionpack (4.1.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
1388
|
+
actionpack (4.1.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
1389
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
1390
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:159:in `block in instrument'
|
|
1391
|
+
activesupport (4.1.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
1392
|
+
activesupport (4.1.0) lib/active_support/notifications.rb:159:in `instrument'
|
|
1393
|
+
actionpack (4.1.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
1394
|
+
actionpack (4.1.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
1395
|
+
activerecord (4.1.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
1396
|
+
actionpack (4.1.0) lib/abstract_controller/base.rb:136:in `process'
|
|
1397
|
+
actionview (4.1.0) lib/action_view/rendering.rb:30:in `process'
|
|
1398
|
+
actionpack (4.1.0) lib/action_controller/metal.rb:195:in `dispatch'
|
|
1399
|
+
actionpack (4.1.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
1400
|
+
actionpack (4.1.0) lib/action_controller/metal.rb:231:in `block in action'
|
|
1401
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
|
|
1402
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
|
|
1403
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
|
|
1404
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
1405
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
1406
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
1407
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
1408
|
+
railties (4.1.0) lib/rails/engine.rb:514:in `call'
|
|
1409
|
+
railties (4.1.0) lib/rails/railtie.rb:194:in `public_send'
|
|
1410
|
+
railties (4.1.0) lib/rails/railtie.rb:194:in `method_missing'
|
|
1411
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
|
|
1412
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `each'
|
|
1413
|
+
actionpack (4.1.0) lib/action_dispatch/journey/router.rb:59:in `call'
|
|
1414
|
+
actionpack (4.1.0) lib/action_dispatch/routing/route_set.rb:676:in `call'
|
|
1415
|
+
/Users/schubert/Code/private/redis_analytics/lib/redis_analytics/tracker.rb:17:in `call!'
|
|
1416
|
+
/Users/schubert/Code/private/redis_analytics/lib/redis_analytics/tracker.rb:11:in `call'
|
|
1417
|
+
rack (1.5.2) lib/rack/etag.rb:23:in `call'
|
|
1418
|
+
rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
|
|
1419
|
+
rack (1.5.2) lib/rack/head.rb:11:in `call'
|
|
1420
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
1421
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/flash.rb:254:in `call'
|
|
1422
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
|
|
1423
|
+
rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
|
|
1424
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
1425
|
+
activerecord (4.1.0) lib/active_record/query_cache.rb:36:in `call'
|
|
1426
|
+
activerecord (4.1.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
|
|
1427
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
1428
|
+
activesupport (4.1.0) lib/active_support/callbacks.rb:82:in `run_callbacks'
|
|
1429
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
1430
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
1431
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
|
|
1432
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
1433
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
1434
|
+
railties (4.1.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
1435
|
+
railties (4.1.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
1436
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
1437
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1438
|
+
activesupport (4.1.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
1439
|
+
railties (4.1.0) lib/rails/rack/logger.rb:20:in `call'
|
|
1440
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
1441
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
|
1442
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
|
1443
|
+
activesupport (4.1.0) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
|
1444
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
1445
|
+
actionpack (4.1.0) lib/action_dispatch/middleware/static.rb:64:in `call'
|
|
1446
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
|
1447
|
+
railties (4.1.0) lib/rails/engine.rb:514:in `call'
|
|
1448
|
+
railties (4.1.0) lib/rails/application.rb:144:in `call'
|
|
1449
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
|
1450
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
|
1451
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
|
1452
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
|
1453
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
|
1454
|
+
/Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
|
1455
|
+
|
|
1456
|
+
|
|
1457
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
|
|
1458
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
|
|
1459
|
+
Rendered /Users/schubert/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.0ms)
|
|
1460
|
+
|
|
1461
|
+
|
|
1462
|
+
Started GET "/redis_analytics" for 127.0.0.1 at 2014-04-23 15:28:43 +0530
|
|
1463
|
+
Processing by RedisAnalytics::VisitsController#index as HTML
|
|
1464
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_area.html.erb (0.5ms)
|
|
1465
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_donut.html.erb (0.5ms)
|
|
1466
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_referers_donut.html.erb (0.5ms)
|
|
1467
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_browsers_donut.html.erb (0.7ms)
|
|
1468
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_unique_visits_line.html.erb (0.5ms)
|
|
1469
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_world_map.html.erb (0.5ms)
|
|
1470
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visitor_recency_slices.html.erb (0.4ms)
|
|
1471
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_visits.html.erb (0.4ms)
|
|
1472
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_page_views.html.erb (0.7ms)
|
|
1473
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_page_depth.html.erb (0.7ms)
|
|
1474
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_bounce_rate.html.erb (0.4ms)
|
|
1475
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visit_duration.html.erb (0.4ms)
|
|
1476
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_first_visits.html.erb (0.4ms)
|
|
1477
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_js.html.erb (2.8ms)
|
|
1478
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/index.html.erb within layouts/redis_analytics/application (57.1ms)
|
|
1479
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/application/_header.html.erb (1.6ms)
|
|
1480
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/application/_footer.html.erb (0.6ms)
|
|
1481
|
+
Completed 200 OK in 465ms (Views: 464.7ms | ActiveRecord: 0.0ms)
|
|
1482
|
+
|
|
1483
|
+
|
|
1484
|
+
Started GET "/assets/redis_analytics/jquery-jvectormap-1.2.2.css?body=1" for 127.0.0.1 at 2014-04-23 15:28:44 +0530
|
|
1485
|
+
|
|
1486
|
+
|
|
1487
|
+
Started GET "/assets/redis_analytics/morris.css?body=1" for 127.0.0.1 at 2014-04-23 15:28:44 +0530
|
|
1488
|
+
|
|
1489
|
+
|
|
1490
|
+
Started GET "/assets/redis_analytics/bootstrap.min.js?body=1" for 127.0.0.1 at 2014-04-23 15:28:44 +0530
|
|
1491
|
+
|
|
1492
|
+
|
|
1493
|
+
Started GET "/assets/redis_analytics/bootstrap.min.css?body=1" for 127.0.0.1 at 2014-04-23 15:28:44 +0530
|
|
1494
|
+
|
|
1495
|
+
|
|
1496
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-04-23 15:28:44 +0530
|
|
1497
|
+
|
|
1498
|
+
|
|
1499
|
+
Started GET "/assets/redis_analytics/engine.css?body=1" for 127.0.0.1 at 2014-04-23 15:28:44 +0530
|
|
1500
|
+
|
|
1501
|
+
|
|
1502
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-04-23 15:28:44 +0530
|
|
1503
|
+
|
|
1504
|
+
|
|
1505
|
+
Started GET "/assets/redis_analytics/morris.min.js?body=1" for 127.0.0.1 at 2014-04-23 15:28:44 +0530
|
|
1506
|
+
|
|
1507
|
+
|
|
1508
|
+
Started GET "/assets/redis_analytics/jquery-jvectormap-world-mill-en.js?body=1" for 127.0.0.1 at 2014-04-23 15:28:44 +0530
|
|
1509
|
+
|
|
1510
|
+
|
|
1511
|
+
Started GET "/assets/redis_analytics/raphael-min.js?body=1" for 127.0.0.1 at 2014-04-23 15:28:44 +0530
|
|
1512
|
+
|
|
1513
|
+
|
|
1514
|
+
Started GET "/assets/redis_analytics/jquery-jvectormap-1.2.2.min.js?body=1" for 127.0.0.1 at 2014-04-23 15:28:44 +0530
|
|
1515
|
+
|
|
1516
|
+
|
|
1517
|
+
Started GET "/assets/redis_analytics/engine.js?body=1" for 127.0.0.1 at 2014-04-23 15:28:44 +0530
|
|
1518
|
+
|
|
1519
|
+
|
|
1520
|
+
Started GET "/assets/redis_analytics/bootstrap-responsive.min.css?body=1" for 127.0.0.1 at 2014-04-23 15:28:44 +0530
|
|
1521
|
+
|
|
1522
|
+
|
|
1523
|
+
Started GET "/redis_analytics/api/visits?metrics=first_visits,repeat_visits,browser,referrer,page_views,second_page_views,visit_time,recency,country&unit_count=24&unit=hour&aggregate=yes" for 127.0.0.1 at 2014-04-23 15:28:44 +0530
|
|
1524
|
+
Processing by RedisAnalytics::ApiController#visits as JSON
|
|
1525
|
+
Parameters: {"metrics"=>"first_visits,repeat_visits,browser,referrer,page_views,second_page_views,visit_time,recency,country", "amp"=>nil, "unit_count"=>"24", "unit"=>"hour", "aggregate"=>"yes"}
|
|
1526
|
+
Completed 200 OK in 11ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
|
1527
|
+
|
|
1528
|
+
|
|
1529
|
+
Started GET "/redis_analytics/api/visits?metrics=unique_visits,first_visits,repeat_visits&unit_count=24&unit=hour" for 127.0.0.1 at 2014-04-23 15:28:44 +0530
|
|
1530
|
+
Processing by RedisAnalytics::ApiController#visits as JSON
|
|
1531
|
+
Parameters: {"metrics"=>"unique_visits,first_visits,repeat_visits", "amp"=>nil, "unit_count"=>"24", "unit"=>"hour"}
|
|
1532
|
+
Completed 200 OK in 20ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
|
1533
|
+
|
|
1534
|
+
|
|
1535
|
+
Started GET "/redis_analytics" for 127.0.0.1 at 2014-04-23 15:29:25 +0530
|
|
1536
|
+
Processing by RedisAnalytics::VisitsController#index as HTML
|
|
1537
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_area.html.erb (0.5ms)
|
|
1538
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_donut.html.erb (0.5ms)
|
|
1539
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_referers_donut.html.erb (0.5ms)
|
|
1540
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_browsers_donut.html.erb (0.6ms)
|
|
1541
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_unique_visits_line.html.erb (0.6ms)
|
|
1542
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_world_map.html.erb (0.6ms)
|
|
1543
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visitor_recency_slices.html.erb (0.5ms)
|
|
1544
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_visits.html.erb (0.4ms)
|
|
1545
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_total_page_views.html.erb (0.4ms)
|
|
1546
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_page_depth.html.erb (0.7ms)
|
|
1547
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_bounce_rate.html.erb (0.6ms)
|
|
1548
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visit_duration.html.erb (0.5ms)
|
|
1549
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_first_visits.html.erb (0.5ms)
|
|
1550
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/_visits_js.html.erb (64.7ms)
|
|
1551
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/visits/index.html.erb within layouts/redis_analytics/application (112.9ms)
|
|
1552
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/application/_header.html.erb (0.9ms)
|
|
1553
|
+
Rendered /Users/schubert/Code/private/redis_analytics/app/views/redis_analytics/application/_footer.html.erb (0.9ms)
|
|
1554
|
+
Completed 200 OK in 288ms (Views: 287.7ms | ActiveRecord: 0.0ms)
|
|
1555
|
+
|
|
1556
|
+
|
|
1557
|
+
Started GET "/assets/redis_analytics/bootstrap.min.css?body=1" for 127.0.0.1 at 2014-04-23 15:29:26 +0530
|
|
1558
|
+
|
|
1559
|
+
|
|
1560
|
+
Started GET "/assets/redis_analytics/engine.css?body=1" for 127.0.0.1 at 2014-04-23 15:29:26 +0530
|
|
1561
|
+
|
|
1562
|
+
|
|
1563
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-04-23 15:29:26 +0530
|
|
1564
|
+
|
|
1565
|
+
|
|
1566
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-04-23 15:29:26 +0530
|
|
1567
|
+
|
|
1568
|
+
|
|
1569
|
+
Started GET "/assets/redis_analytics/jquery-jvectormap-1.2.2.css?body=1" for 127.0.0.1 at 2014-04-23 15:29:26 +0530
|
|
1570
|
+
|
|
1571
|
+
|
|
1572
|
+
Started GET "/assets/redis_analytics/morris.css?body=1" for 127.0.0.1 at 2014-04-23 15:29:26 +0530
|
|
1573
|
+
|
|
1574
|
+
|
|
1575
|
+
Started GET "/assets/redis_analytics/bootstrap.min.js?body=1" for 127.0.0.1 at 2014-04-23 15:29:26 +0530
|
|
1576
|
+
|
|
1577
|
+
|
|
1578
|
+
Started GET "/assets/redis_analytics/jquery-jvectormap-1.2.2.min.js?body=1" for 127.0.0.1 at 2014-04-23 15:29:26 +0530
|
|
1579
|
+
|
|
1580
|
+
|
|
1581
|
+
Started GET "/assets/redis_analytics/bootstrap-responsive.min.css?body=1" for 127.0.0.1 at 2014-04-23 15:29:26 +0530
|
|
1582
|
+
|
|
1583
|
+
|
|
1584
|
+
Started GET "/assets/redis_analytics/morris.min.js?body=1" for 127.0.0.1 at 2014-04-23 15:29:26 +0530
|
|
1585
|
+
|
|
1586
|
+
|
|
1587
|
+
Started GET "/assets/redis_analytics/jquery-jvectormap-world-mill-en.js?body=1" for 127.0.0.1 at 2014-04-23 15:29:26 +0530
|
|
1588
|
+
|
|
1589
|
+
|
|
1590
|
+
Started GET "/assets/redis_analytics/raphael-min.js?body=1" for 127.0.0.1 at 2014-04-23 15:29:26 +0530
|
|
1591
|
+
|
|
1592
|
+
|
|
1593
|
+
Started GET "/assets/redis_analytics/engine.js?body=1" for 127.0.0.1 at 2014-04-23 15:29:26 +0530
|
|
1594
|
+
|
|
1595
|
+
|
|
1596
|
+
Started GET "/redis_analytics/api/visits?metrics=first_visits,repeat_visits,browser,referrer,page_views,second_page_views,visit_time,recency,country&unit_count=24&unit=hour&aggregate=yes" for 127.0.0.1 at 2014-04-23 15:29:26 +0530
|
|
1597
|
+
Processing by RedisAnalytics::ApiController#visits as JSON
|
|
1598
|
+
Parameters: {"metrics"=>"first_visits,repeat_visits,browser,referrer,page_views,second_page_views,visit_time,recency,country", "amp"=>nil, "unit_count"=>"24", "unit"=>"hour", "aggregate"=>"yes"}
|
|
1599
|
+
Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
|
1600
|
+
|
|
1601
|
+
|
|
1602
|
+
Started GET "/redis_analytics/api/visits?metrics=unique_visits,first_visits,repeat_visits&unit_count=24&unit=hour" for 127.0.0.1 at 2014-04-23 15:29:26 +0530
|
|
1603
|
+
Processing by RedisAnalytics::ApiController#visits as JSON
|
|
1604
|
+
Parameters: {"metrics"=>"unique_visits,first_visits,repeat_visits", "amp"=>nil, "unit_count"=>"24", "unit"=>"hour"}
|
|
1605
|
+
Completed 200 OK in 12ms (Views: 4.9ms | ActiveRecord: 0.0ms)
|