answers-core 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Rakefile +6 -0
- data/answers-core.gemspec +30 -0
- data/app/assets/fonts/answers/League_Gothic-webfont.eot +0 -0
- data/app/assets/fonts/answers/League_Gothic-webfont.svg +230 -0
- data/app/assets/fonts/answers/League_Gothic-webfont.ttf +0 -0
- data/app/assets/fonts/answers/League_Gothic-webfont.woff +0 -0
- data/app/assets/images/OaklandCityTree.png +0 -0
- data/app/assets/images/background_image.jpg +0 -0
- data/app/assets/images/background_pattern.png +0 -0
- data/app/assets/images/beta.png +0 -0
- data/app/assets/images/bg_transparent.png +0 -0
- data/app/assets/images/border.png +0 -0
- data/app/assets/images/brigade.png +0 -0
- data/app/assets/images/cfa.png +0 -0
- data/app/assets/images/cfa_logo.png +0 -0
- data/app/assets/images/cfa_logo_footer.png +0 -0
- data/app/assets/images/favicon.ico +0 -0
- data/app/assets/images/forest.jpeg +0 -0
- data/app/assets/images/getting_started_btn.png +0 -0
- data/app/assets/images/govuk.png +0 -0
- data/app/assets/images/openoaklandlogo.png +0 -0
- data/app/assets/images/quick_answers_icon.png +0 -0
- data/app/assets/images/quick_answers_icon_small.png +0 -0
- data/app/assets/images/searchIcon.png +0 -0
- data/app/assets/images/wmd-buttons.png +0 -0
- data/app/assets/images/yellow_bg.png +0 -0
- data/app/assets/javascripts/answers.js +19 -0
- data/app/assets/javascripts/answers/Markdown.Extra.js +304 -0
- data/app/assets/javascripts/answers/active_admin.js +62 -0
- data/app/assets/javascripts/answers/pagedown/LICENSE.txt +32 -0
- data/app/assets/javascripts/answers/pagedown/Markdown.Converter.js +1332 -0
- data/app/assets/javascripts/answers/pagedown/Markdown.Editor.js +2212 -0
- data/app/assets/javascripts/answers/pagedown/Markdown.Sanitizer.js +108 -0
- data/app/assets/javascripts/answers/pagedown/README.txt +0 -0
- data/app/assets/javascripts/answers/pagedown/demo/browser/demo.css +120 -0
- data/app/assets/javascripts/answers/pagedown/demo/browser/demo.html +83 -0
- data/app/assets/javascripts/answers/pagedown/demo/node/demo.js +44 -0
- data/app/assets/javascripts/answers/pagedown/local/Markdown.local.fr.js +43 -0
- data/app/assets/javascripts/answers/pagedown/node-pagedown.js +2 -0
- data/app/assets/javascripts/answers/pagedown/package.json +12 -0
- data/app/assets/javascripts/answers/pagedown/resources/wmd-buttons.psd +0 -0
- data/app/assets/javascripts/answers/pagedown/wmd-buttons.png +0 -0
- data/app/assets/javascripts/answers/skip_nav.js +8 -0
- data/app/assets/stylesheets/answers/active_admin.css.scss +17 -0
- data/app/assets/stylesheets/answers/active_admin_custom.css.scss +35 -0
- data/app/assets/stylesheets/answers/formatting.css +82 -0
- data/app/assets/stylesheets/answers/mobile.css +149 -0
- data/app/assets/stylesheets/answers/tags.css.scss +3 -0
- data/app/assets/stylesheets/answers/theme.css +916 -0
- data/app/controllers/answers/answers_controller.rb +26 -0
- data/app/controllers/answers/api/v1/answers_controller.rb +38 -0
- data/app/controllers/answers/api/v1/api_controller.rb +13 -0
- data/app/controllers/answers/api/v1/questions_controller.rb +39 -0
- data/app/controllers/answers/api/v1/taggings_controller.rb +46 -0
- data/app/controllers/answers/api/v1/tags_controller.rb +38 -0
- data/app/controllers/answers/application_controller.rb +27 -0
- data/app/controllers/answers/home_controller.rb +17 -0
- data/app/controllers/answers/questions_controller.rb +33 -0
- data/app/controllers/answers/search_controller.rb +22 -0
- data/app/controllers/answers/tags_controller.rb +36 -0
- data/app/helpers/answers/tags_helper.rb +7 -0
- data/app/models/.gitkeep +0 -0
- data/app/models/answers/ability.rb +28 -0
- data/app/models/answers/administrator.rb +5 -0
- data/app/models/answers/answer.rb +6 -0
- data/app/models/answers/api/v1/api_user.rb +5 -0
- data/app/models/answers/question.rb +31 -0
- data/app/models/answers/user.rb +30 -0
- data/app/views/answers/admin/contacts/_article.html.erb +0 -0
- data/app/views/answers/admin/dashboard/_dashboard.html.erb +5 -0
- data/app/views/answers/admin/guide_steps/_form.html.erb +17 -0
- data/app/views/answers/api/v1/answers/_answer.json.jbuilder +2 -0
- data/app/views/answers/api/v1/answers/index.json.jbuilder +1 -0
- data/app/views/answers/api/v1/answers/show.json.jbuilder +1 -0
- data/app/views/answers/api/v1/questions/_question.json.jbuilder +2 -0
- data/app/views/answers/api/v1/questions/index.json.jbuilder +1 -0
- data/app/views/answers/api/v1/questions/show.json.jbuilder +1 -0
- data/app/views/answers/api/v1/taggings/_tagging.json.jbuilder +3 -0
- data/app/views/answers/api/v1/taggings/index.json.jbuilder +1 -0
- data/app/views/answers/api/v1/taggings/show.json.jbuilder +1 -0
- data/app/views/answers/api/v1/tags/_tag.json.jbuilder +2 -0
- data/app/views/answers/api/v1/tags/index.json.jbuilder +1 -0
- data/app/views/answers/api/v1/tags/show.json.jbuilder +1 -0
- data/app/views/answers/devise/confirmations/new.html.erb +12 -0
- data/app/views/answers/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/answers/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/answers/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/answers/devise/passwords/edit.html.erb +24 -0
- data/app/views/answers/devise/passwords/new.html.erb +20 -0
- data/app/views/answers/devise/registrations/edit.html.erb +25 -0
- data/app/views/answers/devise/registrations/new.html.erb +18 -0
- data/app/views/answers/devise/sessions/new.html.erb +25 -0
- data/app/views/answers/devise/shared/_links.erb +25 -0
- data/app/views/answers/devise/unlocks/new.html.erb +12 -0
- data/app/views/answers/home/_article.html.erb +3 -0
- data/app/views/answers/home/_category.html.erb +8 -0
- data/app/views/answers/home/about.html.erb +72 -0
- data/app/views/answers/home/index.html.erb +44 -0
- data/app/views/answers/questions/index.html.erb +21 -0
- data/app/views/answers/questions/show.html.erb +31 -0
- data/app/views/answers/search/index.html.erb +32 -0
- data/app/views/answers/shared/_articles_sidebar.html.erb +22 -0
- data/app/views/answers/shared/_autocomplete.html.erb +8 -0
- data/app/views/answers/shared/_categories_sidebar.html.erb +12 -0
- data/app/views/answers/shared/_search_form.html.erb +4 -0
- data/app/views/answers/shared/admin/_administration.html.erb +38 -0
- data/app/views/answers/shared/admin/_article_actions.html.erb +86 -0
- data/app/views/answers/shared/admin/_article_content.html.erb +27 -0
- data/app/views/answers/shared/admin/_article_details.html.erb +11 -0
- data/app/views/answers/shared/admin/_article_form.html.erb +20 -0
- data/app/views/answers/shared/admin/_author_pic.html.erb +0 -0
- data/app/views/answers/tags/index.html.erb +34 -0
- data/app/views/answers/tags/show.html.erb +31 -0
- data/app/views/layouts/answers/application.html.erb +97 -0
- data/config.ru +5 -0
- data/config/initializers/active_admin.rb +245 -0
- data/config/initializers/devise.rb +228 -0
- data/config/locales/devise.en.yml +57 -0
- data/config/locales/en.yml +129 -0
- data/config/routes.rb +22 -0
- data/config/secrets.yml +68 -0
- data/db/migrate/20140911060606_answers_up.rb +79 -0
- data/lib/answers-core.rb +1 -0
- data/lib/answers.rb +175 -0
- data/lib/answers/admin/answer.rb +29 -0
- data/lib/answers/admin/dashboard.rb +75 -0
- data/lib/answers/admin/question.rb +57 -0
- data/lib/answers/admin/tag.rb +12 -0
- data/lib/answers/admin/users.rb +65 -0
- data/lib/answers/core.rb +25 -0
- data/lib/answers/core/configuration.rb +90 -0
- data/lib/answers/core/engine.rb +116 -0
- data/lib/answers/engine.rb +62 -0
- data/lib/answers/errors.rb +13 -0
- data/lib/answers/plugin.rb +75 -0
- data/lib/answers/plugins.rb +73 -0
- data/lib/answers/version.rb +16 -0
- data/lib/api_client.rb +20 -0
- data/lib/assets/.gitkeep +0 -0
- data/lib/assets/eng_stop.csv +1 -0
- data/lib/generators/answers/clash_keywords.yml +3 -0
- data/lib/generators/answers/cms/cms_generator.rb +314 -0
- data/lib/generators/answers/cms/templates/.gitignore +91 -0
- data/lib/generators/answers/cms/templates/app/decorators/controllers/answers/.keep +0 -0
- data/lib/generators/answers/cms/templates/app/decorators/models/answers/.keep +0 -0
- data/lib/generators/answers/cms/templates/app/views/sitemap/index.xml.builder +15 -0
- data/lib/generators/answers/cms/templates/config/database.yml.mysql +20 -0
- data/lib/generators/answers/cms/templates/config/database.yml.postgresql +58 -0
- data/lib/generators/answers/cms/templates/config/database.yml.sqlite3 +18 -0
- data/lib/generators/answers/core/core_generator.rb +10 -0
- data/lib/generators/answers/core/templates/config/initializers/answers/core.rb.erb +35 -0
- data/lib/generators/answers/dummy/dummy_generator.rb +86 -0
- data/lib/generators/answers/dummy/templates/rails/Rakefile +7 -0
- data/lib/generators/answers/dummy/templates/rails/application.js +3 -0
- data/lib/generators/answers/dummy/templates/rails/application.rb.erb +12 -0
- data/lib/generators/answers/dummy/templates/rails/boot.rb.erb +6 -0
- data/lib/generators/answers/dummy/templates/rails/database.yml +34 -0
- data/lib/generators/answers/dummy/templates/rails/routes.rb +3 -0
- data/lib/generators/answers/engine/USAGE +24 -0
- data/lib/generators/answers/engine/engine_generator.rb +44 -0
- data/lib/generators/answers/engine/templates/.gitignore +2 -0
- data/lib/generators/answers/engine/templates/Gemfile +42 -0
- data/lib/generators/answers/engine/templates/Rakefile +19 -0
- data/lib/generators/answers/engine/templates/answers-extension_plural_name.gemspec +19 -0
- data/lib/generators/answers/engine/templates/app/controllers/answers/namespace/admin/plural_name_controller.rb.erb +14 -0
- data/lib/generators/answers/engine/templates/app/controllers/answers/namespace/plural_name_controller.rb.erb +34 -0
- data/lib/generators/answers/engine/templates/app/models/answers/namespace/singular_name.rb.erb +37 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/_actions.html.erb +25 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/_form.html.erb +65 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/_plural_name.html.erb +2 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/_records.html.erb +16 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/_singular_name.html.erb +33 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/_sortable_list.html.erb +5 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/edit.html.erb +1 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/index.html.erb +7 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/admin/plural_name/new.html.erb +1 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/plural_name/index.html.erb +11 -0
- data/lib/generators/answers/engine/templates/app/views/answers/namespace/plural_name/show.html.erb +39 -0
- data/lib/generators/answers/engine/templates/config/locales/cs.yml +28 -0
- data/lib/generators/answers/engine/templates/config/locales/en.yml +28 -0
- data/lib/generators/answers/engine/templates/config/locales/es.yml +29 -0
- data/lib/generators/answers/engine/templates/config/locales/fr.yml +28 -0
- data/lib/generators/answers/engine/templates/config/locales/it.yml +28 -0
- data/lib/generators/answers/engine/templates/config/locales/nb.yml +28 -0
- data/lib/generators/answers/engine/templates/config/locales/nl.yml +28 -0
- data/lib/generators/answers/engine/templates/config/locales/sk.yml +28 -0
- data/lib/generators/answers/engine/templates/config/locales/tr.yml +28 -0
- data/lib/generators/answers/engine/templates/config/locales/zh-CN.yml +30 -0
- data/lib/generators/answers/engine/templates/config/routes.rb.erb +19 -0
- data/lib/generators/answers/engine/templates/db/migrate/1_create_namespace_plural_name.rb.erb +39 -0
- data/lib/generators/answers/engine/templates/db/seeds.rb.erb +21 -0
- data/lib/generators/answers/engine/templates/lib/answers-extension_plural_name.rb.erb +1 -0
- data/lib/generators/answers/engine/templates/lib/answers/plural_name.rb.erb +21 -0
- data/lib/generators/answers/engine/templates/lib/answers/plural_name/engine.rb.erb +23 -0
- data/lib/generators/answers/engine/templates/lib/generators/answers/extension_plural_name_generator.rb.erb +19 -0
- data/lib/generators/answers/engine/templates/lib/tasks/answers/extension_plural_name.rake +13 -0
- data/lib/generators/answers/engine/templates/readme.md +10 -0
- data/lib/generators/answers/engine/templates/script/rails +10 -0
- data/lib/generators/answers/engine/templates/spec/features/answers/namespace/admin/plural_name_spec.rb.erb +200 -0
- data/lib/generators/answers/engine/templates/spec/models/answers/namespace/singular_name_spec.rb.erb +20 -0
- data/lib/generators/answers/engine/templates/spec/spec_helper.rb +31 -0
- data/lib/generators/answers/engine/templates/spec/support/factories/answers/plural_name.rb.erb +7 -0
- data/lib/generators/answers/engine/templates/tasks/rspec.rake +6 -0
- data/lib/generators/answers/engine/templates/tasks/testing.rake +8 -0
- data/lib/generators/answers/generator.rb +292 -0
- data/lib/markdownifier.rb +11 -0
- data/log/.gitkeep +0 -0
- data/log/development.log +12870 -0
- data/log/newrelic_agent.log +1339 -0
- data/log/test.log +233181 -0
- data/public/404.html +25 -0
- data/public/422.html +25 -0
- data/public/500.html +24 -0
- data/public/favicon.ico +0 -0
- data/public/robots.txt +5 -0
- data/script/delayed_job +5 -0
- data/spec/controllers/answers_controller_spec.rb +55 -0
- data/spec/controllers/api/v1/answers_controller_spec.rb +144 -0
- data/spec/controllers/api/v1/questions_controller_spec.rb +144 -0
- data/spec/controllers/api/v1/taggings_controller_spec.rb +126 -0
- data/spec/controllers/api/v1/tags_controller_spec.rb +126 -0
- data/spec/controllers/home_controller_spec.rb +60 -0
- data/spec/controllers/questions_controller_spec.rb +55 -0
- data/spec/controllers/tags_controller_spec.rb +42 -0
- data/spec/factories/answers.rb +10 -0
- data/spec/factories/questions.rb +8 -0
- data/spec/factories/tags.rb +8 -0
- data/spec/factories/user.rb +32 -0
- data/spec/features/admin_dashboard_spec.rb +53 -0
- data/spec/features/admin_user_spec.rb +61 -0
- data/spec/features/searches_spec.rb +101 -0
- data/spec/fixtures/Article/_before_validation/sets_access_count_if_nil.yml +223 -0
- data/spec/fixtures/Article/_delete_orphaned_keywords/updating_an_article/destroys_orphaned_keywords_associated.yml +223 -0
- data/spec/fixtures/Article/_delete_orphaned_keywords/when_deleting_an_article/destroys_all_keywords_associated.yml +223 -0
- data/spec/fixtures/Article/_find_by_friendly_id/when_an_article_does_not_exist/does_not_raise_an_exception.yml +223 -0
- data/spec/fixtures/Article/_find_by_friendly_id/when_an_article_exists/returns_the_corresponding_article.yml +223 -0
- data/spec/fixtures/Article/_find_by_type/excludes_articles_not_matching_specified_type.yml +223 -0
- data/spec/fixtures/Article/_find_by_type/returns_articles_matching_type.yml +223 -0
- data/spec/fixtures/Article/_hits/before_an_article_has_been_viewed/has_zero_hits.yml +223 -0
- data/spec/fixtures/Article/_hits/returns_number_of_views/has_seven_views.yml +223 -0
- data/spec/fixtures/Article/_indexable_/returns_false_if_article_is_not_published.yml +223 -0
- data/spec/fixtures/Article/_indexable_/returns_true_if_article_is_published.yml +223 -0
- data/spec/fixtures/Article/_legacy_/returns_true_if_render_markdown_is_false.yml +223 -0
- data/spec/fixtures/Article/_qm_after_create/creates_wordcounts_for_relevant_keywords.yml +223 -0
- data/spec/fixtures/Article/_record_hit/viewing_an_article/increases_hit_by_one.yml +223 -0
- data/spec/fixtures/Article/_related/has_no_related_articles/.yml +223 -0
- data/spec/fixtures/Article/_related/has_related_articles/.yml +223 -0
- data/spec/fixtures/Article/_remove_stop_words/removes_common_english_words_from_the_string.yml +223 -0
- data/spec/fixtures/Article/_search/_search_titles/query_is_present_in_the_title/.yml +223 -0
- data/spec/fixtures/Article/_search/_search_titles/returns_an_empty_array_when_the_search_term_is_present_in_an_article_but_not_the_title.yml +223 -0
- data/spec/fixtures/Article/_search/matches_articles_in_the_database.yml +223 -0
- data/spec/fixtures/Article/_search/query_does_not_match_anything_in_the_database/returns_an_empty_array.yml +223 -0
- data/spec/fixtures/Article/_search/query_is_a_single_space/.yml +223 -0
- data/spec/fixtures/Article/_search/query_is_an_empty_string/.yml +223 -0
- data/spec/fixtures/Article/_to_s/when_an_article_has_a_category/returns_a_string_containing_title_id_and_category.yml +223 -0
- data/spec/fixtures/Article/can_be_published/an_unpublished_article/is_published.yml +223 -0
- data/spec/fixtures/Article/can_be_published/an_unpublished_article/returns_status_Published.yml +223 -0
- data/spec/fixtures/Article/has_a_friendly_url.yml +223 -0
- data/spec/fixtures/Article/is_valid_with_a_title.yml +223 -0
- data/spec/fixtures/Searches/search_results/1_result_found/.yml +22047 -0
- data/spec/fixtures/Searches/search_results/no_results_found/.yml +393 -0
- data/spec/fixtures/Searches/search_results/several_results_found/should_contain_the_title_and_preview_of_both_articles.yml +223 -0
- data/spec/fixtures/Searches/search_results/several_results_found/show_the_query.yml +277 -0
- data/spec/fixtures/articles.yml +428 -0
- data/spec/fixtures/categories.yml +17 -0
- data/spec/fixtures/contacts.yml +11 -0
- data/spec/fixtures/dragon_keyword_cassette.yml +77 -0
- data/spec/fixtures/oakland_answers.yml +2379 -0
- data/spec/helpers/tags_helper_spec.rb +15 -0
- data/spec/lib/markdownifier_spec.rb +12 -0
- data/spec/models/ability_spec.rb +36 -0
- data/spec/models/answer_spec.rb +5 -0
- data/spec/models/question_spec.rb +70 -0
- data/spec/models/user_spec.rb +55 -0
- data/spec/routing/answers_routing_spec.rb +19 -0
- data/spec/routing/questions_routing_spec.rb +19 -0
- data/spec/routing/routes_spec.rb +13 -0
- data/spec/security/brakeman_spec.rb +37 -0
- data/spec/spec_helper.rb +61 -0
- data/spec/support/login_helpers.rb +10 -0
- data/spec/support/wait_for_ajax_helper.rb +7 -0
- data/spec/support/wait_for_dom_helper.rb +12 -0
- data/spec/views/questions/index.html.erb_spec.rb +16 -0
- data/spec/views/questions/show.html.erb_spec.rb +14 -0
- data/spec/views/tags/index.html.erb_spec.rb +5 -0
- data/spec/views/tags/show.html.erb_spec.rb +5 -0
- data/vendor/assets/javascripts/.gitkeep +0 -0
- data/vendor/assets/stylesheets/.gitkeep +0 -0
- data/vendor/assets/stylesheets/bootstrap.css +3990 -0
- data/vendor/crudgen/lib/generators/crudgen/install_generator.rb +23 -0
- data/vendor/plugins/.gitkeep +0 -0
- metadata +484 -0
|
@@ -0,0 +1,1339 @@
|
|
|
1
|
+
# Logfile created on 2014-08-15 19:13:16 +0000 by logger.rb/44203
|
|
2
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] INFO : Starting the New Relic agent in "development" environment.
|
|
3
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
4
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] INFO : Reading configuration from config/newrelic.yml
|
|
5
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] INFO : New Relic Agent Developer Mode enabled.
|
|
6
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] ERROR : No application name configured.
|
|
7
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] ERROR : The Agent cannot start without at least one. Please check your
|
|
8
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
9
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] ERROR : value set for app_name in the development
|
|
10
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] ERROR : environment.
|
|
11
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
12
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] INFO : Installing Memcached instrumentation
|
|
13
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] INFO : Installing Dalli Memcache instrumentation
|
|
14
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] INFO : Installing deferred Rack instrumentation
|
|
15
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] INFO : Installing Rack::Builder middleware instrumentation
|
|
16
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] INFO : Installing Rails 3+ middleware instrumentation
|
|
17
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] INFO : Installing ActiveRecord 4 instrumentation
|
|
18
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] INFO : Installing Net instrumentation
|
|
19
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] INFO : Installing Rails 4 view instrumentation
|
|
20
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] INFO : Installing Rails 4 Controller instrumentation
|
|
21
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] INFO : Installing Rails 4 Error instrumentation
|
|
22
|
+
[08/15/14 19:13:16 +0000 vagrant (9382)] INFO : Finished instrumentation
|
|
23
|
+
[08/15/14 19:13:18 +0000 vagrant (9382)] INFO : Doing deferred dependency-detection before Rack startup
|
|
24
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] INFO : Starting the New Relic agent in "development" environment.
|
|
25
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
26
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] INFO : Reading configuration from config/newrelic.yml
|
|
27
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] INFO : New Relic Agent Developer Mode enabled.
|
|
28
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] ERROR : No application name configured.
|
|
29
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] ERROR : The Agent cannot start without at least one. Please check your
|
|
30
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
31
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] ERROR : value set for app_name in the development
|
|
32
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] ERROR : environment.
|
|
33
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
34
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] INFO : Installing Memcached instrumentation
|
|
35
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] INFO : Installing Dalli Memcache instrumentation
|
|
36
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] INFO : Installing deferred Rack instrumentation
|
|
37
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] INFO : Installing Rack::Builder middleware instrumentation
|
|
38
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] INFO : Installing Rails 3+ middleware instrumentation
|
|
39
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] INFO : Installing ActiveRecord 4 instrumentation
|
|
40
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] INFO : Installing Net instrumentation
|
|
41
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] INFO : Installing Rails 4 view instrumentation
|
|
42
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] INFO : Installing Rails 4 Controller instrumentation
|
|
43
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] INFO : Installing Rails 4 Error instrumentation
|
|
44
|
+
[08/15/14 19:47:15 +0000 vagrant (4634)] INFO : Finished instrumentation
|
|
45
|
+
[08/15/14 19:47:18 +0000 vagrant (4634)] INFO : Doing deferred dependency-detection before Rack startup
|
|
46
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] INFO : Starting the New Relic agent in "development" environment.
|
|
47
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
48
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] INFO : Reading configuration from config/newrelic.yml
|
|
49
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] INFO : New Relic Agent Developer Mode enabled.
|
|
50
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] ERROR : No application name configured.
|
|
51
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] ERROR : The Agent cannot start without at least one. Please check your
|
|
52
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
53
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] ERROR : value set for app_name in the development
|
|
54
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] ERROR : environment.
|
|
55
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
56
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] INFO : Installing Memcached instrumentation
|
|
57
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] INFO : Installing Dalli Memcache instrumentation
|
|
58
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] INFO : Installing deferred Rack instrumentation
|
|
59
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] INFO : Installing Rack::Builder middleware instrumentation
|
|
60
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] INFO : Installing Rails 3+ middleware instrumentation
|
|
61
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] INFO : Installing ActiveRecord 4 instrumentation
|
|
62
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] INFO : Installing Net instrumentation
|
|
63
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] INFO : Installing Rails 4 view instrumentation
|
|
64
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] INFO : Installing Rails 4 Controller instrumentation
|
|
65
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] INFO : Installing Rails 4 Error instrumentation
|
|
66
|
+
[08/15/14 20:04:00 +0000 vagrant (4802)] INFO : Finished instrumentation
|
|
67
|
+
[08/15/14 20:04:02 +0000 vagrant (4802)] INFO : Doing deferred dependency-detection before Rack startup
|
|
68
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] INFO : Starting the New Relic agent in "development" environment.
|
|
69
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
70
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] INFO : Reading configuration from config/newrelic.yml
|
|
71
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] INFO : New Relic Agent Developer Mode enabled.
|
|
72
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] ERROR : No application name configured.
|
|
73
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] ERROR : The Agent cannot start without at least one. Please check your
|
|
74
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
75
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] ERROR : value set for app_name in the development
|
|
76
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] ERROR : environment.
|
|
77
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
78
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] INFO : Installing Memcached instrumentation
|
|
79
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] INFO : Installing Dalli Memcache instrumentation
|
|
80
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] INFO : Installing deferred Rack instrumentation
|
|
81
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] INFO : Installing Rack::Builder middleware instrumentation
|
|
82
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] INFO : Installing Rails 3+ middleware instrumentation
|
|
83
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] INFO : Installing ActiveRecord 4 instrumentation
|
|
84
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] INFO : Installing Net instrumentation
|
|
85
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] INFO : Installing Rails 4 view instrumentation
|
|
86
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] INFO : Installing Rails 4 Controller instrumentation
|
|
87
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] INFO : Installing Rails 4 Error instrumentation
|
|
88
|
+
[08/15/14 20:34:07 +0000 vagrant (6233)] INFO : Finished instrumentation
|
|
89
|
+
[08/15/14 20:34:41 +0000 vagrant (6308)] INFO : Starting the New Relic agent in "development" environment.
|
|
90
|
+
[08/15/14 20:34:41 +0000 vagrant (6308)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
91
|
+
[08/15/14 20:34:41 +0000 vagrant (6308)] INFO : Reading configuration from config/newrelic.yml
|
|
92
|
+
[08/15/14 20:34:41 +0000 vagrant (6308)] INFO : New Relic Agent Developer Mode enabled.
|
|
93
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] ERROR : No application name configured.
|
|
94
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] ERROR : The Agent cannot start without at least one. Please check your
|
|
95
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
96
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] ERROR : value set for app_name in the development
|
|
97
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] ERROR : environment.
|
|
98
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
99
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] INFO : Installing Memcached instrumentation
|
|
100
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] INFO : Installing Dalli Memcache instrumentation
|
|
101
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] INFO : Installing deferred Rack instrumentation
|
|
102
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] INFO : Installing Rack::Builder middleware instrumentation
|
|
103
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] INFO : Installing Rails 3+ middleware instrumentation
|
|
104
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] INFO : Installing ActiveRecord 4 instrumentation
|
|
105
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] INFO : Installing Net instrumentation
|
|
106
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] INFO : Installing Rails 4 view instrumentation
|
|
107
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] INFO : Installing Rails 4 Controller instrumentation
|
|
108
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] INFO : Installing Rails 4 Error instrumentation
|
|
109
|
+
[08/15/14 20:34:42 +0000 vagrant (6308)] INFO : Finished instrumentation
|
|
110
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] INFO : Starting the New Relic agent in "development" environment.
|
|
111
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
112
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] INFO : Reading configuration from config/newrelic.yml
|
|
113
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] INFO : New Relic Agent Developer Mode enabled.
|
|
114
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] ERROR : No application name configured.
|
|
115
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] ERROR : The Agent cannot start without at least one. Please check your
|
|
116
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
117
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] ERROR : value set for app_name in the development
|
|
118
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] ERROR : environment.
|
|
119
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
120
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] INFO : Installing Memcached instrumentation
|
|
121
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] INFO : Installing Dalli Memcache instrumentation
|
|
122
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] INFO : Installing deferred Rack instrumentation
|
|
123
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] INFO : Installing Rack::Builder middleware instrumentation
|
|
124
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] INFO : Installing Rails 3+ middleware instrumentation
|
|
125
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] INFO : Installing ActiveRecord 4 instrumentation
|
|
126
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] INFO : Installing Net instrumentation
|
|
127
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] INFO : Installing Rails 4 view instrumentation
|
|
128
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] INFO : Installing Rails 4 Controller instrumentation
|
|
129
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] INFO : Installing Rails 4 Error instrumentation
|
|
130
|
+
[08/18/14 14:08:36 +0000 vagrant (5099)] INFO : Finished instrumentation
|
|
131
|
+
[08/18/14 14:08:37 +0000 vagrant (5099)] INFO : Doing deferred dependency-detection before Rack startup
|
|
132
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] INFO : Starting the New Relic agent in "development" environment.
|
|
133
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
134
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] INFO : Reading configuration from config/newrelic.yml
|
|
135
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] INFO : New Relic Agent Developer Mode enabled.
|
|
136
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] ERROR : No application name configured.
|
|
137
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] ERROR : The Agent cannot start without at least one. Please check your
|
|
138
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
139
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] ERROR : value set for app_name in the development
|
|
140
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] ERROR : environment.
|
|
141
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
142
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] INFO : Installing Memcached instrumentation
|
|
143
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] INFO : Installing Dalli Memcache instrumentation
|
|
144
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] INFO : Installing deferred Rack instrumentation
|
|
145
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] INFO : Installing Rack::Builder middleware instrumentation
|
|
146
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] INFO : Installing Rails 3+ middleware instrumentation
|
|
147
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] INFO : Installing ActiveRecord 4 instrumentation
|
|
148
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] INFO : Installing Net instrumentation
|
|
149
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] INFO : Installing Rails 4 view instrumentation
|
|
150
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] INFO : Installing Rails 4 Controller instrumentation
|
|
151
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] INFO : Installing Rails 4 Error instrumentation
|
|
152
|
+
[08/18/14 14:23:30 +0000 vagrant (6895)] INFO : Finished instrumentation
|
|
153
|
+
[08/18/14 14:23:32 +0000 vagrant (6895)] INFO : Doing deferred dependency-detection before Rack startup
|
|
154
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] INFO : Starting the New Relic agent in "development" environment.
|
|
155
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
156
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] INFO : Reading configuration from config/newrelic.yml
|
|
157
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] INFO : New Relic Agent Developer Mode enabled.
|
|
158
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] ERROR : No application name configured.
|
|
159
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] ERROR : The Agent cannot start without at least one. Please check your
|
|
160
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
161
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] ERROR : value set for app_name in the development
|
|
162
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] ERROR : environment.
|
|
163
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
164
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] INFO : Installing Memcached instrumentation
|
|
165
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] INFO : Installing Dalli Memcache instrumentation
|
|
166
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] INFO : Installing deferred Rack instrumentation
|
|
167
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] INFO : Installing Rack::Builder middleware instrumentation
|
|
168
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] INFO : Installing Rails 3+ middleware instrumentation
|
|
169
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] INFO : Installing ActiveRecord 4 instrumentation
|
|
170
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] INFO : Installing Net instrumentation
|
|
171
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] INFO : Installing Rails 4 view instrumentation
|
|
172
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] INFO : Installing Rails 4 Controller instrumentation
|
|
173
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] INFO : Installing Rails 4 Error instrumentation
|
|
174
|
+
[08/18/14 14:57:01 +0000 vagrant (9982)] INFO : Finished instrumentation
|
|
175
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] INFO : Starting the New Relic agent in "development" environment.
|
|
176
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
177
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] INFO : Reading configuration from config/newrelic.yml
|
|
178
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] INFO : New Relic Agent Developer Mode enabled.
|
|
179
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] ERROR : No application name configured.
|
|
180
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] ERROR : The Agent cannot start without at least one. Please check your
|
|
181
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
182
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] ERROR : value set for app_name in the development
|
|
183
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] ERROR : environment.
|
|
184
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
185
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] INFO : Installing Memcached instrumentation
|
|
186
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] INFO : Installing Dalli Memcache instrumentation
|
|
187
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] INFO : Installing deferred Rack instrumentation
|
|
188
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] INFO : Installing Rack::Builder middleware instrumentation
|
|
189
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] INFO : Installing Rails 3+ middleware instrumentation
|
|
190
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] INFO : Installing ActiveRecord 4 instrumentation
|
|
191
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] INFO : Installing Net instrumentation
|
|
192
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] INFO : Installing Rails 4 view instrumentation
|
|
193
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] INFO : Installing Rails 4 Controller instrumentation
|
|
194
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] INFO : Installing Rails 4 Error instrumentation
|
|
195
|
+
[08/19/14 15:38:22 +0000 vagrant (7945)] INFO : Finished instrumentation
|
|
196
|
+
[08/19/14 15:38:24 +0000 vagrant (7945)] INFO : Doing deferred dependency-detection before Rack startup
|
|
197
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] INFO : Starting the New Relic agent in "development" environment.
|
|
198
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
199
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] INFO : Reading configuration from config/newrelic.yml
|
|
200
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] INFO : New Relic Agent Developer Mode enabled.
|
|
201
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] ERROR : No application name configured.
|
|
202
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] ERROR : The Agent cannot start without at least one. Please check your
|
|
203
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
204
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] ERROR : value set for app_name in the development
|
|
205
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] ERROR : environment.
|
|
206
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
207
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] INFO : Installing Memcached instrumentation
|
|
208
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] INFO : Installing Dalli Memcache instrumentation
|
|
209
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] INFO : Installing deferred Rack instrumentation
|
|
210
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] INFO : Installing Rack::Builder middleware instrumentation
|
|
211
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] INFO : Installing Rails 3+ middleware instrumentation
|
|
212
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] INFO : Installing ActiveRecord 4 instrumentation
|
|
213
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] INFO : Installing Net instrumentation
|
|
214
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] INFO : Installing Rails 4 view instrumentation
|
|
215
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] INFO : Installing Rails 4 Controller instrumentation
|
|
216
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] INFO : Installing Rails 4 Error instrumentation
|
|
217
|
+
[08/19/14 19:40:12 +0000 vagrant (16769)] INFO : Finished instrumentation
|
|
218
|
+
[08/19/14 19:42:13 +0000 vagrant (16968)] INFO : Starting the New Relic agent in "development" environment.
|
|
219
|
+
[08/19/14 19:42:13 +0000 vagrant (16968)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
220
|
+
[08/19/14 19:42:13 +0000 vagrant (16968)] INFO : Reading configuration from config/newrelic.yml
|
|
221
|
+
[08/19/14 19:42:13 +0000 vagrant (16968)] INFO : New Relic Agent Developer Mode enabled.
|
|
222
|
+
[08/19/14 19:42:13 +0000 vagrant (16968)] ERROR : No application name configured.
|
|
223
|
+
[08/19/14 19:42:13 +0000 vagrant (16968)] ERROR : The Agent cannot start without at least one. Please check your
|
|
224
|
+
[08/19/14 19:42:13 +0000 vagrant (16968)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
225
|
+
[08/19/14 19:42:13 +0000 vagrant (16968)] ERROR : value set for app_name in the development
|
|
226
|
+
[08/19/14 19:42:13 +0000 vagrant (16968)] ERROR : environment.
|
|
227
|
+
[08/19/14 19:42:13 +0000 vagrant (16968)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
228
|
+
[08/19/14 19:42:13 +0000 vagrant (16968)] INFO : Installing Memcached instrumentation
|
|
229
|
+
[08/19/14 19:42:13 +0000 vagrant (16968)] INFO : Installing Dalli Memcache instrumentation
|
|
230
|
+
[08/19/14 19:42:13 +0000 vagrant (16968)] INFO : Installing deferred Rack instrumentation
|
|
231
|
+
[08/19/14 19:42:13 +0000 vagrant (16968)] INFO : Installing Rack::Builder middleware instrumentation
|
|
232
|
+
[08/19/14 19:42:13 +0000 vagrant (16968)] INFO : Installing Rails 3+ middleware instrumentation
|
|
233
|
+
[08/19/14 19:42:13 +0000 vagrant (16968)] INFO : Installing ActiveRecord 4 instrumentation
|
|
234
|
+
[08/19/14 19:42:14 +0000 vagrant (16968)] INFO : Installing Net instrumentation
|
|
235
|
+
[08/19/14 19:42:14 +0000 vagrant (16968)] INFO : Installing Rails 4 view instrumentation
|
|
236
|
+
[08/19/14 19:42:14 +0000 vagrant (16968)] INFO : Installing Rails 4 Controller instrumentation
|
|
237
|
+
[08/19/14 19:42:14 +0000 vagrant (16968)] INFO : Installing Rails 4 Error instrumentation
|
|
238
|
+
[08/19/14 19:42:14 +0000 vagrant (16968)] INFO : Finished instrumentation
|
|
239
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] INFO : Starting the New Relic agent in "development" environment.
|
|
240
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
241
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] INFO : Reading configuration from config/newrelic.yml
|
|
242
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] INFO : New Relic Agent Developer Mode enabled.
|
|
243
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] ERROR : No application name configured.
|
|
244
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] ERROR : The Agent cannot start without at least one. Please check your
|
|
245
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
246
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] ERROR : value set for app_name in the development
|
|
247
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] ERROR : environment.
|
|
248
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
249
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] INFO : Installing Memcached instrumentation
|
|
250
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] INFO : Installing Dalli Memcache instrumentation
|
|
251
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] INFO : Installing deferred Rack instrumentation
|
|
252
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] INFO : Installing Rack::Builder middleware instrumentation
|
|
253
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] INFO : Installing Rails 3+ middleware instrumentation
|
|
254
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] INFO : Installing ActiveRecord 4 instrumentation
|
|
255
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] INFO : Installing Net instrumentation
|
|
256
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] INFO : Installing Rails 4 view instrumentation
|
|
257
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] INFO : Installing Rails 4 Controller instrumentation
|
|
258
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] INFO : Installing Rails 4 Error instrumentation
|
|
259
|
+
[08/20/14 15:24:17 +0000 vagrant (5426)] INFO : Finished instrumentation
|
|
260
|
+
[08/20/14 15:24:18 +0000 vagrant (5426)] INFO : Doing deferred dependency-detection before Rack startup
|
|
261
|
+
[08/21/14 15:24:45 +0000 vagrant (4770)] INFO : Starting the New Relic agent in "development" environment.
|
|
262
|
+
[08/21/14 15:24:45 +0000 vagrant (4770)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
263
|
+
[08/21/14 15:24:45 +0000 vagrant (4770)] INFO : Reading configuration from config/newrelic.yml
|
|
264
|
+
[08/21/14 15:24:45 +0000 vagrant (4770)] INFO : New Relic Agent Developer Mode enabled.
|
|
265
|
+
[08/21/14 15:24:45 +0000 vagrant (4770)] ERROR : No application name configured.
|
|
266
|
+
[08/21/14 15:24:45 +0000 vagrant (4770)] ERROR : The Agent cannot start without at least one. Please check your
|
|
267
|
+
[08/21/14 15:24:45 +0000 vagrant (4770)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
268
|
+
[08/21/14 15:24:45 +0000 vagrant (4770)] ERROR : value set for app_name in the development
|
|
269
|
+
[08/21/14 15:24:45 +0000 vagrant (4770)] ERROR : environment.
|
|
270
|
+
[08/21/14 15:24:46 +0000 vagrant (4770)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
271
|
+
[08/21/14 15:24:46 +0000 vagrant (4770)] INFO : Installing Memcached instrumentation
|
|
272
|
+
[08/21/14 15:24:46 +0000 vagrant (4770)] INFO : Installing Dalli Memcache instrumentation
|
|
273
|
+
[08/21/14 15:24:46 +0000 vagrant (4770)] INFO : Installing deferred Rack instrumentation
|
|
274
|
+
[08/21/14 15:24:46 +0000 vagrant (4770)] INFO : Installing Rack::Builder middleware instrumentation
|
|
275
|
+
[08/21/14 15:24:46 +0000 vagrant (4770)] INFO : Installing Rails 3+ middleware instrumentation
|
|
276
|
+
[08/21/14 15:24:46 +0000 vagrant (4770)] INFO : Installing ActiveRecord 4 instrumentation
|
|
277
|
+
[08/21/14 15:24:46 +0000 vagrant (4770)] INFO : Installing Net instrumentation
|
|
278
|
+
[08/21/14 15:24:46 +0000 vagrant (4770)] INFO : Installing Rails 4 view instrumentation
|
|
279
|
+
[08/21/14 15:24:46 +0000 vagrant (4770)] INFO : Installing Rails 4 Controller instrumentation
|
|
280
|
+
[08/21/14 15:24:46 +0000 vagrant (4770)] INFO : Installing Rails 4 Error instrumentation
|
|
281
|
+
[08/21/14 15:24:46 +0000 vagrant (4770)] INFO : Finished instrumentation
|
|
282
|
+
[08/21/14 15:24:47 +0000 vagrant (4770)] INFO : Doing deferred dependency-detection before Rack startup
|
|
283
|
+
[08/21/14 15:32:10 +0000 vagrant (5235)] INFO : Starting the New Relic agent in "development" environment.
|
|
284
|
+
[08/21/14 15:32:10 +0000 vagrant (5235)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
285
|
+
[08/21/14 15:32:10 +0000 vagrant (5235)] INFO : Reading configuration from config/newrelic.yml
|
|
286
|
+
[08/21/14 15:32:10 +0000 vagrant (5235)] INFO : New Relic Agent Developer Mode enabled.
|
|
287
|
+
[08/21/14 15:32:10 +0000 vagrant (5235)] ERROR : No application name configured.
|
|
288
|
+
[08/21/14 15:32:10 +0000 vagrant (5235)] ERROR : The Agent cannot start without at least one. Please check your
|
|
289
|
+
[08/21/14 15:32:10 +0000 vagrant (5235)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
290
|
+
[08/21/14 15:32:10 +0000 vagrant (5235)] ERROR : value set for app_name in the development
|
|
291
|
+
[08/21/14 15:32:10 +0000 vagrant (5235)] ERROR : environment.
|
|
292
|
+
[08/21/14 15:32:11 +0000 vagrant (5235)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
293
|
+
[08/21/14 15:32:11 +0000 vagrant (5235)] INFO : Installing Memcached instrumentation
|
|
294
|
+
[08/21/14 15:32:11 +0000 vagrant (5235)] INFO : Installing Dalli Memcache instrumentation
|
|
295
|
+
[08/21/14 15:32:11 +0000 vagrant (5235)] INFO : Installing deferred Rack instrumentation
|
|
296
|
+
[08/21/14 15:32:11 +0000 vagrant (5235)] INFO : Installing Rack::Builder middleware instrumentation
|
|
297
|
+
[08/21/14 15:32:11 +0000 vagrant (5235)] INFO : Installing Rails 3+ middleware instrumentation
|
|
298
|
+
[08/21/14 15:32:11 +0000 vagrant (5235)] INFO : Installing ActiveRecord 4 instrumentation
|
|
299
|
+
[08/21/14 15:32:11 +0000 vagrant (5235)] INFO : Installing Net instrumentation
|
|
300
|
+
[08/21/14 15:32:11 +0000 vagrant (5235)] INFO : Installing Rails 4 view instrumentation
|
|
301
|
+
[08/21/14 15:32:11 +0000 vagrant (5235)] INFO : Installing Rails 4 Controller instrumentation
|
|
302
|
+
[08/21/14 15:32:11 +0000 vagrant (5235)] INFO : Installing Rails 4 Error instrumentation
|
|
303
|
+
[08/21/14 15:32:11 +0000 vagrant (5235)] INFO : Finished instrumentation
|
|
304
|
+
[08/21/14 15:32:12 +0000 vagrant (5235)] INFO : Doing deferred dependency-detection before Rack startup
|
|
305
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] INFO : Starting the New Relic agent in "development" environment.
|
|
306
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
307
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] INFO : Reading configuration from config/newrelic.yml
|
|
308
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] INFO : New Relic Agent Developer Mode enabled.
|
|
309
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] ERROR : No application name configured.
|
|
310
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] ERROR : The Agent cannot start without at least one. Please check your
|
|
311
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
312
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] ERROR : value set for app_name in the development
|
|
313
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] ERROR : environment.
|
|
314
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
315
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] INFO : Installing Memcached instrumentation
|
|
316
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] INFO : Installing Dalli Memcache instrumentation
|
|
317
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] INFO : Installing deferred Rack instrumentation
|
|
318
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] INFO : Installing Rack::Builder middleware instrumentation
|
|
319
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] INFO : Installing Rails 3+ middleware instrumentation
|
|
320
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] INFO : Installing ActiveRecord 4 instrumentation
|
|
321
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] INFO : Installing Net instrumentation
|
|
322
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] INFO : Installing Rails 4 view instrumentation
|
|
323
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] INFO : Installing Rails 4 Controller instrumentation
|
|
324
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] INFO : Installing Rails 4 Error instrumentation
|
|
325
|
+
[08/21/14 15:33:10 +0000 vagrant (5512)] INFO : Finished instrumentation
|
|
326
|
+
[08/21/14 15:33:12 +0000 vagrant (5512)] INFO : Doing deferred dependency-detection before Rack startup
|
|
327
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] INFO : Starting the New Relic agent in "development" environment.
|
|
328
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
329
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] INFO : Reading configuration from config/newrelic.yml
|
|
330
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] INFO : New Relic Agent Developer Mode enabled.
|
|
331
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] ERROR : No application name configured.
|
|
332
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] ERROR : The Agent cannot start without at least one. Please check your
|
|
333
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
334
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] ERROR : value set for app_name in the development
|
|
335
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] ERROR : environment.
|
|
336
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
337
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] INFO : Installing Memcached instrumentation
|
|
338
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] INFO : Installing Dalli Memcache instrumentation
|
|
339
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] INFO : Installing deferred Rack instrumentation
|
|
340
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] INFO : Installing Rack::Builder middleware instrumentation
|
|
341
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] INFO : Installing Rails 3+ middleware instrumentation
|
|
342
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] INFO : Installing ActiveRecord 4 instrumentation
|
|
343
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] INFO : Installing Net instrumentation
|
|
344
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] INFO : Installing Rails 4 view instrumentation
|
|
345
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] INFO : Installing Rails 4 Controller instrumentation
|
|
346
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] INFO : Installing Rails 4 Error instrumentation
|
|
347
|
+
[08/21/14 15:40:04 +0000 vagrant (6084)] INFO : Finished instrumentation
|
|
348
|
+
[08/21/14 15:40:06 +0000 vagrant (6084)] INFO : Doing deferred dependency-detection before Rack startup
|
|
349
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] INFO : Starting the New Relic agent in "development" environment.
|
|
350
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
351
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] INFO : Reading configuration from config/newrelic.yml
|
|
352
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] INFO : New Relic Agent Developer Mode enabled.
|
|
353
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] ERROR : No application name configured.
|
|
354
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] ERROR : The Agent cannot start without at least one. Please check your
|
|
355
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
356
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] ERROR : value set for app_name in the development
|
|
357
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] ERROR : environment.
|
|
358
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
359
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] INFO : Installing Memcached instrumentation
|
|
360
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] INFO : Installing Dalli Memcache instrumentation
|
|
361
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] INFO : Installing deferred Rack instrumentation
|
|
362
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] INFO : Installing Rack::Builder middleware instrumentation
|
|
363
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] INFO : Installing Rails 3+ middleware instrumentation
|
|
364
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] INFO : Installing ActiveRecord 4 instrumentation
|
|
365
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] INFO : Installing Net instrumentation
|
|
366
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] INFO : Installing Rails 4 view instrumentation
|
|
367
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] INFO : Installing Rails 4 Controller instrumentation
|
|
368
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] INFO : Installing Rails 4 Error instrumentation
|
|
369
|
+
[08/21/14 15:47:59 +0000 vagrant (6535)] INFO : Finished instrumentation
|
|
370
|
+
[08/21/14 15:48:01 +0000 vagrant (6535)] INFO : Doing deferred dependency-detection before Rack startup
|
|
371
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] INFO : Starting the New Relic agent in "development" environment.
|
|
372
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
373
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] INFO : Reading configuration from config/newrelic.yml
|
|
374
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] INFO : New Relic Agent Developer Mode enabled.
|
|
375
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] ERROR : No application name configured.
|
|
376
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] ERROR : The Agent cannot start without at least one. Please check your
|
|
377
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
378
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] ERROR : value set for app_name in the development
|
|
379
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] ERROR : environment.
|
|
380
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
381
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] INFO : Installing Memcached instrumentation
|
|
382
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] INFO : Installing Dalli Memcache instrumentation
|
|
383
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] INFO : Installing deferred Rack instrumentation
|
|
384
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] INFO : Installing Rack::Builder middleware instrumentation
|
|
385
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] INFO : Installing Rails 3+ middleware instrumentation
|
|
386
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] INFO : Installing ActiveRecord 4 instrumentation
|
|
387
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] INFO : Installing Net instrumentation
|
|
388
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] INFO : Installing Rails 4 view instrumentation
|
|
389
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] INFO : Installing Rails 4 Controller instrumentation
|
|
390
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] INFO : Installing Rails 4 Error instrumentation
|
|
391
|
+
[08/21/14 16:01:13 +0000 vagrant (4571)] INFO : Finished instrumentation
|
|
392
|
+
[08/21/14 16:01:15 +0000 vagrant (4571)] INFO : Doing deferred dependency-detection before Rack startup
|
|
393
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] INFO : Starting the New Relic agent in "development" environment.
|
|
394
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
395
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] INFO : Reading configuration from config/newrelic.yml
|
|
396
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] INFO : New Relic Agent Developer Mode enabled.
|
|
397
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] ERROR : No application name configured.
|
|
398
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] ERROR : The Agent cannot start without at least one. Please check your
|
|
399
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
400
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] ERROR : value set for app_name in the development
|
|
401
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] ERROR : environment.
|
|
402
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
403
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] INFO : Installing Memcached instrumentation
|
|
404
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] INFO : Installing Dalli Memcache instrumentation
|
|
405
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] INFO : Installing deferred Rack instrumentation
|
|
406
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] INFO : Installing Rack::Builder middleware instrumentation
|
|
407
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] INFO : Installing Rails 3+ middleware instrumentation
|
|
408
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] INFO : Installing ActiveRecord 4 instrumentation
|
|
409
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] INFO : Installing Net instrumentation
|
|
410
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] INFO : Installing Rails 4 view instrumentation
|
|
411
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] INFO : Installing Rails 4 Controller instrumentation
|
|
412
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] INFO : Installing Rails 4 Error instrumentation
|
|
413
|
+
[08/21/14 18:40:46 +0000 vagrant (9981)] INFO : Finished instrumentation
|
|
414
|
+
[08/21/14 18:40:48 +0000 vagrant (9981)] INFO : Doing deferred dependency-detection before Rack startup
|
|
415
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] INFO : Starting the New Relic agent in "development" environment.
|
|
416
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
417
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] INFO : Reading configuration from config/newrelic.yml
|
|
418
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] INFO : New Relic Agent Developer Mode enabled.
|
|
419
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] ERROR : No application name configured.
|
|
420
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] ERROR : The Agent cannot start without at least one. Please check your
|
|
421
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
422
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] ERROR : value set for app_name in the development
|
|
423
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] ERROR : environment.
|
|
424
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
425
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] INFO : Installing Memcached instrumentation
|
|
426
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] INFO : Installing Dalli Memcache instrumentation
|
|
427
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] INFO : Installing deferred Rack instrumentation
|
|
428
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] INFO : Installing Rack::Builder middleware instrumentation
|
|
429
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] INFO : Installing Rails 3+ middleware instrumentation
|
|
430
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] INFO : Installing ActiveRecord 4 instrumentation
|
|
431
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] INFO : Installing Net instrumentation
|
|
432
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] INFO : Installing Rails 4 view instrumentation
|
|
433
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] INFO : Installing Rails 4 Controller instrumentation
|
|
434
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] INFO : Installing Rails 4 Error instrumentation
|
|
435
|
+
[08/21/14 19:07:49 +0000 vagrant (10948)] INFO : Finished instrumentation
|
|
436
|
+
[08/21/14 19:07:51 +0000 vagrant (10948)] INFO : Doing deferred dependency-detection before Rack startup
|
|
437
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] INFO : Starting the New Relic agent in "development" environment.
|
|
438
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
439
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] INFO : Reading configuration from config/newrelic.yml
|
|
440
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] INFO : New Relic Agent Developer Mode enabled.
|
|
441
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] ERROR : No application name configured.
|
|
442
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] ERROR : The Agent cannot start without at least one. Please check your
|
|
443
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
444
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] ERROR : value set for app_name in the development
|
|
445
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] ERROR : environment.
|
|
446
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
447
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] INFO : Installing Memcached instrumentation
|
|
448
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] INFO : Installing Dalli Memcache instrumentation
|
|
449
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] INFO : Installing deferred Rack instrumentation
|
|
450
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] INFO : Installing Rack::Builder middleware instrumentation
|
|
451
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] INFO : Installing Rails 3+ middleware instrumentation
|
|
452
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] INFO : Installing ActiveRecord 4 instrumentation
|
|
453
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] INFO : Installing Net instrumentation
|
|
454
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] INFO : Installing Rails 4 view instrumentation
|
|
455
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] INFO : Installing Rails 4 Controller instrumentation
|
|
456
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] INFO : Installing Rails 4 Error instrumentation
|
|
457
|
+
[08/21/14 19:13:16 +0000 vagrant (11195)] INFO : Finished instrumentation
|
|
458
|
+
[08/21/14 19:13:18 +0000 vagrant (11195)] INFO : Doing deferred dependency-detection before Rack startup
|
|
459
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] INFO : Starting the New Relic agent in "development" environment.
|
|
460
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
461
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] INFO : Reading configuration from config/newrelic.yml
|
|
462
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] INFO : New Relic Agent Developer Mode enabled.
|
|
463
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] ERROR : No application name configured.
|
|
464
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] ERROR : The Agent cannot start without at least one. Please check your
|
|
465
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
466
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] ERROR : value set for app_name in the development
|
|
467
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] ERROR : environment.
|
|
468
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
469
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] INFO : Installing Memcached instrumentation
|
|
470
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] INFO : Installing Dalli Memcache instrumentation
|
|
471
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] INFO : Installing deferred Rack instrumentation
|
|
472
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] INFO : Installing Rack::Builder middleware instrumentation
|
|
473
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] INFO : Installing Rails 3+ middleware instrumentation
|
|
474
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] INFO : Installing ActiveRecord 4 instrumentation
|
|
475
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] INFO : Installing Net instrumentation
|
|
476
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] INFO : Installing Rails 4 view instrumentation
|
|
477
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] INFO : Installing Rails 4 Controller instrumentation
|
|
478
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] INFO : Installing Rails 4 Error instrumentation
|
|
479
|
+
[08/22/14 15:20:18 +0000 vagrant (4535)] INFO : Finished instrumentation
|
|
480
|
+
[08/22/14 15:20:21 +0000 vagrant (4535)] INFO : Doing deferred dependency-detection before Rack startup
|
|
481
|
+
[08/22/14 18:29:53 +0000 vagrant (11293)] INFO : Starting the New Relic agent in "development" environment.
|
|
482
|
+
[08/22/14 18:29:53 +0000 vagrant (11293)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
483
|
+
[08/22/14 18:29:53 +0000 vagrant (11293)] INFO : Reading configuration from config/newrelic.yml
|
|
484
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] INFO : New Relic Agent Developer Mode enabled.
|
|
485
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] ERROR : No application name configured.
|
|
486
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] ERROR : The Agent cannot start without at least one. Please check your
|
|
487
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
488
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] ERROR : value set for app_name in the development
|
|
489
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] ERROR : environment.
|
|
490
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
491
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] INFO : Installing Memcached instrumentation
|
|
492
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] INFO : Installing Dalli Memcache instrumentation
|
|
493
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] INFO : Installing deferred Rack instrumentation
|
|
494
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] INFO : Installing Rack::Builder middleware instrumentation
|
|
495
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] INFO : Installing Rails 3+ middleware instrumentation
|
|
496
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] INFO : Installing ActiveRecord 4 instrumentation
|
|
497
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] INFO : Installing Net instrumentation
|
|
498
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] INFO : Installing Rails 4 view instrumentation
|
|
499
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] INFO : Installing Rails 4 Controller instrumentation
|
|
500
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] INFO : Installing Rails 4 Error instrumentation
|
|
501
|
+
[08/22/14 18:29:54 +0000 vagrant (11293)] INFO : Finished instrumentation
|
|
502
|
+
[08/22/14 18:29:56 +0000 vagrant (11293)] INFO : Doing deferred dependency-detection before Rack startup
|
|
503
|
+
[08/22/14 20:47:38 +0000 vagrant (15534)] INFO : Starting the New Relic agent in "development" environment.
|
|
504
|
+
[08/22/14 20:47:38 +0000 vagrant (15534)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
505
|
+
[08/22/14 20:47:38 +0000 vagrant (15534)] INFO : Reading configuration from config/newrelic.yml
|
|
506
|
+
[08/22/14 20:47:38 +0000 vagrant (15534)] INFO : New Relic Agent Developer Mode enabled.
|
|
507
|
+
[08/22/14 20:47:38 +0000 vagrant (15534)] ERROR : No application name configured.
|
|
508
|
+
[08/22/14 20:47:38 +0000 vagrant (15534)] ERROR : The Agent cannot start without at least one. Please check your
|
|
509
|
+
[08/22/14 20:47:38 +0000 vagrant (15534)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
510
|
+
[08/22/14 20:47:38 +0000 vagrant (15534)] ERROR : value set for app_name in the development
|
|
511
|
+
[08/22/14 20:47:38 +0000 vagrant (15534)] ERROR : environment.
|
|
512
|
+
[08/22/14 20:47:39 +0000 vagrant (15534)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
513
|
+
[08/22/14 20:47:39 +0000 vagrant (15534)] INFO : Installing Memcached instrumentation
|
|
514
|
+
[08/22/14 20:47:39 +0000 vagrant (15534)] INFO : Installing Dalli Memcache instrumentation
|
|
515
|
+
[08/22/14 20:47:39 +0000 vagrant (15534)] INFO : Installing deferred Rack instrumentation
|
|
516
|
+
[08/22/14 20:47:39 +0000 vagrant (15534)] INFO : Installing Rack::Builder middleware instrumentation
|
|
517
|
+
[08/22/14 20:47:39 +0000 vagrant (15534)] INFO : Installing Rails 3+ middleware instrumentation
|
|
518
|
+
[08/22/14 20:47:39 +0000 vagrant (15534)] INFO : Installing ActiveRecord 4 instrumentation
|
|
519
|
+
[08/22/14 20:47:39 +0000 vagrant (15534)] INFO : Installing Net instrumentation
|
|
520
|
+
[08/22/14 20:47:39 +0000 vagrant (15534)] INFO : Installing Rails 4 view instrumentation
|
|
521
|
+
[08/22/14 20:47:39 +0000 vagrant (15534)] INFO : Installing Rails 4 Controller instrumentation
|
|
522
|
+
[08/22/14 20:47:39 +0000 vagrant (15534)] INFO : Installing Rails 4 Error instrumentation
|
|
523
|
+
[08/22/14 20:47:39 +0000 vagrant (15534)] INFO : Finished instrumentation
|
|
524
|
+
[08/22/14 20:47:41 +0000 vagrant (15534)] INFO : Doing deferred dependency-detection before Rack startup
|
|
525
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] INFO : Starting the New Relic agent in "development" environment.
|
|
526
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
527
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] INFO : Reading configuration from config/newrelic.yml
|
|
528
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] INFO : New Relic Agent Developer Mode enabled.
|
|
529
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] ERROR : No application name configured.
|
|
530
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] ERROR : The Agent cannot start without at least one. Please check your
|
|
531
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
532
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] ERROR : value set for app_name in the development
|
|
533
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] ERROR : environment.
|
|
534
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
535
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] INFO : Installing Memcached instrumentation
|
|
536
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] INFO : Installing Dalli Memcache instrumentation
|
|
537
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] INFO : Installing deferred Rack instrumentation
|
|
538
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] INFO : Installing Rack::Builder middleware instrumentation
|
|
539
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] INFO : Installing Rails 3+ middleware instrumentation
|
|
540
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] INFO : Installing ActiveRecord 4 instrumentation
|
|
541
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] INFO : Installing Net instrumentation
|
|
542
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] INFO : Installing Rails 4 view instrumentation
|
|
543
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] INFO : Installing Rails 4 Controller instrumentation
|
|
544
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] INFO : Installing Rails 4 Error instrumentation
|
|
545
|
+
[08/25/14 13:46:58 +0000 vagrant (4449)] INFO : Finished instrumentation
|
|
546
|
+
[08/25/14 13:47:00 +0000 vagrant (4449)] INFO : Doing deferred dependency-detection before Rack startup
|
|
547
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] INFO : Starting the New Relic agent in "development" environment.
|
|
548
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
549
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] INFO : Reading configuration from config/newrelic.yml
|
|
550
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] INFO : New Relic Agent Developer Mode enabled.
|
|
551
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] ERROR : No application name configured.
|
|
552
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] ERROR : The Agent cannot start without at least one. Please check your
|
|
553
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
554
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] ERROR : value set for app_name in the development
|
|
555
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] ERROR : environment.
|
|
556
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
557
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] INFO : Installing Memcached instrumentation
|
|
558
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] INFO : Installing Dalli Memcache instrumentation
|
|
559
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] INFO : Installing deferred Rack instrumentation
|
|
560
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] INFO : Installing Rack::Builder middleware instrumentation
|
|
561
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] INFO : Installing Rails 3+ middleware instrumentation
|
|
562
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] INFO : Installing ActiveRecord 4 instrumentation
|
|
563
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] INFO : Installing Net instrumentation
|
|
564
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] INFO : Installing Rails 4 view instrumentation
|
|
565
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] INFO : Installing Rails 4 Controller instrumentation
|
|
566
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] INFO : Installing Rails 4 Error instrumentation
|
|
567
|
+
[08/25/14 14:04:11 +0000 vagrant (6508)] INFO : Finished instrumentation
|
|
568
|
+
[08/25/14 14:04:13 +0000 vagrant (6508)] INFO : Doing deferred dependency-detection before Rack startup
|
|
569
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] INFO : Starting the New Relic agent in "development" environment.
|
|
570
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
571
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] INFO : Reading configuration from config/newrelic.yml
|
|
572
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] INFO : New Relic Agent Developer Mode enabled.
|
|
573
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] ERROR : No application name configured.
|
|
574
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] ERROR : The Agent cannot start without at least one. Please check your
|
|
575
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
576
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] ERROR : value set for app_name in the development
|
|
577
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] ERROR : environment.
|
|
578
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
579
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] INFO : Installing Memcached instrumentation
|
|
580
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] INFO : Installing Dalli Memcache instrumentation
|
|
581
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] INFO : Installing deferred Rack instrumentation
|
|
582
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] INFO : Installing Rack::Builder middleware instrumentation
|
|
583
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] INFO : Installing Rails 3+ middleware instrumentation
|
|
584
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] INFO : Installing ActiveRecord 4 instrumentation
|
|
585
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] INFO : Installing Net instrumentation
|
|
586
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] INFO : Installing Rails 4 view instrumentation
|
|
587
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] INFO : Installing Rails 4 Controller instrumentation
|
|
588
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] INFO : Installing Rails 4 Error instrumentation
|
|
589
|
+
[08/25/14 15:27:13 +0000 vagrant (10527)] INFO : Finished instrumentation
|
|
590
|
+
[08/25/14 15:27:15 +0000 vagrant (10527)] INFO : Doing deferred dependency-detection before Rack startup
|
|
591
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] INFO : Starting the New Relic agent in "development" environment.
|
|
592
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
593
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] INFO : Reading configuration from config/newrelic.yml
|
|
594
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] INFO : New Relic Agent Developer Mode enabled.
|
|
595
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] ERROR : No application name configured.
|
|
596
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] ERROR : The Agent cannot start without at least one. Please check your
|
|
597
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
598
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] ERROR : value set for app_name in the development
|
|
599
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] ERROR : environment.
|
|
600
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
601
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] INFO : Installing Memcached instrumentation
|
|
602
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] INFO : Installing Dalli Memcache instrumentation
|
|
603
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] INFO : Installing deferred Rack instrumentation
|
|
604
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] INFO : Installing Rack::Builder middleware instrumentation
|
|
605
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] INFO : Installing Rails 3+ middleware instrumentation
|
|
606
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] INFO : Installing ActiveRecord 4 instrumentation
|
|
607
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] INFO : Installing Net instrumentation
|
|
608
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] INFO : Installing Rails 4 view instrumentation
|
|
609
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] INFO : Installing Rails 4 Controller instrumentation
|
|
610
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] INFO : Installing Rails 4 Error instrumentation
|
|
611
|
+
[08/26/14 14:39:14 +0000 vagrant (4445)] INFO : Finished instrumentation
|
|
612
|
+
[08/26/14 14:39:16 +0000 vagrant (4445)] INFO : Doing deferred dependency-detection before Rack startup
|
|
613
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] INFO : Starting the New Relic agent in "development" environment.
|
|
614
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
615
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
616
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] INFO : New Relic Agent Developer Mode enabled.
|
|
617
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] ERROR : No application name configured.
|
|
618
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] ERROR : The Agent cannot start without at least one. Please check your
|
|
619
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
620
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] ERROR : value set for app_name in the development
|
|
621
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] ERROR : environment.
|
|
622
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
623
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] INFO : Installing Memcached instrumentation
|
|
624
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] INFO : Installing Dalli Memcache instrumentation
|
|
625
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] INFO : Installing deferred Rack instrumentation
|
|
626
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] INFO : Installing Rack::Builder middleware instrumentation
|
|
627
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] INFO : Installing Rails 3+ middleware instrumentation
|
|
628
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] INFO : Installing ActiveRecord 4 instrumentation
|
|
629
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] INFO : Installing Net instrumentation
|
|
630
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] INFO : Installing Rails 4 view instrumentation
|
|
631
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] INFO : Installing Rails 4 Controller instrumentation
|
|
632
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] INFO : Installing Rails 4 Error instrumentation
|
|
633
|
+
[08/26/14 14:46:36 +0000 vagrant (5883)] INFO : Finished instrumentation
|
|
634
|
+
[08/26/14 14:46:38 +0000 vagrant (5883)] INFO : Doing deferred dependency-detection before Rack startup
|
|
635
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] INFO : Starting the New Relic agent in "development" environment.
|
|
636
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
637
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
638
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] INFO : New Relic Agent Developer Mode enabled.
|
|
639
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] ERROR : No application name configured.
|
|
640
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] ERROR : The Agent cannot start without at least one. Please check your
|
|
641
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
642
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] ERROR : value set for app_name in the development
|
|
643
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] ERROR : environment.
|
|
644
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
645
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] INFO : Installing Memcached instrumentation
|
|
646
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] INFO : Installing Dalli Memcache instrumentation
|
|
647
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] INFO : Installing deferred Rack instrumentation
|
|
648
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] INFO : Installing Rack::Builder middleware instrumentation
|
|
649
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] INFO : Installing Rails 3+ middleware instrumentation
|
|
650
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] INFO : Installing ActiveRecord 4 instrumentation
|
|
651
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] INFO : Installing Net instrumentation
|
|
652
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] INFO : Installing Rails 4 view instrumentation
|
|
653
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] INFO : Installing Rails 4 Controller instrumentation
|
|
654
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] INFO : Installing Rails 4 Error instrumentation
|
|
655
|
+
[08/26/14 15:00:21 +0000 vagrant (6358)] INFO : Finished instrumentation
|
|
656
|
+
[08/26/14 15:00:23 +0000 vagrant (6358)] INFO : Doing deferred dependency-detection before Rack startup
|
|
657
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] INFO : Starting the New Relic agent in "development" environment.
|
|
658
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
659
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
660
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] INFO : New Relic Agent Developer Mode enabled.
|
|
661
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] ERROR : No application name configured.
|
|
662
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] ERROR : The Agent cannot start without at least one. Please check your
|
|
663
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
664
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] ERROR : value set for app_name in the development
|
|
665
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] ERROR : environment.
|
|
666
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
667
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] INFO : Installing Memcached instrumentation
|
|
668
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] INFO : Installing Dalli Memcache instrumentation
|
|
669
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] INFO : Installing deferred Rack instrumentation
|
|
670
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] INFO : Installing Rack::Builder middleware instrumentation
|
|
671
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] INFO : Installing Rails 3+ middleware instrumentation
|
|
672
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] INFO : Installing ActiveRecord 4 instrumentation
|
|
673
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] INFO : Installing Net instrumentation
|
|
674
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] INFO : Installing Rails 4 view instrumentation
|
|
675
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] INFO : Installing Rails 4 Controller instrumentation
|
|
676
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] INFO : Installing Rails 4 Error instrumentation
|
|
677
|
+
[08/26/14 22:33:55 +0000 vagrant (6029)] INFO : Finished instrumentation
|
|
678
|
+
[08/26/14 22:33:57 +0000 vagrant (6029)] INFO : Doing deferred dependency-detection before Rack startup
|
|
679
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] INFO : Starting the New Relic agent in "development" environment.
|
|
680
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
681
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
682
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] INFO : New Relic Agent Developer Mode enabled.
|
|
683
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] ERROR : No application name configured.
|
|
684
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] ERROR : The Agent cannot start without at least one. Please check your
|
|
685
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
686
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] ERROR : value set for app_name in the development
|
|
687
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] ERROR : environment.
|
|
688
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
689
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] INFO : Installing Memcached instrumentation
|
|
690
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] INFO : Installing Dalli Memcache instrumentation
|
|
691
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] INFO : Installing deferred Rack instrumentation
|
|
692
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] INFO : Installing Rack::Builder middleware instrumentation
|
|
693
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] INFO : Installing Rails 3+ middleware instrumentation
|
|
694
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] INFO : Installing ActiveRecord 4 instrumentation
|
|
695
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] INFO : Installing Net instrumentation
|
|
696
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] INFO : Installing Rails 4 view instrumentation
|
|
697
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] INFO : Installing Rails 4 Controller instrumentation
|
|
698
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] INFO : Installing Rails 4 Error instrumentation
|
|
699
|
+
[08/27/14 16:07:53 +0000 vagrant (4554)] INFO : Finished instrumentation
|
|
700
|
+
[08/27/14 16:07:57 +0000 vagrant (4554)] INFO : Doing deferred dependency-detection before Rack startup
|
|
701
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] INFO : Starting the New Relic agent in "development" environment.
|
|
702
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
703
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
704
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] INFO : New Relic Agent Developer Mode enabled.
|
|
705
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] ERROR : No application name configured.
|
|
706
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] ERROR : The Agent cannot start without at least one. Please check your
|
|
707
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
708
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] ERROR : value set for app_name in the development
|
|
709
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] ERROR : environment.
|
|
710
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
711
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] INFO : Installing Memcached instrumentation
|
|
712
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] INFO : Installing Dalli Memcache instrumentation
|
|
713
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] INFO : Installing deferred Rack instrumentation
|
|
714
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] INFO : Installing Rack::Builder middleware instrumentation
|
|
715
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] INFO : Installing Rails 3+ middleware instrumentation
|
|
716
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] INFO : Installing ActiveRecord 4 instrumentation
|
|
717
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] INFO : Installing Net instrumentation
|
|
718
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] INFO : Installing Rails 4 view instrumentation
|
|
719
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] INFO : Installing Rails 4 Controller instrumentation
|
|
720
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] INFO : Installing Rails 4 Error instrumentation
|
|
721
|
+
[08/28/14 22:51:16 +0000 vagrant (4444)] INFO : Finished instrumentation
|
|
722
|
+
[08/28/14 22:51:18 +0000 vagrant (4444)] INFO : Doing deferred dependency-detection before Rack startup
|
|
723
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] INFO : Starting the New Relic agent in "development" environment.
|
|
724
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
725
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
726
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] INFO : New Relic Agent Developer Mode enabled.
|
|
727
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] ERROR : No application name configured.
|
|
728
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] ERROR : The Agent cannot start without at least one. Please check your
|
|
729
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
730
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] ERROR : value set for app_name in the development
|
|
731
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] ERROR : environment.
|
|
732
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
733
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] INFO : Installing Memcached instrumentation
|
|
734
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] INFO : Installing Dalli Memcache instrumentation
|
|
735
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] INFO : Installing deferred Rack instrumentation
|
|
736
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] INFO : Installing Rack::Builder middleware instrumentation
|
|
737
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] INFO : Installing Rails 3+ middleware instrumentation
|
|
738
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] INFO : Installing ActiveRecord 4 instrumentation
|
|
739
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] INFO : Installing Net instrumentation
|
|
740
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] INFO : Installing Rails 4 view instrumentation
|
|
741
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] INFO : Installing Rails 4 Controller instrumentation
|
|
742
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] INFO : Installing Rails 4 Error instrumentation
|
|
743
|
+
[09/02/14 13:36:35 +0000 vagrant (4394)] INFO : Finished instrumentation
|
|
744
|
+
[09/02/14 13:36:37 +0000 vagrant (4394)] INFO : Doing deferred dependency-detection before Rack startup
|
|
745
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] INFO : Starting the New Relic agent in "development" environment.
|
|
746
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
747
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
748
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] INFO : New Relic Agent Developer Mode enabled.
|
|
749
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] ERROR : No application name configured.
|
|
750
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] ERROR : The Agent cannot start without at least one. Please check your
|
|
751
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
752
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] ERROR : value set for app_name in the development
|
|
753
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] ERROR : environment.
|
|
754
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
755
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] INFO : Installing Memcached instrumentation
|
|
756
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] INFO : Installing Dalli Memcache instrumentation
|
|
757
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] INFO : Installing deferred Rack instrumentation
|
|
758
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] INFO : Installing Rack::Builder middleware instrumentation
|
|
759
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] INFO : Installing Rails 3+ middleware instrumentation
|
|
760
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] INFO : Installing ActiveRecord 4 instrumentation
|
|
761
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] INFO : Installing Net instrumentation
|
|
762
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] INFO : Installing Rails 4 view instrumentation
|
|
763
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] INFO : Installing Rails 4 Controller instrumentation
|
|
764
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] INFO : Installing Rails 4 Error instrumentation
|
|
765
|
+
[09/02/14 13:43:30 +0000 vagrant (5117)] INFO : Finished instrumentation
|
|
766
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] INFO : Starting the New Relic agent in "development" environment.
|
|
767
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
768
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
769
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] INFO : New Relic Agent Developer Mode enabled.
|
|
770
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] ERROR : No application name configured.
|
|
771
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] ERROR : The Agent cannot start without at least one. Please check your
|
|
772
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
773
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] ERROR : value set for app_name in the development
|
|
774
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] ERROR : environment.
|
|
775
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
776
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] INFO : Installing Memcached instrumentation
|
|
777
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] INFO : Installing Dalli Memcache instrumentation
|
|
778
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] INFO : Installing deferred Rack instrumentation
|
|
779
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] INFO : Installing Rack::Builder middleware instrumentation
|
|
780
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] INFO : Installing Rails 3+ middleware instrumentation
|
|
781
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] INFO : Installing ActiveRecord 4 instrumentation
|
|
782
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] INFO : Installing Net instrumentation
|
|
783
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] INFO : Installing Rails 4 view instrumentation
|
|
784
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] INFO : Installing Rails 4 Controller instrumentation
|
|
785
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] INFO : Installing Rails 4 Error instrumentation
|
|
786
|
+
[09/02/14 13:47:39 +0000 vagrant (5319)] INFO : Finished instrumentation
|
|
787
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] INFO : Starting the New Relic agent in "development" environment.
|
|
788
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
789
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
790
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] INFO : New Relic Agent Developer Mode enabled.
|
|
791
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] ERROR : No application name configured.
|
|
792
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] ERROR : The Agent cannot start without at least one. Please check your
|
|
793
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
794
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] ERROR : value set for app_name in the development
|
|
795
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] ERROR : environment.
|
|
796
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
797
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] INFO : Installing Memcached instrumentation
|
|
798
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] INFO : Installing Dalli Memcache instrumentation
|
|
799
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] INFO : Installing deferred Rack instrumentation
|
|
800
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] INFO : Installing Rack::Builder middleware instrumentation
|
|
801
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] INFO : Installing Rails 3+ middleware instrumentation
|
|
802
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] INFO : Installing ActiveRecord 4 instrumentation
|
|
803
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] INFO : Installing Net instrumentation
|
|
804
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] INFO : Installing Rails 4 view instrumentation
|
|
805
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] INFO : Installing Rails 4 Controller instrumentation
|
|
806
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] INFO : Installing Rails 4 Error instrumentation
|
|
807
|
+
[09/03/14 15:26:26 +0000 vagrant (4446)] INFO : Finished instrumentation
|
|
808
|
+
[09/03/14 15:26:28 +0000 vagrant (4446)] INFO : Doing deferred dependency-detection before Rack startup
|
|
809
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] INFO : Starting the New Relic agent in "development" environment.
|
|
810
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
811
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
812
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] INFO : New Relic Agent Developer Mode enabled.
|
|
813
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] ERROR : No application name configured.
|
|
814
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] ERROR : The Agent cannot start without at least one. Please check your
|
|
815
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
816
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] ERROR : value set for app_name in the development
|
|
817
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] ERROR : environment.
|
|
818
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
819
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] INFO : Installing Memcached instrumentation
|
|
820
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] INFO : Installing Dalli Memcache instrumentation
|
|
821
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] INFO : Installing deferred Rack instrumentation
|
|
822
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] INFO : Installing Rack::Builder middleware instrumentation
|
|
823
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] INFO : Installing Rails 3+ middleware instrumentation
|
|
824
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] INFO : Installing ActiveRecord 4 instrumentation
|
|
825
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] INFO : Installing Net instrumentation
|
|
826
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] INFO : Installing Rails 4 view instrumentation
|
|
827
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] INFO : Installing Rails 4 Controller instrumentation
|
|
828
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] INFO : Installing Rails 4 Error instrumentation
|
|
829
|
+
[09/03/14 15:36:59 +0000 vagrant (5478)] INFO : Finished instrumentation
|
|
830
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] INFO : Starting the New Relic agent in "development" environment.
|
|
831
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
832
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
833
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] INFO : New Relic Agent Developer Mode enabled.
|
|
834
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] ERROR : No application name configured.
|
|
835
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] ERROR : The Agent cannot start without at least one. Please check your
|
|
836
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
837
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] ERROR : value set for app_name in the development
|
|
838
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] ERROR : environment.
|
|
839
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
840
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] INFO : Installing Memcached instrumentation
|
|
841
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] INFO : Installing Dalli Memcache instrumentation
|
|
842
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] INFO : Installing deferred Rack instrumentation
|
|
843
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] INFO : Installing Rack::Builder middleware instrumentation
|
|
844
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] INFO : Installing Rails 3+ middleware instrumentation
|
|
845
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] INFO : Installing ActiveRecord 4 instrumentation
|
|
846
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] INFO : Installing Net instrumentation
|
|
847
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] INFO : Installing Rails 4 view instrumentation
|
|
848
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] INFO : Installing Rails 4 Controller instrumentation
|
|
849
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] INFO : Installing Rails 4 Error instrumentation
|
|
850
|
+
[09/03/14 15:50:43 +0000 vagrant (6368)] INFO : Finished instrumentation
|
|
851
|
+
[09/03/14 15:50:45 +0000 vagrant (6368)] INFO : Doing deferred dependency-detection before Rack startup
|
|
852
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] INFO : Starting the New Relic agent in "development" environment.
|
|
853
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
854
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
855
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] INFO : New Relic Agent Developer Mode enabled.
|
|
856
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] ERROR : No application name configured.
|
|
857
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] ERROR : The Agent cannot start without at least one. Please check your
|
|
858
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
859
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] ERROR : value set for app_name in the development
|
|
860
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] ERROR : environment.
|
|
861
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
862
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] INFO : Installing Memcached instrumentation
|
|
863
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] INFO : Installing Dalli Memcache instrumentation
|
|
864
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] INFO : Installing deferred Rack instrumentation
|
|
865
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] INFO : Installing Rack::Builder middleware instrumentation
|
|
866
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] INFO : Installing Rails 3+ middleware instrumentation
|
|
867
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] INFO : Installing ActiveRecord 4 instrumentation
|
|
868
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] INFO : Installing Net instrumentation
|
|
869
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] INFO : Installing Rails 4 view instrumentation
|
|
870
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] INFO : Installing Rails 4 Controller instrumentation
|
|
871
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] INFO : Installing Rails 4 Error instrumentation
|
|
872
|
+
[09/03/14 15:52:09 +0000 vagrant (6577)] INFO : Finished instrumentation
|
|
873
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] INFO : Starting the New Relic agent in "development" environment.
|
|
874
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
875
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
876
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] INFO : New Relic Agent Developer Mode enabled.
|
|
877
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] ERROR : No application name configured.
|
|
878
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] ERROR : The Agent cannot start without at least one. Please check your
|
|
879
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
880
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] ERROR : value set for app_name in the development
|
|
881
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] ERROR : environment.
|
|
882
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
883
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] INFO : Installing Memcached instrumentation
|
|
884
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] INFO : Installing Dalli Memcache instrumentation
|
|
885
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] INFO : Installing deferred Rack instrumentation
|
|
886
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] INFO : Installing Rack::Builder middleware instrumentation
|
|
887
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] INFO : Installing Rails 3+ middleware instrumentation
|
|
888
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] INFO : Installing ActiveRecord 4 instrumentation
|
|
889
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] INFO : Installing Net instrumentation
|
|
890
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] INFO : Installing Rails 4 view instrumentation
|
|
891
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] INFO : Installing Rails 4 Controller instrumentation
|
|
892
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] INFO : Installing Rails 4 Error instrumentation
|
|
893
|
+
[09/03/14 16:11:16 +0000 vagrant (7300)] INFO : Finished instrumentation
|
|
894
|
+
[09/03/14 16:11:18 +0000 vagrant (7300)] INFO : Doing deferred dependency-detection before Rack startup
|
|
895
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] INFO : Starting the New Relic agent in "development" environment.
|
|
896
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
897
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
898
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] INFO : New Relic Agent Developer Mode enabled.
|
|
899
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] ERROR : No application name configured.
|
|
900
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] ERROR : The Agent cannot start without at least one. Please check your
|
|
901
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
902
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] ERROR : value set for app_name in the development
|
|
903
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] ERROR : environment.
|
|
904
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
905
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] INFO : Installing Memcached instrumentation
|
|
906
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] INFO : Installing Dalli Memcache instrumentation
|
|
907
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] INFO : Installing deferred Rack instrumentation
|
|
908
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] INFO : Installing Rack::Builder middleware instrumentation
|
|
909
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] INFO : Installing Rails 3+ middleware instrumentation
|
|
910
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] INFO : Installing ActiveRecord 4 instrumentation
|
|
911
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] INFO : Installing Net instrumentation
|
|
912
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] INFO : Installing Rails 4 view instrumentation
|
|
913
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] INFO : Installing Rails 4 Controller instrumentation
|
|
914
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] INFO : Installing Rails 4 Error instrumentation
|
|
915
|
+
[09/03/14 16:57:32 +0000 vagrant (4535)] INFO : Finished instrumentation
|
|
916
|
+
[09/03/14 16:57:34 +0000 vagrant (4535)] INFO : Doing deferred dependency-detection before Rack startup
|
|
917
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] INFO : Starting the New Relic agent in "development" environment.
|
|
918
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
919
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
920
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] INFO : New Relic Agent Developer Mode enabled.
|
|
921
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] ERROR : No application name configured.
|
|
922
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] ERROR : The Agent cannot start without at least one. Please check your
|
|
923
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
924
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] ERROR : value set for app_name in the development
|
|
925
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] ERROR : environment.
|
|
926
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
927
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] INFO : Installing Memcached instrumentation
|
|
928
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] INFO : Installing Dalli Memcache instrumentation
|
|
929
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] INFO : Installing deferred Rack instrumentation
|
|
930
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] INFO : Installing Rack::Builder middleware instrumentation
|
|
931
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] INFO : Installing Rails 3+ middleware instrumentation
|
|
932
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] INFO : Installing ActiveRecord 4 instrumentation
|
|
933
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] INFO : Installing Net instrumentation
|
|
934
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] INFO : Installing Rails 4 view instrumentation
|
|
935
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] INFO : Installing Rails 4 Controller instrumentation
|
|
936
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] INFO : Installing Rails 4 Error instrumentation
|
|
937
|
+
[09/03/14 18:33:14 +0000 vagrant (5540)] INFO : Finished instrumentation
|
|
938
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] INFO : Starting the New Relic agent in "development" environment.
|
|
939
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
940
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
941
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] INFO : New Relic Agent Developer Mode enabled.
|
|
942
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] ERROR : No application name configured.
|
|
943
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] ERROR : The Agent cannot start without at least one. Please check your
|
|
944
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
945
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] ERROR : value set for app_name in the development
|
|
946
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] ERROR : environment.
|
|
947
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
948
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] INFO : Installing Memcached instrumentation
|
|
949
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] INFO : Installing Dalli Memcache instrumentation
|
|
950
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] INFO : Installing deferred Rack instrumentation
|
|
951
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] INFO : Installing Rack::Builder middleware instrumentation
|
|
952
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] INFO : Installing Rails 3+ middleware instrumentation
|
|
953
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] INFO : Installing ActiveRecord 4 instrumentation
|
|
954
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] INFO : Installing Net instrumentation
|
|
955
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] INFO : Installing Rails 4 view instrumentation
|
|
956
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] INFO : Installing Rails 4 Controller instrumentation
|
|
957
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] INFO : Installing Rails 4 Error instrumentation
|
|
958
|
+
[09/03/14 18:33:51 +0000 vagrant (5597)] INFO : Finished instrumentation
|
|
959
|
+
[09/03/14 18:33:54 +0000 vagrant (5597)] INFO : Doing deferred dependency-detection before Rack startup
|
|
960
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] INFO : Starting the New Relic agent in "development" environment.
|
|
961
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
962
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
963
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] INFO : New Relic Agent Developer Mode enabled.
|
|
964
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] ERROR : No application name configured.
|
|
965
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] ERROR : The Agent cannot start without at least one. Please check your
|
|
966
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
967
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] ERROR : value set for app_name in the development
|
|
968
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] ERROR : environment.
|
|
969
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
970
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] INFO : Installing Memcached instrumentation
|
|
971
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] INFO : Installing Dalli Memcache instrumentation
|
|
972
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] INFO : Installing deferred Rack instrumentation
|
|
973
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] INFO : Installing Rack::Builder middleware instrumentation
|
|
974
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] INFO : Installing Rails 3+ middleware instrumentation
|
|
975
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] INFO : Installing ActiveRecord 4 instrumentation
|
|
976
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] INFO : Installing Net instrumentation
|
|
977
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] INFO : Installing Rails 4 view instrumentation
|
|
978
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] INFO : Installing Rails 4 Controller instrumentation
|
|
979
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] INFO : Installing Rails 4 Error instrumentation
|
|
980
|
+
[09/05/14 14:10:14 +0000 vagrant (5078)] INFO : Finished instrumentation
|
|
981
|
+
[09/05/14 14:10:16 +0000 vagrant (5078)] INFO : Doing deferred dependency-detection before Rack startup
|
|
982
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] INFO : Starting the New Relic agent in "development" environment.
|
|
983
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
984
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
985
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] INFO : New Relic Agent Developer Mode enabled.
|
|
986
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] ERROR : No application name configured.
|
|
987
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] ERROR : The Agent cannot start without at least one. Please check your
|
|
988
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
989
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] ERROR : value set for app_name in the development
|
|
990
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] ERROR : environment.
|
|
991
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
992
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] INFO : Installing Memcached instrumentation
|
|
993
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] INFO : Installing Dalli Memcache instrumentation
|
|
994
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] INFO : Installing deferred Rack instrumentation
|
|
995
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] INFO : Installing Rack::Builder middleware instrumentation
|
|
996
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] INFO : Installing Rails 3+ middleware instrumentation
|
|
997
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] INFO : Installing ActiveRecord 4 instrumentation
|
|
998
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] INFO : Installing Net instrumentation
|
|
999
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] INFO : Installing Rails 4 view instrumentation
|
|
1000
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] INFO : Installing Rails 4 Controller instrumentation
|
|
1001
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] INFO : Installing Rails 4 Error instrumentation
|
|
1002
|
+
[09/08/14 14:38:43 +0000 vagrant (4447)] INFO : Finished instrumentation
|
|
1003
|
+
[09/08/14 14:38:45 +0000 vagrant (4447)] INFO : Doing deferred dependency-detection before Rack startup
|
|
1004
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] INFO : Starting the New Relic agent in "development" environment.
|
|
1005
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
1006
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
1007
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] INFO : New Relic Agent Developer Mode enabled.
|
|
1008
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] ERROR : No application name configured.
|
|
1009
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] ERROR : The Agent cannot start without at least one. Please check your
|
|
1010
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
1011
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] ERROR : value set for app_name in the development
|
|
1012
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] ERROR : environment.
|
|
1013
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
1014
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] INFO : Installing Memcached instrumentation
|
|
1015
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] INFO : Installing Dalli Memcache instrumentation
|
|
1016
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] INFO : Installing deferred Rack instrumentation
|
|
1017
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] INFO : Installing Rack::Builder middleware instrumentation
|
|
1018
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] INFO : Installing Rails 3+ middleware instrumentation
|
|
1019
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] INFO : Installing ActiveRecord 4 instrumentation
|
|
1020
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] INFO : Installing Net instrumentation
|
|
1021
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] INFO : Installing Rails 4 view instrumentation
|
|
1022
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] INFO : Installing Rails 4 Controller instrumentation
|
|
1023
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] INFO : Installing Rails 4 Error instrumentation
|
|
1024
|
+
[09/08/14 15:38:58 +0000 vagrant (7170)] INFO : Finished instrumentation
|
|
1025
|
+
[09/08/14 15:46:36 +0000 vagrant (7696)] INFO : Starting the New Relic agent in "development" environment.
|
|
1026
|
+
[09/08/14 15:46:36 +0000 vagrant (7696)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
1027
|
+
[09/08/14 15:46:36 +0000 vagrant (7696)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
1028
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] INFO : New Relic Agent Developer Mode enabled.
|
|
1029
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] ERROR : No application name configured.
|
|
1030
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] ERROR : The Agent cannot start without at least one. Please check your
|
|
1031
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
1032
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] ERROR : value set for app_name in the development
|
|
1033
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] ERROR : environment.
|
|
1034
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
1035
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] INFO : Installing Memcached instrumentation
|
|
1036
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] INFO : Installing Dalli Memcache instrumentation
|
|
1037
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] INFO : Installing deferred Rack instrumentation
|
|
1038
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] INFO : Installing Rack::Builder middleware instrumentation
|
|
1039
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] INFO : Installing Rails 3+ middleware instrumentation
|
|
1040
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] INFO : Installing ActiveRecord 4 instrumentation
|
|
1041
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] INFO : Installing Net instrumentation
|
|
1042
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] INFO : Installing Rails 4 view instrumentation
|
|
1043
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] INFO : Installing Rails 4 Controller instrumentation
|
|
1044
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] INFO : Installing Rails 4 Error instrumentation
|
|
1045
|
+
[09/08/14 15:46:37 +0000 vagrant (7696)] INFO : Finished instrumentation
|
|
1046
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] INFO : Starting the New Relic agent in "development" environment.
|
|
1047
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
1048
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
1049
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] INFO : New Relic Agent Developer Mode enabled.
|
|
1050
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] ERROR : No application name configured.
|
|
1051
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] ERROR : The Agent cannot start without at least one. Please check your
|
|
1052
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
1053
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] ERROR : value set for app_name in the development
|
|
1054
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] ERROR : environment.
|
|
1055
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
1056
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] INFO : Installing Memcached instrumentation
|
|
1057
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] INFO : Installing Dalli Memcache instrumentation
|
|
1058
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] INFO : Installing deferred Rack instrumentation
|
|
1059
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] INFO : Installing Rack::Builder middleware instrumentation
|
|
1060
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] INFO : Installing Rails 3+ middleware instrumentation
|
|
1061
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] INFO : Installing ActiveRecord 4 instrumentation
|
|
1062
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] INFO : Installing Net instrumentation
|
|
1063
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] INFO : Installing Rails 4 view instrumentation
|
|
1064
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] INFO : Installing Rails 4 Controller instrumentation
|
|
1065
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] INFO : Installing Rails 4 Error instrumentation
|
|
1066
|
+
[09/08/14 15:47:25 +0000 vagrant (7752)] INFO : Finished instrumentation
|
|
1067
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] INFO : Starting the New Relic agent in "development" environment.
|
|
1068
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
1069
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
1070
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] INFO : New Relic Agent Developer Mode enabled.
|
|
1071
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] ERROR : No application name configured.
|
|
1072
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] ERROR : The Agent cannot start without at least one. Please check your
|
|
1073
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
1074
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] ERROR : value set for app_name in the development
|
|
1075
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] ERROR : environment.
|
|
1076
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
1077
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] INFO : Installing Memcached instrumentation
|
|
1078
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] INFO : Installing Dalli Memcache instrumentation
|
|
1079
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] INFO : Installing deferred Rack instrumentation
|
|
1080
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] INFO : Installing Rack::Builder middleware instrumentation
|
|
1081
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] INFO : Installing Rails 3+ middleware instrumentation
|
|
1082
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] INFO : Installing ActiveRecord 4 instrumentation
|
|
1083
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] INFO : Installing Net instrumentation
|
|
1084
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] INFO : Installing Rails 4 view instrumentation
|
|
1085
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] INFO : Installing Rails 4 Controller instrumentation
|
|
1086
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] INFO : Installing Rails 4 Error instrumentation
|
|
1087
|
+
[09/08/14 15:48:11 +0000 vagrant (7836)] INFO : Finished instrumentation
|
|
1088
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] INFO : Starting the New Relic agent in "development" environment.
|
|
1089
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
1090
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
1091
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] INFO : New Relic Agent Developer Mode enabled.
|
|
1092
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] ERROR : No application name configured.
|
|
1093
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] ERROR : The Agent cannot start without at least one. Please check your
|
|
1094
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
1095
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] ERROR : value set for app_name in the development
|
|
1096
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] ERROR : environment.
|
|
1097
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
1098
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] INFO : Installing Memcached instrumentation
|
|
1099
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] INFO : Installing Dalli Memcache instrumentation
|
|
1100
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] INFO : Installing deferred Rack instrumentation
|
|
1101
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] INFO : Installing Rack::Builder middleware instrumentation
|
|
1102
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] INFO : Installing Rails 3+ middleware instrumentation
|
|
1103
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] INFO : Installing ActiveRecord 4 instrumentation
|
|
1104
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] INFO : Installing Net instrumentation
|
|
1105
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] INFO : Installing Rails 4 view instrumentation
|
|
1106
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] INFO : Installing Rails 4 Controller instrumentation
|
|
1107
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] INFO : Installing Rails 4 Error instrumentation
|
|
1108
|
+
[09/08/14 15:49:55 +0000 vagrant (7920)] INFO : Finished instrumentation
|
|
1109
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] INFO : Starting the New Relic agent in "development" environment.
|
|
1110
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
1111
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
1112
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] INFO : New Relic Agent Developer Mode enabled.
|
|
1113
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] ERROR : No application name configured.
|
|
1114
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] ERROR : The Agent cannot start without at least one. Please check your
|
|
1115
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
1116
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] ERROR : value set for app_name in the development
|
|
1117
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] ERROR : environment.
|
|
1118
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
1119
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] INFO : Installing Memcached instrumentation
|
|
1120
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] INFO : Installing Dalli Memcache instrumentation
|
|
1121
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] INFO : Installing deferred Rack instrumentation
|
|
1122
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] INFO : Installing Rack::Builder middleware instrumentation
|
|
1123
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] INFO : Installing Rails 3+ middleware instrumentation
|
|
1124
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] INFO : Installing ActiveRecord 4 instrumentation
|
|
1125
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] INFO : Installing Net instrumentation
|
|
1126
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] INFO : Installing Rails 4 view instrumentation
|
|
1127
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] INFO : Installing Rails 4 Controller instrumentation
|
|
1128
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] INFO : Installing Rails 4 Error instrumentation
|
|
1129
|
+
[09/08/14 15:50:11 +0000 vagrant (7959)] INFO : Finished instrumentation
|
|
1130
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] INFO : Starting the New Relic agent in "development" environment.
|
|
1131
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
1132
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
1133
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] INFO : New Relic Agent Developer Mode enabled.
|
|
1134
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] ERROR : No application name configured.
|
|
1135
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] ERROR : The Agent cannot start without at least one. Please check your
|
|
1136
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
1137
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] ERROR : value set for app_name in the development
|
|
1138
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] ERROR : environment.
|
|
1139
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
1140
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] INFO : Installing Memcached instrumentation
|
|
1141
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] INFO : Installing Dalli Memcache instrumentation
|
|
1142
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] INFO : Installing deferred Rack instrumentation
|
|
1143
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] INFO : Installing Rack::Builder middleware instrumentation
|
|
1144
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] INFO : Installing Rails 3+ middleware instrumentation
|
|
1145
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] INFO : Installing ActiveRecord 4 instrumentation
|
|
1146
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] INFO : Installing Net instrumentation
|
|
1147
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] INFO : Installing Rails 4 view instrumentation
|
|
1148
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] INFO : Installing Rails 4 Controller instrumentation
|
|
1149
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] INFO : Installing Rails 4 Error instrumentation
|
|
1150
|
+
[09/08/14 15:51:09 +0000 vagrant (8020)] INFO : Finished instrumentation
|
|
1151
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] INFO : Starting the New Relic agent in "development" environment.
|
|
1152
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
1153
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
1154
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] INFO : New Relic Agent Developer Mode enabled.
|
|
1155
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] ERROR : No application name configured.
|
|
1156
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] ERROR : The Agent cannot start without at least one. Please check your
|
|
1157
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
1158
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] ERROR : value set for app_name in the development
|
|
1159
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] ERROR : environment.
|
|
1160
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
1161
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] INFO : Installing Memcached instrumentation
|
|
1162
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] INFO : Installing Dalli Memcache instrumentation
|
|
1163
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] INFO : Installing deferred Rack instrumentation
|
|
1164
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] INFO : Installing Rack::Builder middleware instrumentation
|
|
1165
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] INFO : Installing Rails 3+ middleware instrumentation
|
|
1166
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] INFO : Installing ActiveRecord 4 instrumentation
|
|
1167
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] INFO : Installing Net instrumentation
|
|
1168
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] INFO : Installing Rails 4 view instrumentation
|
|
1169
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] INFO : Installing Rails 4 Controller instrumentation
|
|
1170
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] INFO : Installing Rails 4 Error instrumentation
|
|
1171
|
+
[09/08/14 15:53:44 +0000 vagrant (8124)] INFO : Finished instrumentation
|
|
1172
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] INFO : Starting the New Relic agent in "development" environment.
|
|
1173
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
1174
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
1175
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] INFO : New Relic Agent Developer Mode enabled.
|
|
1176
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] ERROR : No application name configured.
|
|
1177
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] ERROR : The Agent cannot start without at least one. Please check your
|
|
1178
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
1179
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] ERROR : value set for app_name in the development
|
|
1180
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] ERROR : environment.
|
|
1181
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
1182
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] INFO : Installing Memcached instrumentation
|
|
1183
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] INFO : Installing Dalli Memcache instrumentation
|
|
1184
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] INFO : Installing deferred Rack instrumentation
|
|
1185
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] INFO : Installing Rack::Builder middleware instrumentation
|
|
1186
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] INFO : Installing Rails 3+ middleware instrumentation
|
|
1187
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] INFO : Installing ActiveRecord 4 instrumentation
|
|
1188
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] INFO : Installing Net instrumentation
|
|
1189
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] INFO : Installing Rails 4 view instrumentation
|
|
1190
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] INFO : Installing Rails 4 Controller instrumentation
|
|
1191
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] INFO : Installing Rails 4 Error instrumentation
|
|
1192
|
+
[09/08/14 15:54:05 +0000 vagrant (8167)] INFO : Finished instrumentation
|
|
1193
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] INFO : Starting the New Relic agent in "development" environment.
|
|
1194
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
1195
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
1196
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] INFO : New Relic Agent Developer Mode enabled.
|
|
1197
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] ERROR : No application name configured.
|
|
1198
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] ERROR : The Agent cannot start without at least one. Please check your
|
|
1199
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
1200
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] ERROR : value set for app_name in the development
|
|
1201
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] ERROR : environment.
|
|
1202
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
1203
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] INFO : Installing Memcached instrumentation
|
|
1204
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] INFO : Installing Dalli Memcache instrumentation
|
|
1205
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] INFO : Installing deferred Rack instrumentation
|
|
1206
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] INFO : Installing Rack::Builder middleware instrumentation
|
|
1207
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] INFO : Installing Rails 3+ middleware instrumentation
|
|
1208
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] INFO : Installing ActiveRecord 4 instrumentation
|
|
1209
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] INFO : Installing Net instrumentation
|
|
1210
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] INFO : Installing Rails 4 view instrumentation
|
|
1211
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] INFO : Installing Rails 4 Controller instrumentation
|
|
1212
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] INFO : Installing Rails 4 Error instrumentation
|
|
1213
|
+
[09/08/14 15:55:00 +0000 vagrant (8227)] INFO : Finished instrumentation
|
|
1214
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] INFO : Starting the New Relic agent in "development" environment.
|
|
1215
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
1216
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
1217
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] INFO : New Relic Agent Developer Mode enabled.
|
|
1218
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] ERROR : No application name configured.
|
|
1219
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] ERROR : The Agent cannot start without at least one. Please check your
|
|
1220
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
1221
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] ERROR : value set for app_name in the development
|
|
1222
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] ERROR : environment.
|
|
1223
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
1224
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] INFO : Installing Memcached instrumentation
|
|
1225
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] INFO : Installing Dalli Memcache instrumentation
|
|
1226
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] INFO : Installing deferred Rack instrumentation
|
|
1227
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] INFO : Installing Rack::Builder middleware instrumentation
|
|
1228
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] INFO : Installing Rails 3+ middleware instrumentation
|
|
1229
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] INFO : Installing ActiveRecord 4 instrumentation
|
|
1230
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] INFO : Installing Net instrumentation
|
|
1231
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] INFO : Installing Rails 4 view instrumentation
|
|
1232
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] INFO : Installing Rails 4 Controller instrumentation
|
|
1233
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] INFO : Installing Rails 4 Error instrumentation
|
|
1234
|
+
[09/08/14 15:57:38 +0000 vagrant (8364)] INFO : Finished instrumentation
|
|
1235
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] INFO : Starting the New Relic agent in "development" environment.
|
|
1236
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
1237
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
1238
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] INFO : New Relic Agent Developer Mode enabled.
|
|
1239
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] ERROR : No application name configured.
|
|
1240
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] ERROR : The Agent cannot start without at least one. Please check your
|
|
1241
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
1242
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] ERROR : value set for app_name in the development
|
|
1243
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] ERROR : environment.
|
|
1244
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
1245
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] INFO : Installing Memcached instrumentation
|
|
1246
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] INFO : Installing Dalli Memcache instrumentation
|
|
1247
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] INFO : Installing deferred Rack instrumentation
|
|
1248
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] INFO : Installing Rack::Builder middleware instrumentation
|
|
1249
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] INFO : Installing Rails 3+ middleware instrumentation
|
|
1250
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] INFO : Installing ActiveRecord 4 instrumentation
|
|
1251
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] INFO : Installing Net instrumentation
|
|
1252
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] INFO : Installing Rails 4 view instrumentation
|
|
1253
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] INFO : Installing Rails 4 Controller instrumentation
|
|
1254
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] INFO : Installing Rails 4 Error instrumentation
|
|
1255
|
+
[09/08/14 15:58:05 +0000 vagrant (8408)] INFO : Finished instrumentation
|
|
1256
|
+
[09/08/14 15:58:43 +0000 vagrant (8461)] INFO : Starting the New Relic agent in "development" environment.
|
|
1257
|
+
[09/08/14 15:58:43 +0000 vagrant (8461)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
1258
|
+
[09/08/14 15:58:43 +0000 vagrant (8461)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
1259
|
+
[09/08/14 15:58:43 +0000 vagrant (8461)] INFO : New Relic Agent Developer Mode enabled.
|
|
1260
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] ERROR : No application name configured.
|
|
1261
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] ERROR : The Agent cannot start without at least one. Please check your
|
|
1262
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
1263
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] ERROR : value set for app_name in the development
|
|
1264
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] ERROR : environment.
|
|
1265
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
1266
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] INFO : Installing Memcached instrumentation
|
|
1267
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] INFO : Installing Dalli Memcache instrumentation
|
|
1268
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] INFO : Installing deferred Rack instrumentation
|
|
1269
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] INFO : Installing Rack::Builder middleware instrumentation
|
|
1270
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] INFO : Installing Rails 3+ middleware instrumentation
|
|
1271
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] INFO : Installing ActiveRecord 4 instrumentation
|
|
1272
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] INFO : Installing Net instrumentation
|
|
1273
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] INFO : Installing Rails 4 view instrumentation
|
|
1274
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] INFO : Installing Rails 4 Controller instrumentation
|
|
1275
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] INFO : Installing Rails 4 Error instrumentation
|
|
1276
|
+
[09/08/14 15:58:44 +0000 vagrant (8461)] INFO : Finished instrumentation
|
|
1277
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] INFO : Starting the New Relic agent in "development" environment.
|
|
1278
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
1279
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
1280
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] INFO : New Relic Agent Developer Mode enabled.
|
|
1281
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] ERROR : No application name configured.
|
|
1282
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] ERROR : The Agent cannot start without at least one. Please check your
|
|
1283
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
1284
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] ERROR : value set for app_name in the development
|
|
1285
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] ERROR : environment.
|
|
1286
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
1287
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] INFO : Installing Memcached instrumentation
|
|
1288
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] INFO : Installing Dalli Memcache instrumentation
|
|
1289
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] INFO : Installing deferred Rack instrumentation
|
|
1290
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] INFO : Installing Rack::Builder middleware instrumentation
|
|
1291
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] INFO : Installing Rails 3+ middleware instrumentation
|
|
1292
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] INFO : Installing ActiveRecord 4 instrumentation
|
|
1293
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] INFO : Installing Net instrumentation
|
|
1294
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] INFO : Installing Rails 4 view instrumentation
|
|
1295
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] INFO : Installing Rails 4 Controller instrumentation
|
|
1296
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] INFO : Installing Rails 4 Error instrumentation
|
|
1297
|
+
[09/08/14 16:00:00 +0000 vagrant (8529)] INFO : Finished instrumentation
|
|
1298
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] INFO : Starting the New Relic agent in "development" environment.
|
|
1299
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
1300
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
1301
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] INFO : New Relic Agent Developer Mode enabled.
|
|
1302
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] ERROR : No application name configured.
|
|
1303
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] ERROR : The Agent cannot start without at least one. Please check your
|
|
1304
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
1305
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] ERROR : value set for app_name in the development
|
|
1306
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] ERROR : environment.
|
|
1307
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
1308
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] INFO : Installing Memcached instrumentation
|
|
1309
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] INFO : Installing Dalli Memcache instrumentation
|
|
1310
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] INFO : Installing deferred Rack instrumentation
|
|
1311
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] INFO : Installing Rack::Builder middleware instrumentation
|
|
1312
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] INFO : Installing Rails 3+ middleware instrumentation
|
|
1313
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] INFO : Installing ActiveRecord 4 instrumentation
|
|
1314
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] INFO : Installing Net instrumentation
|
|
1315
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] INFO : Installing Rails 4 view instrumentation
|
|
1316
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] INFO : Installing Rails 4 Controller instrumentation
|
|
1317
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] INFO : Installing Rails 4 Error instrumentation
|
|
1318
|
+
[09/08/14 16:21:47 +0000 vagrant (9406)] INFO : Finished instrumentation
|
|
1319
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] INFO : Starting the New Relic agent in "development" environment.
|
|
1320
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] INFO : To prevent agent startup add a NEWRELIC_AGENT_ENABLED=false environment variable or modify the "development" section of your newrelic.yml.
|
|
1321
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] INFO : Reading configuration from config/newrelic.yml (/home/vagrant/answers)
|
|
1322
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] INFO : New Relic Agent Developer Mode enabled.
|
|
1323
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] ERROR : No application name configured.
|
|
1324
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] ERROR : The Agent cannot start without at least one. Please check your
|
|
1325
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] ERROR : newrelic.yml and ensure that it is valid and has at least one
|
|
1326
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] ERROR : value set for app_name in the development
|
|
1327
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] ERROR : environment.
|
|
1328
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] INFO : Installing DelayedJob instrumentation [part 1/2]
|
|
1329
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] INFO : Installing Memcached instrumentation
|
|
1330
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] INFO : Installing Dalli Memcache instrumentation
|
|
1331
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] INFO : Installing deferred Rack instrumentation
|
|
1332
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] INFO : Installing Rack::Builder middleware instrumentation
|
|
1333
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] INFO : Installing Rails 3+ middleware instrumentation
|
|
1334
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] INFO : Installing ActiveRecord 4 instrumentation
|
|
1335
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] INFO : Installing Net instrumentation
|
|
1336
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] INFO : Installing Rails 4 view instrumentation
|
|
1337
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] INFO : Installing Rails 4 Controller instrumentation
|
|
1338
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] INFO : Installing Rails 4 Error instrumentation
|
|
1339
|
+
[09/08/14 16:22:15 +0000 vagrant (9452)] INFO : Finished instrumentation
|