sundawg_newrelic_rpm 3.5.8.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +22 -0
- data/.project +23 -0
- data/.travis.yml +9 -0
- data/CHANGELOG +969 -0
- data/GUIDELINES_FOR_CONTRIBUTING.md +76 -0
- data/Gemfile +20 -0
- data/LICENSE +87 -0
- data/README.md +195 -0
- data/Rakefile +58 -0
- data/bin/mongrel_rpm +33 -0
- data/bin/newrelic +13 -0
- data/bin/newrelic_cmd +5 -0
- data/cert/cacert.pem +118 -0
- data/cert/oldsite.pem +28 -0
- data/cert/site.pem +27 -0
- data/config.dot +290 -0
- data/config/database.yml +5 -0
- data/gem-public_cert.pem +20 -0
- data/init.rb +31 -0
- data/install.rb +9 -0
- data/lib/conditional_vendored_dependency_detection.rb +3 -0
- data/lib/conditional_vendored_metric_parser.rb +5 -0
- data/lib/new_relic/agent.rb +488 -0
- data/lib/new_relic/agent/agent.rb +1069 -0
- data/lib/new_relic/agent/agent_logger.rb +173 -0
- data/lib/new_relic/agent/audit_logger.rb +72 -0
- data/lib/new_relic/agent/beacon_configuration.rb +107 -0
- data/lib/new_relic/agent/browser_monitoring.rb +195 -0
- data/lib/new_relic/agent/busy_calculator.rb +112 -0
- data/lib/new_relic/agent/chained_call.rb +13 -0
- data/lib/new_relic/agent/configuration.rb +74 -0
- data/lib/new_relic/agent/configuration/defaults.rb +132 -0
- data/lib/new_relic/agent/configuration/environment_source.rb +49 -0
- data/lib/new_relic/agent/configuration/manager.rb +148 -0
- data/lib/new_relic/agent/configuration/mask_defaults.rb +11 -0
- data/lib/new_relic/agent/configuration/server_source.rb +31 -0
- data/lib/new_relic/agent/configuration/yaml_source.rb +67 -0
- data/lib/new_relic/agent/cross_app_monitor.rb +239 -0
- data/lib/new_relic/agent/cross_app_tracing.rb +281 -0
- data/lib/new_relic/agent/database.rb +254 -0
- data/lib/new_relic/agent/error_collector.rb +266 -0
- data/lib/new_relic/agent/event_listener.rb +43 -0
- data/lib/new_relic/agent/instrumentation.rb +9 -0
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +29 -0
- data/lib/new_relic/agent/instrumentation/active_record.rb +134 -0
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +68 -0
- data/lib/new_relic/agent/instrumentation/authlogic.rb +19 -0
- data/lib/new_relic/agent/instrumentation/browser_monitoring_timings.rb +51 -0
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +485 -0
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +230 -0
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +52 -0
- data/lib/new_relic/agent/instrumentation/memcache.rb +80 -0
- data/lib/new_relic/agent/instrumentation/merb/controller.rb +41 -0
- data/lib/new_relic/agent/instrumentation/merb/errors.rb +29 -0
- data/lib/new_relic/agent/instrumentation/metric_frame.rb +356 -0
- data/lib/new_relic/agent/instrumentation/metric_frame/pop.rb +80 -0
- data/lib/new_relic/agent/instrumentation/net.rb +31 -0
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +23 -0
- data/lib/new_relic/agent/instrumentation/queue_time.rb +68 -0
- data/lib/new_relic/agent/instrumentation/rack.rb +98 -0
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +114 -0
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +42 -0
- data/lib/new_relic/agent/instrumentation/rails/errors.rb +42 -0
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +180 -0
- data/lib/new_relic/agent/instrumentation/rails3/errors.rb +41 -0
- data/lib/new_relic/agent/instrumentation/rails4/action_controller.rb +145 -0
- data/lib/new_relic/agent/instrumentation/rails4/errors.rb +45 -0
- data/lib/new_relic/agent/instrumentation/resque.rb +81 -0
- data/lib/new_relic/agent/instrumentation/sinatra.rb +107 -0
- data/lib/new_relic/agent/instrumentation/sunspot.rb +29 -0
- data/lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb +22 -0
- data/lib/new_relic/agent/method_tracer.rb +530 -0
- data/lib/new_relic/agent/new_relic_service.rb +513 -0
- data/lib/new_relic/agent/pipe_channel_manager.rb +175 -0
- data/lib/new_relic/agent/pipe_service.rb +63 -0
- data/lib/new_relic/agent/rules_engine.rb +72 -0
- data/lib/new_relic/agent/sampler.rb +50 -0
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +58 -0
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +86 -0
- data/lib/new_relic/agent/samplers/memory_sampler.rb +141 -0
- data/lib/new_relic/agent/samplers/object_sampler.rb +26 -0
- data/lib/new_relic/agent/shim_agent.rb +28 -0
- data/lib/new_relic/agent/sql_sampler.rb +251 -0
- data/lib/new_relic/agent/stats.rb +149 -0
- data/lib/new_relic/agent/stats_engine.rb +30 -0
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +116 -0
- data/lib/new_relic/agent/stats_engine/metric_stats.rb +161 -0
- data/lib/new_relic/agent/stats_engine/samplers.rb +97 -0
- data/lib/new_relic/agent/stats_engine/stats_hash.rb +58 -0
- data/lib/new_relic/agent/stats_engine/transactions.rb +145 -0
- data/lib/new_relic/agent/thread.rb +32 -0
- data/lib/new_relic/agent/thread_profiler.rb +319 -0
- data/lib/new_relic/agent/transaction_info.rb +119 -0
- data/lib/new_relic/agent/transaction_sample_builder.rb +126 -0
- data/lib/new_relic/agent/transaction_sampler.rb +459 -0
- data/lib/new_relic/agent/worker_loop.rb +96 -0
- data/lib/new_relic/coerce.rb +37 -0
- data/lib/new_relic/collection_helper.rb +77 -0
- data/lib/new_relic/command.rb +85 -0
- data/lib/new_relic/commands/deployments.rb +114 -0
- data/lib/new_relic/commands/install.rb +80 -0
- data/lib/new_relic/control.rb +44 -0
- data/lib/new_relic/control/class_methods.rb +58 -0
- data/lib/new_relic/control/frameworks.rb +10 -0
- data/lib/new_relic/control/frameworks/external.rb +16 -0
- data/lib/new_relic/control/frameworks/merb.rb +25 -0
- data/lib/new_relic/control/frameworks/rails.rb +173 -0
- data/lib/new_relic/control/frameworks/rails3.rb +71 -0
- data/lib/new_relic/control/frameworks/rails4.rb +23 -0
- data/lib/new_relic/control/frameworks/ruby.rb +21 -0
- data/lib/new_relic/control/frameworks/sinatra.rb +20 -0
- data/lib/new_relic/control/instance_methods.rb +145 -0
- data/lib/new_relic/control/instrumentation.rb +95 -0
- data/lib/new_relic/control/profiling.rb +25 -0
- data/lib/new_relic/control/server_methods.rb +80 -0
- data/lib/new_relic/delayed_job_injection.rb +51 -0
- data/lib/new_relic/helper.rb +66 -0
- data/lib/new_relic/language_support.rb +92 -0
- data/lib/new_relic/latest_changes.rb +31 -0
- data/lib/new_relic/local_environment.rb +385 -0
- data/lib/new_relic/merbtasks.rb +6 -0
- data/lib/new_relic/metric_data.rb +70 -0
- data/lib/new_relic/metric_spec.rb +80 -0
- data/lib/new_relic/metrics.rb +9 -0
- data/lib/new_relic/noticed_error.rb +59 -0
- data/lib/new_relic/okjson.rb +599 -0
- data/lib/new_relic/rack.rb +4 -0
- data/lib/new_relic/rack/agent_hooks.rb +20 -0
- data/lib/new_relic/rack/browser_monitoring.rb +85 -0
- data/lib/new_relic/rack/developer_mode.rb +271 -0
- data/lib/new_relic/rack/error_collector.rb +66 -0
- data/lib/new_relic/recipes.rb +99 -0
- data/lib/new_relic/timer_lib.rb +27 -0
- data/lib/new_relic/transaction_analysis.rb +77 -0
- data/lib/new_relic/transaction_analysis/segment_summary.rb +49 -0
- data/lib/new_relic/transaction_sample.rb +272 -0
- data/lib/new_relic/transaction_sample/composite_segment.rb +27 -0
- data/lib/new_relic/transaction_sample/fake_segment.rb +9 -0
- data/lib/new_relic/transaction_sample/segment.rb +205 -0
- data/lib/new_relic/transaction_sample/summary_segment.rb +21 -0
- data/lib/new_relic/url_rule.rb +14 -0
- data/lib/new_relic/version.rb +66 -0
- data/lib/newrelic_rpm.rb +49 -0
- data/lib/tasks/all.rb +4 -0
- data/lib/tasks/install.rake +7 -0
- data/lib/tasks/tests.rake +17 -0
- data/newrelic.yml +227 -0
- data/newrelic_rpm.gemspec +50 -0
- data/recipes/newrelic.rb +6 -0
- data/test/active_record_fixtures.rb +77 -0
- data/test/config/newrelic.yml +49 -0
- data/test/config/test_control.rb +48 -0
- data/test/fixtures/proc_cpuinfo.txt +575 -0
- data/test/intentional_fail.rb +10 -0
- data/test/multiverse/.gitignore +11 -0
- data/test/multiverse/README.md +85 -0
- data/test/multiverse/lib/multiverse/color.rb +13 -0
- data/test/multiverse/lib/multiverse/envfile.rb +66 -0
- data/test/multiverse/lib/multiverse/environment.rb +16 -0
- data/test/multiverse/lib/multiverse/output_collector.rb +29 -0
- data/test/multiverse/lib/multiverse/runner.rb +44 -0
- data/test/multiverse/lib/multiverse/suite.rb +164 -0
- data/test/multiverse/script/run_one +3 -0
- data/test/multiverse/script/runner +9 -0
- data/test/multiverse/suites/active_record/Envfile +13 -0
- data/test/multiverse/suites/active_record/ar_method_aliasing.rb +94 -0
- data/test/multiverse/suites/active_record/config/newrelic.yml +22 -0
- data/test/multiverse/suites/active_record/encoding_test.rb +26 -0
- data/test/multiverse/suites/agent_only/Envfile +9 -0
- data/test/multiverse/suites/agent_only/audit_log_test.rb +97 -0
- data/test/multiverse/suites/agent_only/config/newrelic.yml +23 -0
- data/test/multiverse/suites/agent_only/cross_application_tracing_test.rb +56 -0
- data/test/multiverse/suites/agent_only/http_response_code_test.rb +53 -0
- data/test/multiverse/suites/agent_only/key_transactions_test.rb +66 -0
- data/test/multiverse/suites/agent_only/logging_test.rb +163 -0
- data/test/multiverse/suites/agent_only/marshaling_test.rb +96 -0
- data/test/multiverse/suites/agent_only/method_visibility_test.rb +98 -0
- data/test/multiverse/suites/agent_only/no_dns_resolv.rb +17 -0
- data/test/multiverse/suites/agent_only/pipe_manager_test.rb +33 -0
- data/test/multiverse/suites/agent_only/rename_rule_test.rb +57 -0
- data/test/multiverse/suites/agent_only/rum_instrumentation_test.rb +81 -0
- data/test/multiverse/suites/agent_only/service_timeout_test.rb +32 -0
- data/test/multiverse/suites/agent_only/ssl_test.rb +22 -0
- data/test/multiverse/suites/agent_only/start_up_test.rb +21 -0
- data/test/multiverse/suites/agent_only/test_trace_method_with_punctuation.rb +30 -0
- data/test/multiverse/suites/agent_only/test_trace_transaction_with_punctuation.rb +32 -0
- data/test/multiverse/suites/agent_only/testing_app.rb +17 -0
- data/test/multiverse/suites/agent_only/thread_profiling_test.rb +92 -0
- data/test/multiverse/suites/config_file_loading/Envfile +7 -0
- data/test/multiverse/suites/config_file_loading/config_file_loading_test.rb +106 -0
- data/test/multiverse/suites/datamapper/Envfile +8 -0
- data/test/multiverse/suites/datamapper/config/newrelic.yml +22 -0
- data/test/multiverse/suites/datamapper/encoding_test.rb +36 -0
- data/test/multiverse/suites/rails/Envfile +18 -0
- data/test/multiverse/suites/rails/app.rb +49 -0
- data/test/multiverse/suites/rails/app/views/foos/_foo.html.haml +1 -0
- data/test/multiverse/suites/rails/app/views/views/_a_partial.html.erb +1 -0
- data/test/multiverse/suites/rails/app/views/views/_mid_partial.html.erb +1 -0
- data/test/multiverse/suites/rails/app/views/views/_top_partial.html.erb +3 -0
- data/test/multiverse/suites/rails/app/views/views/deep_partial.html.erb +3 -0
- data/test/multiverse/suites/rails/app/views/views/haml_view.html.haml +6 -0
- data/test/multiverse/suites/rails/app/views/views/index.html.erb +4 -0
- data/test/multiverse/suites/rails/config/newrelic.yml +32 -0
- data/test/multiverse/suites/rails/error_tracing_test.rb +211 -0
- data/test/multiverse/suites/rails/gc_instrumentation_test.rb +79 -0
- data/test/multiverse/suites/rails/queue_time_test.rb +55 -0
- data/test/multiverse/suites/rails/view_instrumentation_test.rb +205 -0
- data/test/multiverse/suites/resque/Envfile +24 -0
- data/test/multiverse/suites/resque/Rakefile +8 -0
- data/test/multiverse/suites/resque/config/newrelic.yml +22 -0
- data/test/multiverse/suites/resque/instrumentation_test.rb +151 -0
- data/test/multiverse/suites/resque/resque_setup.rb +15 -0
- data/test/multiverse/suites/sinatra/Envfile +15 -0
- data/test/multiverse/suites/sinatra/config/newrelic.yml +24 -0
- data/test/multiverse/suites/sinatra/sinatra_error_tracing_test.rb +38 -0
- data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +77 -0
- data/test/multiverse/suites/sinatra/sinatra_routes_test.rb +46 -0
- data/test/multiverse/suites/sinatra/sinatra_test.rb +139 -0
- data/test/multiverse/test/multiverse_test.rb +55 -0
- data/test/multiverse/test/suite_examples/one/a/Envfile +3 -0
- data/test/multiverse/test/suite_examples/one/a/a_test.rb +11 -0
- data/test/multiverse/test/suite_examples/one/a/config/newrelic.yml +24 -0
- data/test/multiverse/test/suite_examples/one/b/Envfile +3 -0
- data/test/multiverse/test/suite_examples/one/b/b_test.rb +11 -0
- data/test/multiverse/test/suite_examples/one/b/config/newrelic.yml +24 -0
- data/test/multiverse/test/suite_examples/three/a/Envfile +2 -0
- data/test/multiverse/test/suite_examples/three/a/fail_test.rb +6 -0
- data/test/multiverse/test/suite_examples/three/b/Envfile +2 -0
- data/test/multiverse/test/suite_examples/three/b/win_test.rb +6 -0
- data/test/multiverse/test/suite_examples/two/a/Envfile +1 -0
- data/test/multiverse/test/suite_examples/two/a/fail_test.rb +6 -0
- data/test/new_relic/agent/agent/connect_test.rb +295 -0
- data/test/new_relic/agent/agent/start_test.rb +205 -0
- data/test/new_relic/agent/agent/start_worker_thread_test.rb +88 -0
- data/test/new_relic/agent/agent_logger_test.rb +153 -0
- data/test/new_relic/agent/agent_test.rb +301 -0
- data/test/new_relic/agent/agent_test_controller.rb +77 -0
- data/test/new_relic/agent/agent_test_controller_test.rb +381 -0
- data/test/new_relic/agent/apdex_from_server_test.rb +9 -0
- data/test/new_relic/agent/audit_logger_test.rb +105 -0
- data/test/new_relic/agent/beacon_configuration_test.rb +107 -0
- data/test/new_relic/agent/browser_monitoring_test.rb +395 -0
- data/test/new_relic/agent/busy_calculator_test.rb +96 -0
- data/test/new_relic/agent/configuration/environment_source_test.rb +79 -0
- data/test/new_relic/agent/configuration/manager_test.rb +232 -0
- data/test/new_relic/agent/configuration/server_source_test.rb +50 -0
- data/test/new_relic/agent/configuration/yaml_source_test.rb +85 -0
- data/test/new_relic/agent/cross_app_monitor_test.rb +237 -0
- data/test/new_relic/agent/database_test.rb +194 -0
- data/test/new_relic/agent/error_collector/notice_error_test.rb +268 -0
- data/test/new_relic/agent/error_collector_test.rb +246 -0
- data/test/new_relic/agent/event_listener_test.rb +67 -0
- data/test/new_relic/agent/instrumentation/active_record_instrumentation_test.rb +606 -0
- data/test/new_relic/agent/instrumentation/browser_monitoring_timings_test.rb +66 -0
- data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +107 -0
- data/test/new_relic/agent/instrumentation/instrumentation_test.rb +11 -0
- data/test/new_relic/agent/instrumentation/metric_frame/pop_test.rb +171 -0
- data/test/new_relic/agent/instrumentation/metric_frame_test.rb +151 -0
- data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +461 -0
- data/test/new_relic/agent/instrumentation/queue_time_test.rb +97 -0
- data/test/new_relic/agent/instrumentation/rack_test.rb +35 -0
- data/test/new_relic/agent/instrumentation/sinatra_test.rb +25 -0
- data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +182 -0
- data/test/new_relic/agent/memcache_instrumentation_test.rb +143 -0
- data/test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb +158 -0
- data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +222 -0
- data/test/new_relic/agent/method_tracer_test.rb +389 -0
- data/test/new_relic/agent/mock_scope_listener.rb +26 -0
- data/test/new_relic/agent/new_relic_service_test.rb +571 -0
- data/test/new_relic/agent/pipe_channel_manager_test.rb +131 -0
- data/test/new_relic/agent/pipe_service_test.rb +133 -0
- data/test/new_relic/agent/rpm_agent_test.rb +115 -0
- data/test/new_relic/agent/rules_engine_test.rb +82 -0
- data/test/new_relic/agent/sampler_test.rb +19 -0
- data/test/new_relic/agent/shim_agent_test.rb +16 -0
- data/test/new_relic/agent/sql_sampler_test.rb +244 -0
- data/test/new_relic/agent/stats_engine/gc_profiler_test.rb +85 -0
- data/test/new_relic/agent/stats_engine/metric_stats_test.rb +180 -0
- data/test/new_relic/agent/stats_engine/samplers_test.rb +99 -0
- data/test/new_relic/agent/stats_engine_test.rb +184 -0
- data/test/new_relic/agent/stats_hash_test.rb +93 -0
- data/test/new_relic/agent/stats_test.rb +197 -0
- data/test/new_relic/agent/thread_profiler_test.rb +582 -0
- data/test/new_relic/agent/thread_test.rb +89 -0
- data/test/new_relic/agent/threaded_test.rb +65 -0
- data/test/new_relic/agent/transaction_info_test.rb +106 -0
- data/test/new_relic/agent/transaction_sample_builder_test.rb +227 -0
- data/test/new_relic/agent/transaction_sampler_test.rb +968 -0
- data/test/new_relic/agent/worker_loop_test.rb +84 -0
- data/test/new_relic/agent_test.rb +296 -0
- data/test/new_relic/coerce_test.rb +65 -0
- data/test/new_relic/collection_helper_test.rb +148 -0
- data/test/new_relic/command/deployments_test.rb +84 -0
- data/test/new_relic/control/class_methods_test.rb +44 -0
- data/test/new_relic/control/frameworks/rails_test.rb +26 -0
- data/test/new_relic/control_test.rb +194 -0
- data/test/new_relic/delayed_job_injection_test.rb +21 -0
- data/test/new_relic/dispatcher_test.rb +54 -0
- data/test/new_relic/fake_collector.rb +389 -0
- data/test/new_relic/framework_test.rb +53 -0
- data/test/new_relic/helper_test.rb +24 -0
- data/test/new_relic/load_test.rb +13 -0
- data/test/new_relic/local_environment_test.rb +85 -0
- data/test/new_relic/metric_data_test.rb +183 -0
- data/test/new_relic/metric_parser/metric_parser_test.rb +11 -0
- data/test/new_relic/metric_spec_test.rb +95 -0
- data/test/new_relic/noticed_error_test.rb +32 -0
- data/test/new_relic/rack/agent_hooks_test.rb +30 -0
- data/test/new_relic/rack/all_test.rb +11 -0
- data/test/new_relic/rack/browser_monitoring_test.rb +152 -0
- data/test/new_relic/rack/developer_mode_helper_test.rb +141 -0
- data/test/new_relic/rack/developer_mode_test.rb +80 -0
- data/test/new_relic/rack/error_collector_test.rb +90 -0
- data/test/new_relic/transaction_analysis/segment_summary_test.rb +91 -0
- data/test/new_relic/transaction_analysis_test.rb +121 -0
- data/test/new_relic/transaction_sample/composite_segment_test.rb +35 -0
- data/test/new_relic/transaction_sample/fake_segment_test.rb +17 -0
- data/test/new_relic/transaction_sample/segment_test.rb +415 -0
- data/test/new_relic/transaction_sample/summary_segment_test.rb +31 -0
- data/test/new_relic/transaction_sample_subtest_test.rb +56 -0
- data/test/new_relic/transaction_sample_test.rb +250 -0
- data/test/new_relic/version_number_test.rb +97 -0
- data/test/script/build_test_gem.sh +57 -0
- data/test/script/ci.sh +168 -0
- data/test/script/ci_agent-tests_runner.sh +82 -0
- data/test/script/ci_bench.sh +52 -0
- data/test/script/ci_multiverse_runner.sh +63 -0
- data/test/test_contexts.rb +30 -0
- data/test/test_helper.rb +240 -0
- data/ui/helpers/developer_mode_helper.rb +367 -0
- data/ui/helpers/google_pie_chart.rb +49 -0
- data/ui/views/layouts/newrelic_default.rhtml +48 -0
- data/ui/views/newrelic/_explain_plans.rhtml +27 -0
- data/ui/views/newrelic/_sample.rhtml +20 -0
- data/ui/views/newrelic/_segment.rhtml +28 -0
- data/ui/views/newrelic/_segment_limit_message.rhtml +1 -0
- data/ui/views/newrelic/_segment_row.rhtml +12 -0
- data/ui/views/newrelic/_show_sample_detail.rhtml +24 -0
- data/ui/views/newrelic/_show_sample_sql.rhtml +24 -0
- data/ui/views/newrelic/_show_sample_summary.rhtml +3 -0
- data/ui/views/newrelic/_sql_row.rhtml +16 -0
- data/ui/views/newrelic/_stack_trace.rhtml +15 -0
- data/ui/views/newrelic/_table.rhtml +12 -0
- data/ui/views/newrelic/explain_sql.rhtml +43 -0
- data/ui/views/newrelic/file/images/arrow-close.png +0 -0
- data/ui/views/newrelic/file/images/arrow-open.png +0 -0
- data/ui/views/newrelic/file/images/blue_bar.gif +0 -0
- data/ui/views/newrelic/file/images/file_icon.png +0 -0
- data/ui/views/newrelic/file/images/gray_bar.gif +0 -0
- data/ui/views/newrelic/file/images/new-relic-rpm-desktop.gif +0 -0
- data/ui/views/newrelic/file/images/new_relic_rpm_desktop.gif +0 -0
- data/ui/views/newrelic/file/images/textmate.png +0 -0
- data/ui/views/newrelic/file/javascript/jquery-1.4.2.js +6240 -0
- data/ui/views/newrelic/file/javascript/transaction_sample.js +120 -0
- data/ui/views/newrelic/file/stylesheets/style.css +490 -0
- data/ui/views/newrelic/index.rhtml +71 -0
- data/ui/views/newrelic/sample_not_found.rhtml +2 -0
- data/ui/views/newrelic/show_sample.rhtml +80 -0
- data/ui/views/newrelic/show_source.rhtml +3 -0
- data/ui/views/newrelic/threads.rhtml +45 -0
- data/vendor/gems/dependency_detection-0.0.1.build/LICENSE +5 -0
- data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection.rb +67 -0
- data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection/version.rb +3 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/.specification +116 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb +1 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser.rb +64 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/action_mailer.rb +14 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_merchant.rb +31 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_record.rb +33 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/apdex.rb +89 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/background_transaction.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/client.rb +46 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller.rb +67 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_cpu.rb +43 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_ext.rb +17 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database.rb +48 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database_pool.rb +24 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net.rb +28 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net_parser.rb +17 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/errors.rb +11 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/external.rb +55 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/frontend.rb +40 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/gc.rb +20 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/hibernate_session.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java.rb +31 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java_parser.rb +17 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp.rb +34 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp_tag.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/mem_cache.rb +55 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/metric_parser.rb +135 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/orm.rb +27 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/other_transaction.rb +40 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_context_listener.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_filter.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_init.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr.rb +27 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr_request_handler.rb +15 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring.rb +54 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_controller.rb +6 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_view.rb +6 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_action.rb +20 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_result.rb +20 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/version.rb +5 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/view.rb +70 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_frontend.rb +18 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_service.rb +14 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_transaction.rb +133 -0
- metadata +494 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'new_relic/transaction_sample'
|
2
|
+
require 'new_relic/transaction_sample/segment'
|
3
|
+
require 'new_relic/transaction_sample/summary_segment'
|
4
|
+
module NewRelic
|
5
|
+
class TransactionSample
|
6
|
+
class CompositeSegment < Segment
|
7
|
+
attr_reader :detail_segments
|
8
|
+
|
9
|
+
def initialize(segments)
|
10
|
+
summary = SummarySegment.new(segments.first)
|
11
|
+
super summary.entry_timestamp, "Repeating pattern (#{segments.length} repeats)", nil
|
12
|
+
|
13
|
+
summary.end_trace(segments.last.exit_timestamp)
|
14
|
+
|
15
|
+
@detail_segments = segments.clone
|
16
|
+
|
17
|
+
add_called_segment(summary)
|
18
|
+
end_trace summary.exit_timestamp
|
19
|
+
end
|
20
|
+
|
21
|
+
def detail_segments=(segments)
|
22
|
+
@detail_segments = segments
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,205 @@
|
|
1
|
+
require 'new_relic/transaction_sample'
|
2
|
+
|
3
|
+
module NewRelic
|
4
|
+
class TransactionSample
|
5
|
+
class Segment
|
6
|
+
attr_reader :entry_timestamp
|
7
|
+
# The exit timestamp will be relative except for the outermost sample which will
|
8
|
+
# have a timestamp.
|
9
|
+
attr_reader :exit_timestamp
|
10
|
+
attr_reader :parent_segment
|
11
|
+
attr_reader :segment_id
|
12
|
+
|
13
|
+
attr_accessor :metric_name
|
14
|
+
|
15
|
+
def initialize(timestamp, metric_name, segment_id)
|
16
|
+
@entry_timestamp = timestamp
|
17
|
+
@metric_name = metric_name || '<unknown>'
|
18
|
+
@segment_id = segment_id || object_id
|
19
|
+
end
|
20
|
+
|
21
|
+
# sets the final timestamp on a segment to indicate the exit
|
22
|
+
# point of the segment
|
23
|
+
def end_trace(timestamp)
|
24
|
+
@exit_timestamp = timestamp
|
25
|
+
end
|
26
|
+
|
27
|
+
def add_called_segment(s)
|
28
|
+
@called_segments ||= []
|
29
|
+
@called_segments << s
|
30
|
+
s.parent_segment = self
|
31
|
+
end
|
32
|
+
|
33
|
+
def to_s
|
34
|
+
to_debug_str(0)
|
35
|
+
end
|
36
|
+
|
37
|
+
include NewRelic::Coerce
|
38
|
+
|
39
|
+
def to_array
|
40
|
+
[ NewRelic::Helper.time_to_millis(@entry_timestamp),
|
41
|
+
NewRelic::Helper.time_to_millis(@exit_timestamp),
|
42
|
+
string(@metric_name),
|
43
|
+
(@params || {}) ] +
|
44
|
+
[ (@called_segments ? @called_segments.map{|s| s.to_array} : []) ]
|
45
|
+
end
|
46
|
+
|
47
|
+
def to_json
|
48
|
+
JSON.dump(self.to_array)
|
49
|
+
end
|
50
|
+
|
51
|
+
def path_string
|
52
|
+
"#{metric_name}[#{called_segments.collect {|segment| segment.path_string }.join('')}]"
|
53
|
+
end
|
54
|
+
def to_s_compact
|
55
|
+
str = ""
|
56
|
+
str << metric_name
|
57
|
+
if called_segments.any?
|
58
|
+
str << "{#{called_segments.map { | cs | cs.to_s_compact }.join(",")}}"
|
59
|
+
end
|
60
|
+
str
|
61
|
+
end
|
62
|
+
def to_debug_str(depth)
|
63
|
+
tab = " " * depth
|
64
|
+
s = tab.clone
|
65
|
+
s << ">> #{'%3i ms' % (@entry_timestamp*1000)} [#{self.class.name.split("::").last}] #{metric_name} \n"
|
66
|
+
unless params.empty?
|
67
|
+
params.each do |k,v|
|
68
|
+
s << "#{tab} -#{'%-16s' % k}: #{v.to_s[0..80]}\n"
|
69
|
+
end
|
70
|
+
end
|
71
|
+
called_segments.each do |cs|
|
72
|
+
s << cs.to_debug_str(depth + 1)
|
73
|
+
end
|
74
|
+
s << tab + "<< "
|
75
|
+
s << case @exit_timestamp
|
76
|
+
when nil then ' n/a'
|
77
|
+
when Numeric then '%3i ms' % (@exit_timestamp*1000)
|
78
|
+
else @exit_timestamp.to_s
|
79
|
+
end
|
80
|
+
s << " #{metric_name}\n"
|
81
|
+
end
|
82
|
+
|
83
|
+
def called_segments
|
84
|
+
@called_segments || []
|
85
|
+
end
|
86
|
+
|
87
|
+
# return the total duration of this segment
|
88
|
+
def duration
|
89
|
+
(@exit_timestamp - @entry_timestamp).to_f
|
90
|
+
end
|
91
|
+
|
92
|
+
# return the duration of this segment without
|
93
|
+
# including the time in the called segments
|
94
|
+
def exclusive_duration
|
95
|
+
d = duration
|
96
|
+
|
97
|
+
called_segments.each do |segment|
|
98
|
+
d -= segment.duration
|
99
|
+
end
|
100
|
+
d
|
101
|
+
end
|
102
|
+
|
103
|
+
def count_segments
|
104
|
+
count = 1
|
105
|
+
called_segments.each { | seg | count += seg.count_segments }
|
106
|
+
count
|
107
|
+
end
|
108
|
+
|
109
|
+
# Walk through the tree and truncate the segments in a
|
110
|
+
# depth-first manner
|
111
|
+
def truncate(max)
|
112
|
+
return 1 unless @called_segments
|
113
|
+
total, self.called_segments = truncate_each_child(max - 1)
|
114
|
+
total+1
|
115
|
+
end
|
116
|
+
|
117
|
+
def truncate_each_child(max)
|
118
|
+
total = 0
|
119
|
+
accumulator = []
|
120
|
+
called_segments.each { | s |
|
121
|
+
if total == max
|
122
|
+
true
|
123
|
+
else
|
124
|
+
total += s.truncate(max - total)
|
125
|
+
accumulator << s
|
126
|
+
end
|
127
|
+
}
|
128
|
+
total
|
129
|
+
[total, accumulator]
|
130
|
+
end
|
131
|
+
|
132
|
+
def []=(key, value)
|
133
|
+
# only create a parameters field if a parameter is set; this will save
|
134
|
+
# bandwidth etc as most segments have no parameters
|
135
|
+
params[key] = value
|
136
|
+
end
|
137
|
+
|
138
|
+
def [](key)
|
139
|
+
params[key]
|
140
|
+
end
|
141
|
+
|
142
|
+
def params
|
143
|
+
@params ||= {}
|
144
|
+
end
|
145
|
+
|
146
|
+
# call the provided block for this segment and each
|
147
|
+
# of the called segments
|
148
|
+
def each_segment(&block)
|
149
|
+
block.call self
|
150
|
+
|
151
|
+
if @called_segments
|
152
|
+
@called_segments.each do |segment|
|
153
|
+
segment.each_segment(&block)
|
154
|
+
end
|
155
|
+
end
|
156
|
+
end
|
157
|
+
|
158
|
+
# call the provided block for this segment and each
|
159
|
+
# of the called segments while keeping track of nested segments
|
160
|
+
def each_segment_with_nest_tracking(&block)
|
161
|
+
summary = block.call self
|
162
|
+
summary.current_nest_count += 1 if summary
|
163
|
+
|
164
|
+
if @called_segments
|
165
|
+
@called_segments.each do |segment|
|
166
|
+
segment.each_segment_with_nest_tracking(&block)
|
167
|
+
end
|
168
|
+
end
|
169
|
+
|
170
|
+
summary.current_nest_count -= 1 if summary
|
171
|
+
end
|
172
|
+
|
173
|
+
def find_segment(id)
|
174
|
+
return self if @segment_id == id
|
175
|
+
called_segments.each do |segment|
|
176
|
+
found = segment.find_segment(id)
|
177
|
+
return found if found
|
178
|
+
end
|
179
|
+
nil
|
180
|
+
end
|
181
|
+
|
182
|
+
def explain_sql
|
183
|
+
NewRelic::Agent::Database.explain_sql(params[:sql],
|
184
|
+
params[:connection_config])
|
185
|
+
end
|
186
|
+
|
187
|
+
def obfuscated_sql
|
188
|
+
NewRelic::Agent::Database.obfuscate_sql(params[:sql])
|
189
|
+
end
|
190
|
+
|
191
|
+
def params=(p)
|
192
|
+
@params = p
|
193
|
+
end
|
194
|
+
|
195
|
+
def called_segments=(segments)
|
196
|
+
@called_segments = segments
|
197
|
+
end
|
198
|
+
|
199
|
+
protected
|
200
|
+
def parent_segment=(s)
|
201
|
+
@parent_segment = s
|
202
|
+
end
|
203
|
+
end
|
204
|
+
end
|
205
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'new_relic/transaction_sample'
|
2
|
+
require 'new_relic/transaction_sample/segment'
|
3
|
+
module NewRelic
|
4
|
+
class TransactionSample
|
5
|
+
class SummarySegment < Segment
|
6
|
+
def initialize(segment)
|
7
|
+
super segment.entry_timestamp, segment.metric_name, nil
|
8
|
+
|
9
|
+
add_segments segment.called_segments
|
10
|
+
|
11
|
+
end_trace segment.exit_timestamp
|
12
|
+
end
|
13
|
+
|
14
|
+
def add_segments(segments)
|
15
|
+
segments.collect do |segment|
|
16
|
+
SummarySegment.new(segment)
|
17
|
+
end.each {|segment| add_called_segment(segment)}
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Represents url mapping rules stored on the server. These rules should be applied
|
2
|
+
# to URLs which are not normalized into controller class/action by Rails routes.
|
3
|
+
# Insantiated strictly by Marshal.
|
4
|
+
class NewRelic::UrlRule
|
5
|
+
attr_reader :match_expression, :replacement, :eval_order, :terminate_chain
|
6
|
+
|
7
|
+
def apply url
|
8
|
+
return nil
|
9
|
+
end
|
10
|
+
|
11
|
+
class RuleSet
|
12
|
+
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
#!/usr/bin/ruby
|
2
|
+
|
3
|
+
module NewRelic
|
4
|
+
module VERSION #:nodoc:
|
5
|
+
def self.build_version_string(*parts)
|
6
|
+
parts.compact.join('.')
|
7
|
+
end
|
8
|
+
|
9
|
+
MAJOR = 3
|
10
|
+
MINOR = 5
|
11
|
+
TINY = 8
|
12
|
+
|
13
|
+
begin
|
14
|
+
require File.join(File.dirname(__FILE__), 'build')
|
15
|
+
rescue LoadError => e
|
16
|
+
BUILD = nil
|
17
|
+
end
|
18
|
+
|
19
|
+
STRING = build_version_string(MAJOR, MINOR, TINY, BUILD)
|
20
|
+
end
|
21
|
+
|
22
|
+
# Helper class for managing version comparisons
|
23
|
+
class VersionNumber
|
24
|
+
attr_reader :parts
|
25
|
+
include Comparable
|
26
|
+
def initialize(version_string)
|
27
|
+
version_string ||= '1.0.0'
|
28
|
+
@parts = version_string.split('.').map{|n| n =~ /^\d+$/ ? n.to_i : n}
|
29
|
+
end
|
30
|
+
def major_version; @parts[0]; end
|
31
|
+
def minor_version; @parts[1]; end
|
32
|
+
def tiny_version; @parts[2]; end
|
33
|
+
|
34
|
+
def <=>(other)
|
35
|
+
other = self.class.new(other) if other.is_a? String
|
36
|
+
self.class.compare(self.parts, other.parts)
|
37
|
+
end
|
38
|
+
|
39
|
+
def to_s
|
40
|
+
@parts.join(".")
|
41
|
+
end
|
42
|
+
|
43
|
+
def hash
|
44
|
+
@parts.hash
|
45
|
+
end
|
46
|
+
|
47
|
+
def eql? other
|
48
|
+
(self <=> other) == 0
|
49
|
+
end
|
50
|
+
|
51
|
+
private
|
52
|
+
def self.compare(parts1, parts2)
|
53
|
+
a, b = parts1.first, parts2.first
|
54
|
+
case
|
55
|
+
when a.nil? && b.nil? then 0
|
56
|
+
when a.nil? then b.is_a?(Fixnum) ? -1 : 1
|
57
|
+
when b.nil? then -compare(parts2, parts1)
|
58
|
+
when a.to_s == b.to_s then compare(parts1[1..-1], parts2[1..-1])
|
59
|
+
when a.is_a?(String) then b.is_a?(Fixnum) ? -1 : (a <=> b)
|
60
|
+
when b.is_a?(String) then -compare(parts2, parts1)
|
61
|
+
else # they are both fixnums, not nil
|
62
|
+
a <=> b
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
data/lib/newrelic_rpm.rb
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# == New Relic Initialization
|
2
|
+
#
|
3
|
+
# When installed as a gem, you can activate the New Relic agent one of the following ways:
|
4
|
+
#
|
5
|
+
# For Rails, add:
|
6
|
+
# config.gem 'newrelic_rpm'
|
7
|
+
# to your initialization sequence.
|
8
|
+
#
|
9
|
+
# For merb, do
|
10
|
+
# dependency 'newrelic_rpm'
|
11
|
+
# in the Merb config/init.rb
|
12
|
+
#
|
13
|
+
# For Sinatra, do
|
14
|
+
# require 'newrelic_rpm'
|
15
|
+
# after requiring 'sinatra'.
|
16
|
+
#
|
17
|
+
# For other frameworks, or to manage the agent manually, invoke NewRelic::Agent#manual_start
|
18
|
+
# directly.
|
19
|
+
#
|
20
|
+
require 'new_relic/control'
|
21
|
+
if defined?(Merb) && defined?(Merb::BootLoader)
|
22
|
+
module NewRelic
|
23
|
+
class MerbBootLoader < Merb::BootLoader
|
24
|
+
after Merb::BootLoader::ChooseAdapter
|
25
|
+
def self.run
|
26
|
+
NewRelic::Control.instance.init_plugin
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
elsif defined? Rails
|
31
|
+
if Rails.respond_to?(:version) && Rails.version > '3'
|
32
|
+
module NewRelic
|
33
|
+
class Railtie < Rails::Railtie
|
34
|
+
|
35
|
+
initializer "newrelic_rpm.start_plugin" do |app|
|
36
|
+
NewRelic::Control.instance.init_plugin(:config => app.config)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
else
|
41
|
+
# After verison 2.0 of Rails we can access the configuration directly.
|
42
|
+
# We need it to add dev mode routes after initialization finished.
|
43
|
+
config = nil
|
44
|
+
config = Rails.configuration if Rails.respond_to?(:configuration)
|
45
|
+
NewRelic::Control.instance.init_plugin :config => config
|
46
|
+
end
|
47
|
+
else
|
48
|
+
NewRelic::Control.instance.init_plugin
|
49
|
+
end
|
data/lib/tasks/all.rb
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
begin
|
2
|
+
require 'rake/testtask'
|
3
|
+
rescue LoadError => e
|
4
|
+
end
|
5
|
+
|
6
|
+
if defined? Rake::TestTask
|
7
|
+
namespace :test do
|
8
|
+
agent_home = File.expand_path(File.join(File.dirname(__FILE__),'..','..'))
|
9
|
+
|
10
|
+
Rake::TestTask.new(:newrelic) do |t|
|
11
|
+
t.libs << "#{agent_home}/test"
|
12
|
+
t.libs << "#{agent_home}/lib"
|
13
|
+
t.pattern = "#{agent_home}/test/new_relic/**/*_test.rb"
|
14
|
+
t.verbose = true
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
data/newrelic.yml
ADDED
@@ -0,0 +1,227 @@
|
|
1
|
+
#
|
2
|
+
# This file configures the New Relic Ruby Agent, New Relic monitors
|
3
|
+
# Rails applications with deep visibility and low overhead. For more
|
4
|
+
# information, visit www.newrelic.com.
|
5
|
+
#
|
6
|
+
# Generated <%= Time.now.strftime('%B %d, %Y') %>, for version <%= NewRelic::VERSION::STRING %>
|
7
|
+
#
|
8
|
+
# <%= generated_for_user %>
|
9
|
+
|
10
|
+
|
11
|
+
# Here are the settings that are common to all environments
|
12
|
+
common: &default_settings
|
13
|
+
# ============================== LICENSE KEY ===============================
|
14
|
+
|
15
|
+
# You must specify the license key associated with your New Relic
|
16
|
+
# account. This key binds your Agent's data to your account in the
|
17
|
+
# New Relic service.
|
18
|
+
license_key: '<%= license_key %>'
|
19
|
+
|
20
|
+
# Agent Enabled (Rails Only)
|
21
|
+
# Use this setting to force the agent to run or not run.
|
22
|
+
# Default is 'auto' which means the agent will install and run only
|
23
|
+
# if a valid dispatcher such as Mongrel is running. This prevents
|
24
|
+
# it from running with Rake or the console. Set to false to
|
25
|
+
# completely turn the agent off regardless of the other settings.
|
26
|
+
# Valid values are true, false and auto.
|
27
|
+
#
|
28
|
+
# agent_enabled: auto
|
29
|
+
|
30
|
+
# Application Name Set this to be the name of your application as
|
31
|
+
# you'd like it show up in New Relic. The service will then auto-map
|
32
|
+
# instances of your application into an "application" on your
|
33
|
+
# dashboard page. If you want to map this instance into multiple
|
34
|
+
# apps, like "AJAX Requests" and "All UI" then specify a semicolon
|
35
|
+
# separated list of up to three distinct names, or a yaml list.
|
36
|
+
# Defaults to the capitalized RAILS_ENV or RACK_ENV (i.e.,
|
37
|
+
# Production, Staging, etc)
|
38
|
+
#
|
39
|
+
# Example:
|
40
|
+
#
|
41
|
+
# app_name:
|
42
|
+
# - Ajax Service
|
43
|
+
# - All Services
|
44
|
+
#
|
45
|
+
app_name: <%= @app_name %>
|
46
|
+
|
47
|
+
# When "true", the agent collects performance data about your
|
48
|
+
# application and reports this data to the New Relic service at
|
49
|
+
# newrelic.com. This global switch is normally overridden for each
|
50
|
+
# environment below (formerly called 'enabled').
|
51
|
+
monitor_mode: true
|
52
|
+
|
53
|
+
# Developer mode should be off in every environment but
|
54
|
+
# development as it has very high overhead in memory.
|
55
|
+
developer_mode: false
|
56
|
+
|
57
|
+
# The newrelic agent generates its own log file to keep its logging
|
58
|
+
# information separate from that of your application. Specify its
|
59
|
+
# log level here.
|
60
|
+
log_level: info
|
61
|
+
|
62
|
+
# Optionally set the path to the log file This is expanded from the
|
63
|
+
# root directory (may be relative or absolute, e.g. 'log/' or
|
64
|
+
# '/var/log/') The agent will attempt to create this directory if it
|
65
|
+
# does not exist.
|
66
|
+
# log_file_path: 'log'
|
67
|
+
|
68
|
+
# Optionally set the name of the log file, defaults to 'newrelic_agent.log'
|
69
|
+
# log_file_name: 'newrelic_agent.log'
|
70
|
+
|
71
|
+
# The newrelic agent communicates with the service via https by default. This
|
72
|
+
# prevents eavesdropping on the performance metrics transmitted by the agent.
|
73
|
+
# The encryption required by SSL introduces a nominal amount of CPU overhead,
|
74
|
+
# which is performed asynchronously in a background thread. If you'd prefer
|
75
|
+
# to send your metrics over http uncomment the following line.
|
76
|
+
# ssl: false
|
77
|
+
|
78
|
+
#============================== Browser Monitoring ===============================
|
79
|
+
# New Relic Real User Monitoring gives you insight into the performance real users are
|
80
|
+
# experiencing with your website. This is accomplished by measuring the time it takes for
|
81
|
+
# your users' browsers to download and render your web pages by injecting a small amount
|
82
|
+
# of JavaScript code into the header and footer of each page.
|
83
|
+
browser_monitoring:
|
84
|
+
# By default the agent automatically injects the monitoring JavaScript
|
85
|
+
# into web pages. Set this attribute to false to turn off this behavior.
|
86
|
+
auto_instrument: true
|
87
|
+
|
88
|
+
# Proxy settings for connecting to the service.
|
89
|
+
#
|
90
|
+
# If a proxy is used, the host setting is required. Other settings
|
91
|
+
# are optional. Default port is 8080.
|
92
|
+
#
|
93
|
+
# proxy_host: hostname
|
94
|
+
# proxy_port: 8080
|
95
|
+
# proxy_user:
|
96
|
+
# proxy_pass:
|
97
|
+
|
98
|
+
# The agent can optionally log all data it sends to New Relic servers to a
|
99
|
+
# separate log file for human inspection and auditing purposes. To enable this
|
100
|
+
# feature, change 'enabled' below to true.
|
101
|
+
# See: https://newrelic.com/docs/ruby/audit-log
|
102
|
+
audit_log:
|
103
|
+
enabled: false
|
104
|
+
|
105
|
+
# Tells transaction tracer and error collector (when enabled)
|
106
|
+
# whether or not to capture HTTP params. When true, frameworks can
|
107
|
+
# exclude HTTP parameters from being captured.
|
108
|
+
# Rails: the RoR filter_parameter_logging excludes parameters
|
109
|
+
# Java: create a config setting called "ignored_params" and set it to
|
110
|
+
# a comma separated list of HTTP parameter names.
|
111
|
+
# ex: ignored_params: credit_card, ssn, password
|
112
|
+
capture_params: false
|
113
|
+
|
114
|
+
# Transaction tracer captures deep information about slow
|
115
|
+
# transactions and sends this to the service once a
|
116
|
+
# minute. Included in the transaction is the exact call sequence of
|
117
|
+
# the transactions including any SQL statements issued.
|
118
|
+
transaction_tracer:
|
119
|
+
|
120
|
+
# Transaction tracer is enabled by default. Set this to false to
|
121
|
+
# turn it off. This feature is only available at the Professional
|
122
|
+
# and above product levels.
|
123
|
+
enabled: true
|
124
|
+
|
125
|
+
# Threshold in seconds for when to collect a transaction
|
126
|
+
# trace. When the response time of a controller action exceeds
|
127
|
+
# this threshold, a transaction trace will be recorded and sent to
|
128
|
+
# the service. Valid values are any float value, or (default)
|
129
|
+
# "apdex_f", which will use the threshold for an dissatisfying
|
130
|
+
# Apdex controller action - four times the Apdex T value.
|
131
|
+
transaction_threshold: apdex_f
|
132
|
+
|
133
|
+
# When transaction tracer is on, SQL statements can optionally be
|
134
|
+
# recorded. The recorder has three modes, "off" which sends no
|
135
|
+
# SQL, "raw" which sends the SQL statement in its original form,
|
136
|
+
# and "obfuscated", which strips out numeric and string literals.
|
137
|
+
record_sql: obfuscated
|
138
|
+
|
139
|
+
# Threshold in seconds for when to collect stack trace for a SQL
|
140
|
+
# call. In other words, when SQL statements exceed this threshold,
|
141
|
+
# then capture and send the current stack trace. This is
|
142
|
+
# helpful for pinpointing where long SQL calls originate from.
|
143
|
+
stack_trace_threshold: 0.500
|
144
|
+
|
145
|
+
# Determines whether the agent will capture query plans for slow
|
146
|
+
# SQL queries. Only supported in mysql and postgres. Should be
|
147
|
+
# set to false when using other adapters.
|
148
|
+
# explain_enabled: true
|
149
|
+
|
150
|
+
# Threshold for query execution time below which query plans will not
|
151
|
+
# not be captured. Relevant only when `explain_enabled` is true.
|
152
|
+
# explain_threshold: 0.5
|
153
|
+
|
154
|
+
# Error collector captures information about uncaught exceptions and
|
155
|
+
# sends them to the service for viewing.
|
156
|
+
error_collector:
|
157
|
+
|
158
|
+
# Error collector is enabled by default. Set this to false to turn
|
159
|
+
# it off. This feature is only available at the Professional and above
|
160
|
+
# product levels.
|
161
|
+
enabled: true
|
162
|
+
|
163
|
+
# Rails Only - tells error collector whether or not to capture a
|
164
|
+
# source snippet around the place of the error when errors are View
|
165
|
+
# related.
|
166
|
+
capture_source: true
|
167
|
+
|
168
|
+
# To stop specific errors from reporting to New Relic, set this property
|
169
|
+
# to comma separated values. Default is to ignore routing errors
|
170
|
+
# which are how 404's get triggered.
|
171
|
+
ignore_errors: ActionController::RoutingError
|
172
|
+
|
173
|
+
# If you're interested in capturing memcache keys as though they
|
174
|
+
# were SQL uncomment this flag. Note that this does increase
|
175
|
+
# overhead slightly on every memcached call, and can have security
|
176
|
+
# implications if your memcached keys are sensitive
|
177
|
+
# capture_memcache_keys: true
|
178
|
+
|
179
|
+
# Application Environments
|
180
|
+
# ------------------------------------------
|
181
|
+
# Environment specific settings are in this section.
|
182
|
+
# For Rails applications, RAILS_ENV is used to determine the environment
|
183
|
+
# For Java applications, pass -Dnewrelic.environment <environment> to set
|
184
|
+
# the environment
|
185
|
+
|
186
|
+
# NOTE if your application has other named environments, you should
|
187
|
+
# provide newrelic configuration settings for these environments here.
|
188
|
+
|
189
|
+
development:
|
190
|
+
<<: *default_settings
|
191
|
+
# Turn off communication to New Relic service in development mode (also
|
192
|
+
# 'enabled').
|
193
|
+
# NOTE: for initial evaluation purposes, you may want to temporarily
|
194
|
+
# turn the agent on in development mode.
|
195
|
+
monitor_mode: false
|
196
|
+
|
197
|
+
# Rails Only - when running in Developer Mode, the New Relic Agent will
|
198
|
+
# present performance information on the last 100 transactions you have
|
199
|
+
# executed since starting the mongrel.
|
200
|
+
# NOTE: There is substantial overhead when running in developer mode.
|
201
|
+
# Do not use for production or load testing.
|
202
|
+
developer_mode: true
|
203
|
+
|
204
|
+
# Enable textmate links
|
205
|
+
# textmate: true
|
206
|
+
|
207
|
+
test:
|
208
|
+
<<: *default_settings
|
209
|
+
# It almost never makes sense to turn on the agent when running
|
210
|
+
# unit, functional or integration tests or the like.
|
211
|
+
monitor_mode: false
|
212
|
+
|
213
|
+
# Turn on the agent in production for 24x7 monitoring. NewRelic
|
214
|
+
# testing shows an average performance impact of < 5 ms per
|
215
|
+
# transaction, you can leave this on all the time without
|
216
|
+
# incurring any user-visible performance degradation.
|
217
|
+
production:
|
218
|
+
<<: *default_settings
|
219
|
+
monitor_mode: true
|
220
|
+
|
221
|
+
# Many applications have a staging environment which behaves
|
222
|
+
# identically to production. Support for that environment is provided
|
223
|
+
# here. By default, the staging environment has the agent turned on.
|
224
|
+
staging:
|
225
|
+
<<: *default_settings
|
226
|
+
monitor_mode: true
|
227
|
+
app_name: <%= @app_name %> (Staging)
|