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
data/config/database.yml
ADDED
data/gem-public_cert.pem
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
2
|
+
MIIDODCCAiCgAwIBAgIBADANBgkqhkiG9w0BAQUFADBCMREwDwYDVQQDDAhzZWN1
|
3
|
+
cml0eTEYMBYGCgmSJomT8ixkARkWCG5ld3JlbGljMRMwEQYKCZImiZPyLGQBGRYD
|
4
|
+
Y29tMB4XDTEzMDIxMjE5MDcwN1oXDTE0MDIxMjE5MDcwN1owQjERMA8GA1UEAwwI
|
5
|
+
c2VjdXJpdHkxGDAWBgoJkiaJk/IsZAEZFghuZXdyZWxpYzETMBEGCgmSJomT8ixk
|
6
|
+
ARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJyYRvlk1XUo
|
7
|
+
8JhWQcE/v6RmpK//JbeKvTKnmWVUKz5oTDSOg/LKEhzChpJJVSOMJHCxd4OoxkIN
|
8
|
+
pjQF5U2af1m5ONeN1j4p4MujbwNeqxsJmixGLK/BZ9xTnbpYAa6xCRN1UfEcu3O9
|
9
|
+
jjLHX3c63ghldwRBn/c2ZD6anMtDeq3C5MLiycFs9h7JXOa3cTTHLZknkYIoHMKN
|
10
|
+
EFri5zlks50lbeaVvFRm4IMrYWRsEwzLZWaMOy68BVZe0UlBBKSMnzJfWkbdRRcm
|
11
|
+
xqu7viu4hrrCGjUmdHKnl6tf7BY7wqQyKjj+O5DhayKmKRuQcEX8QVnsM+ayqiVU
|
12
|
+
EtMiwNScUnsCAwEAAaM5MDcwCQYDVR0TBAIwADAdBgNVHQ4EFgQUOauaMsU0Elp6
|
13
|
+
hiUisj4l63ZunSUwCwYDVR0PBAQDAgSwMA0GCSqGSIb3DQEBBQUAA4IBAQAuwrHh
|
14
|
+
jOjIfAQoEbGakiwHTeImqmC1EjBEWb1+U+rC2OcsSQ3+2Q0mGq2u3lAphAeLa6i5
|
15
|
+
WXb5OdQqZY2aI7NgMxRG98/+TcIlAT8tDR0e6/+QBlBuDXP3YI5Nuhp5U4LEvghr
|
16
|
+
jEPaEo0AFPc1JpSO/zKmktU+e9VRAE+q55gLthP8fe0uZvtGUn0KgDbXJyOuGlHF
|
17
|
+
J93N937OcyA2rD8gR1qkr3/0/we1dwLZnL6kN4p8nGzPgXZgOHsmTdYZ2ryYowtb
|
18
|
+
Kc9+v+QxnbZYpu2IaPXOvm3T8G4O6qZvhnLh/Uien++Dj8eFBecTPoM8pVjK3ph5
|
19
|
+
n/EwuZCcE6ghtCCM
|
20
|
+
-----END CERTIFICATE-----
|
data/init.rb
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# This is the initialization for the New Relic Ruby Agent when used as
|
2
|
+
# a plugin
|
3
|
+
require 'new_relic/control'
|
4
|
+
|
5
|
+
# If you are having problems seeing data, be sure and check the
|
6
|
+
# newrelic_agent.log files in the log diretory of your application
|
7
|
+
#
|
8
|
+
# If you can't find any log files and you don't see anything in your
|
9
|
+
# application log files, try uncommenting the two lines at the
|
10
|
+
# bottom of this file to verify the plugin is being loaded,
|
11
|
+
# then send the output to support@newrelic.com if you are unable to
|
12
|
+
# resolve the issue.
|
13
|
+
|
14
|
+
# Initializer for the NewRelic Ruby Agent
|
15
|
+
|
16
|
+
# After verison 2.0 of Rails we can access the configuration directly.
|
17
|
+
# We need it to add dev mode routes after initialization finished.
|
18
|
+
|
19
|
+
begin
|
20
|
+
|
21
|
+
current_config = if defined?(config)
|
22
|
+
config
|
23
|
+
elsif defined?(Rails.configuration)
|
24
|
+
Rails.configuration
|
25
|
+
end
|
26
|
+
|
27
|
+
NewRelic::Control.instance.init_plugin :config => current_config
|
28
|
+
|
29
|
+
rescue => e
|
30
|
+
::NewRelic::Agent.logger.error "Error initializing New Relic plugin. Agent is disabled.", e
|
31
|
+
end
|
data/install.rb
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
if __FILE__ == $0 || $0 =~ /script\/plugin/
|
2
|
+
$LOAD_PATH << File.expand_path(File.join(File.dirname(__FILE__), 'lib'))
|
3
|
+
require 'new_relic/command'
|
4
|
+
begin
|
5
|
+
NewRelic::Command::Install.new(:quiet => true, :app_name => 'My Application').run
|
6
|
+
rescue NewRelic::Command::CommandFailure => e
|
7
|
+
$stderr.puts e.message
|
8
|
+
end
|
9
|
+
end
|
@@ -0,0 +1,5 @@
|
|
1
|
+
unless defined?(NewRelic) && defined?(NewRelic::MetricParser)
|
2
|
+
vendored_metric_parser = File.expand_path('../../vendor/gems/metric_parser-0.1.0.pre1/lib/', __FILE__)
|
3
|
+
$:.unshift vendored_metric_parser unless $:.include?(vendored_metric_parser)
|
4
|
+
require 'metric_parser'
|
5
|
+
end
|
@@ -0,0 +1,488 @@
|
|
1
|
+
require 'forwardable'
|
2
|
+
require 'new_relic/control'
|
3
|
+
|
4
|
+
# = New Relic Ruby Agent
|
5
|
+
#
|
6
|
+
# New Relic is a performance monitoring application for applications
|
7
|
+
# running in production. For more information on New Relic please visit
|
8
|
+
# http://www.newrelic.com.
|
9
|
+
#
|
10
|
+
# The New Relic Ruby Agent can be installed in Rails applications to
|
11
|
+
# gather runtime performance metrics, traces, and errors for display
|
12
|
+
# in a Developer Mode middleware (mapped to /newrelic in your application
|
13
|
+
# server) or for monitoring and analysis at http://rpm.newrelic.com
|
14
|
+
# with just about any Ruby application.
|
15
|
+
#
|
16
|
+
# == Getting Started
|
17
|
+
# For instructions on installation and setup, see
|
18
|
+
# the README[link:./files/README_rdoc.html] file.
|
19
|
+
#
|
20
|
+
# == Using with Rack/Metal
|
21
|
+
#
|
22
|
+
# To instrument Rack middlwares or Metal apps, refer to the docs in
|
23
|
+
# NewRelic::Agent::Instrumentation::Rack.
|
24
|
+
#
|
25
|
+
# == Ruby Agent API
|
26
|
+
#
|
27
|
+
# For details on the Ruby Agent API, refer to NewRelic::Agent.
|
28
|
+
#
|
29
|
+
# == Customizing the Ruby Agent
|
30
|
+
#
|
31
|
+
# For detailed information on customizing the Ruby Agent
|
32
|
+
# please visit our {support and documentation site}[http://support.newrelic.com].
|
33
|
+
#
|
34
|
+
module NewRelic
|
35
|
+
# == Ruby Agent APIs
|
36
|
+
# This module contains the public API methods for the Ruby Agent.
|
37
|
+
#
|
38
|
+
# For adding custom instrumentation to method invocations, refer to
|
39
|
+
# the docs in the class NewRelic::Agent::MethodTracer.
|
40
|
+
#
|
41
|
+
# For information on how to customize the controller
|
42
|
+
# instrumentation, or to instrument something other than Rails so
|
43
|
+
# that high level dispatcher actions or background tasks show up as
|
44
|
+
# first class operations in New Relic, refer to
|
45
|
+
# NewRelic::Agent::Instrumentation::ControllerInstrumentation and
|
46
|
+
# NewRelic::Agent::Instrumentation::ControllerInstrumentation::ClassMethods.
|
47
|
+
#
|
48
|
+
# Methods in this module as well as documented methods in
|
49
|
+
# NewRelic::Agent::MethodTracer and
|
50
|
+
# NewRelic::Agent::Instrumentation::ControllerInstrumentation are
|
51
|
+
# available to applications. When the agent is not enabled the
|
52
|
+
# method implementations are stubbed into no-ops to reduce overhead.
|
53
|
+
#
|
54
|
+
# Methods and classes in other parts of the agent are not guaranteed
|
55
|
+
# to be available between releases.
|
56
|
+
#
|
57
|
+
# Refer to the online docs at support.newrelic.com to see how to
|
58
|
+
# access the data collected by custom instrumentation, or e-mail
|
59
|
+
# support at New Relic for help.
|
60
|
+
module Agent
|
61
|
+
extend self
|
62
|
+
extend Forwardable
|
63
|
+
|
64
|
+
require 'new_relic/version'
|
65
|
+
require 'new_relic/local_environment'
|
66
|
+
require 'new_relic/metrics'
|
67
|
+
require 'new_relic/metric_spec'
|
68
|
+
require 'new_relic/metric_data'
|
69
|
+
require 'new_relic/collection_helper'
|
70
|
+
require 'new_relic/transaction_analysis'
|
71
|
+
require 'new_relic/transaction_sample'
|
72
|
+
require 'new_relic/url_rule'
|
73
|
+
require 'new_relic/noticed_error'
|
74
|
+
require 'new_relic/timer_lib'
|
75
|
+
|
76
|
+
require 'new_relic/agent'
|
77
|
+
require 'new_relic/agent/stats'
|
78
|
+
require 'new_relic/agent/chained_call'
|
79
|
+
require 'new_relic/agent/browser_monitoring'
|
80
|
+
require 'new_relic/agent/cross_app_monitor'
|
81
|
+
require 'new_relic/agent/agent'
|
82
|
+
require 'new_relic/agent/shim_agent'
|
83
|
+
require 'new_relic/agent/method_tracer'
|
84
|
+
require 'new_relic/agent/worker_loop'
|
85
|
+
require 'new_relic/agent/stats_engine'
|
86
|
+
require 'new_relic/agent/transaction_sampler'
|
87
|
+
require 'new_relic/agent/sql_sampler'
|
88
|
+
require 'new_relic/agent/thread_profiler'
|
89
|
+
require 'new_relic/agent/error_collector'
|
90
|
+
require 'new_relic/agent/busy_calculator'
|
91
|
+
require 'new_relic/agent/sampler'
|
92
|
+
require 'new_relic/agent/database'
|
93
|
+
require 'new_relic/agent/pipe_channel_manager'
|
94
|
+
require 'new_relic/agent/transaction_info'
|
95
|
+
require 'new_relic/agent/configuration'
|
96
|
+
require 'new_relic/agent/rules_engine'
|
97
|
+
|
98
|
+
require 'new_relic/agent/instrumentation/controller_instrumentation'
|
99
|
+
|
100
|
+
require 'new_relic/agent/samplers/cpu_sampler'
|
101
|
+
require 'new_relic/agent/samplers/memory_sampler'
|
102
|
+
require 'new_relic/agent/samplers/object_sampler'
|
103
|
+
require 'new_relic/agent/samplers/delayed_job_sampler'
|
104
|
+
require 'set'
|
105
|
+
require 'thread'
|
106
|
+
require 'resolv'
|
107
|
+
|
108
|
+
extend NewRelic::Agent::Configuration::Instance
|
109
|
+
|
110
|
+
# An exception that is thrown by the server if the agent license is invalid.
|
111
|
+
class LicenseException < StandardError; end
|
112
|
+
|
113
|
+
# An exception that forces an agent to stop reporting until its mongrel is restarted.
|
114
|
+
class ForceDisconnectException < StandardError; end
|
115
|
+
|
116
|
+
# An exception that forces an agent to restart.
|
117
|
+
class ForceRestartException < StandardError; end
|
118
|
+
|
119
|
+
# Used to blow out of a periodic task without logging a an error, such as for routine
|
120
|
+
# failures.
|
121
|
+
class ServerConnectionException < StandardError; end
|
122
|
+
|
123
|
+
# When a post is either too large or poorly formatted we should
|
124
|
+
# drop it and not try to resend
|
125
|
+
class UnrecoverableServerException < ServerConnectionException; end
|
126
|
+
|
127
|
+
# An unrecoverable client-side error that prevents the agent from continuing
|
128
|
+
class UnrecoverableAgentException < ServerConnectionException; end
|
129
|
+
|
130
|
+
# Reserved for future use. Meant to represent a problem on the server side.
|
131
|
+
class ServerError < StandardError; end
|
132
|
+
|
133
|
+
class BackgroundLoadingError < StandardError; end
|
134
|
+
|
135
|
+
@agent = nil
|
136
|
+
|
137
|
+
# The singleton Agent instance. Used internally.
|
138
|
+
def agent #:nodoc:
|
139
|
+
@agent || raise("Plugin not initialized!")
|
140
|
+
end
|
141
|
+
|
142
|
+
def agent=(new_instance)#:nodoc:
|
143
|
+
@agent = new_instance
|
144
|
+
end
|
145
|
+
|
146
|
+
alias instance agent #:nodoc:
|
147
|
+
|
148
|
+
# Primary interface to logging is fronted by this accessor
|
149
|
+
# Access via ::NewRelic::Agent.logger
|
150
|
+
def logger
|
151
|
+
@logger || StartupLogger.instance
|
152
|
+
end
|
153
|
+
|
154
|
+
def logger=(log)
|
155
|
+
@logger = log
|
156
|
+
end
|
157
|
+
|
158
|
+
# Record a value for the given metric name.
|
159
|
+
#
|
160
|
+
# This method should be used to record event-based metrics such as method
|
161
|
+
# calls that are associated with a specific duration or magnitude.
|
162
|
+
#
|
163
|
+
# +metric_name+ should follow a slash separated path convention. Application
|
164
|
+
# specific metrics should begin with "Custom/".
|
165
|
+
#
|
166
|
+
# +value+ should be either a single Numeric value representing the duration/
|
167
|
+
# magnitude of the event being recorded, or a Hash containing :count,
|
168
|
+
# :total, :min, :max, and :sum_of_squares keys. The latter form is useful
|
169
|
+
# for recording pre-aggregated metrics collected externally.
|
170
|
+
#
|
171
|
+
# This method is safe to use from any thread.
|
172
|
+
#
|
173
|
+
# @api public
|
174
|
+
def record_metric(metric_name, value)
|
175
|
+
if value.is_a?(Hash)
|
176
|
+
stats = NewRelic::Agent::Stats.new
|
177
|
+
stats.call_count = value[:count]
|
178
|
+
stats.total_call_time = value[:total]
|
179
|
+
stats.total_exclusive_time = value[:total]
|
180
|
+
stats.min_call_time = value[:min]
|
181
|
+
stats.max_call_time = value[:max]
|
182
|
+
stats.sum_of_squares = value[:sum_of_squares]
|
183
|
+
value = stats
|
184
|
+
end
|
185
|
+
agent.stats_engine.record_metric(metric_name, value)
|
186
|
+
end
|
187
|
+
|
188
|
+
# Increment a simple counter metric.
|
189
|
+
#
|
190
|
+
# +metric_name+ should follow a slash separated path convention. Application
|
191
|
+
# specific metrics should begin with "Custom/".
|
192
|
+
#
|
193
|
+
# This method is safe to use from any thread.
|
194
|
+
#
|
195
|
+
# @api public
|
196
|
+
def increment_metric(metric_name, amount=1)
|
197
|
+
agent.stats_engine.record_metric(metric_name) do |stats|
|
198
|
+
stats.increment_count(amount)
|
199
|
+
end
|
200
|
+
end
|
201
|
+
|
202
|
+
# Get or create a statistics gatherer that will aggregate numerical data
|
203
|
+
# under a metric name.
|
204
|
+
#
|
205
|
+
# +metric_name+ should follow a slash separated path convention. Application
|
206
|
+
# specific metrics should begin with "Custom/".
|
207
|
+
#
|
208
|
+
# Return a NewRelic::Agent::Stats that accepts data
|
209
|
+
# via calls to add_data_point(value).
|
210
|
+
#
|
211
|
+
# @deprecated
|
212
|
+
def get_stats(metric_name, use_scope=false)
|
213
|
+
agent.stats_engine.get_stats(metric_name, use_scope)
|
214
|
+
end
|
215
|
+
|
216
|
+
alias get_stats_no_scope get_stats
|
217
|
+
|
218
|
+
# Call this to manually start the Agent in situations where the Agent does
|
219
|
+
# not auto-start.
|
220
|
+
#
|
221
|
+
# When the app environment loads, so does the Agent. However, the
|
222
|
+
# Agent will only connect to the service if a web front-end is found. If
|
223
|
+
# you want to selectively monitor ruby processes that don't use
|
224
|
+
# web plugins, then call this method in your code and the Agent
|
225
|
+
# will fire up and start reporting to the service.
|
226
|
+
#
|
227
|
+
# Options are passed in as overrides for values in the
|
228
|
+
# newrelic.yml, such as app_name. In addition, the option +log+
|
229
|
+
# will take a logger that will be used instead of the standard
|
230
|
+
# file logger. The setting for the newrelic.yml section to use
|
231
|
+
# (ie, RAILS_ENV) can be overridden with an :env argument.
|
232
|
+
#
|
233
|
+
def manual_start(options={})
|
234
|
+
raise "Options must be a hash" unless Hash === options
|
235
|
+
if options[:start_channel_listener]
|
236
|
+
NewRelic::Agent::PipeChannelManager.listener.start
|
237
|
+
end
|
238
|
+
NewRelic::Control.instance.init_plugin({ :agent_enabled => true, :sync_startup => true }.merge(options))
|
239
|
+
end
|
240
|
+
|
241
|
+
# Register this method as a callback for processes that fork
|
242
|
+
# jobs.
|
243
|
+
#
|
244
|
+
# If the master/parent connects to the agent prior to forking the
|
245
|
+
# agent in the forked process will use that agent_run. Otherwise
|
246
|
+
# the forked process will establish a new connection with the
|
247
|
+
# server.
|
248
|
+
#
|
249
|
+
# Use this especially when you fork the process to run background
|
250
|
+
# jobs or other work. If you are doing this with a web dispatcher
|
251
|
+
# that forks worker processes then you will need to force the
|
252
|
+
# agent to reconnect, which it won't do by default. Passenger and
|
253
|
+
# Unicorn are already handled, nothing special needed for them.
|
254
|
+
#
|
255
|
+
# Options:
|
256
|
+
# * <tt>:force_reconnect => true</tt> to force the spawned process to
|
257
|
+
# establish a new connection, such as when forking a long running process.
|
258
|
+
# The default is false--it will only connect to the server if the parent
|
259
|
+
# had not connected.
|
260
|
+
# * <tt>:keep_retrying => false</tt> if we try to initiate a new
|
261
|
+
# connection, this tells me to only try it once so this method returns
|
262
|
+
# quickly if there is some kind of latency with the server.
|
263
|
+
def after_fork(options={})
|
264
|
+
agent.after_fork(options)
|
265
|
+
end
|
266
|
+
|
267
|
+
# Clear out any unsent metric data. See NewRelic::Agent::Agent#reset_stats
|
268
|
+
def reset_stats
|
269
|
+
agent.reset_stats
|
270
|
+
end
|
271
|
+
|
272
|
+
# Shutdown the agent. Call this before exiting. Sends any queued data
|
273
|
+
# and kills the background thread.
|
274
|
+
def shutdown(options={})
|
275
|
+
agent.shutdown(options)
|
276
|
+
end
|
277
|
+
|
278
|
+
# Add instrumentation files to the agent. The argument should be
|
279
|
+
# a glob matching ruby scripts which will be executed at the time
|
280
|
+
# instrumentation is loaded. Since instrumentation is not loaded
|
281
|
+
# when the agent is not running it's better to use this method to
|
282
|
+
# register instrumentation than just loading the files directly,
|
283
|
+
# although that probably also works.
|
284
|
+
def add_instrumentation(file_pattern)
|
285
|
+
NewRelic::Control.instance.add_instrumentation file_pattern
|
286
|
+
end
|
287
|
+
|
288
|
+
# This method sets the block sent to this method as a sql
|
289
|
+
# obfuscator. The block will be called with a single String SQL
|
290
|
+
# statement to obfuscate. The method must return the obfuscated
|
291
|
+
# String SQL. If chaining of obfuscators is required, use type =
|
292
|
+
# :before or :after
|
293
|
+
#
|
294
|
+
# type = :before, :replace, :after
|
295
|
+
#
|
296
|
+
# Example:
|
297
|
+
#
|
298
|
+
# NewRelic::Agent.set_sql_obfuscator(:replace) do |sql|
|
299
|
+
# my_obfuscator(sql)
|
300
|
+
# end
|
301
|
+
#
|
302
|
+
def set_sql_obfuscator(type = :replace, &block)
|
303
|
+
NewRelic::Agent::Database.set_sql_obfuscator(type, &block)
|
304
|
+
end
|
305
|
+
|
306
|
+
|
307
|
+
# This method sets the state of sql recording in the transaction
|
308
|
+
# sampler feature. Within the given block, no sql will be recorded
|
309
|
+
#
|
310
|
+
# usage:
|
311
|
+
#
|
312
|
+
# NewRelic::Agent.disable_sql_recording do
|
313
|
+
# ...
|
314
|
+
# end
|
315
|
+
#
|
316
|
+
def disable_sql_recording
|
317
|
+
state = agent.set_record_sql(false)
|
318
|
+
begin
|
319
|
+
yield
|
320
|
+
ensure
|
321
|
+
agent.set_record_sql(state)
|
322
|
+
end
|
323
|
+
end
|
324
|
+
|
325
|
+
# This method disables the recording of transaction traces in the given
|
326
|
+
# block. See also #disable_all_tracing
|
327
|
+
def disable_transaction_tracing
|
328
|
+
state = agent.set_record_tt(false)
|
329
|
+
begin
|
330
|
+
yield
|
331
|
+
ensure
|
332
|
+
agent.set_record_tt(state)
|
333
|
+
end
|
334
|
+
end
|
335
|
+
|
336
|
+
# Cancel the collection of the current transaction in progress, if
|
337
|
+
# any. Only affects the transaction started on this thread once
|
338
|
+
# it has started and before it has completed.
|
339
|
+
def abort_transaction!
|
340
|
+
NewRelic::Agent::Instrumentation::MetricFrame.abort_transaction!
|
341
|
+
end
|
342
|
+
|
343
|
+
# Yield to the block without collecting any metrics or traces in
|
344
|
+
# any of the subsequent calls. If executed recursively, will keep
|
345
|
+
# track of the first entry point and turn on tracing again after
|
346
|
+
# leaving that block. This uses the thread local
|
347
|
+
# +newrelic_untrace+
|
348
|
+
def disable_all_tracing
|
349
|
+
agent.push_trace_execution_flag(false)
|
350
|
+
yield
|
351
|
+
ensure
|
352
|
+
agent.pop_trace_execution_flag
|
353
|
+
end
|
354
|
+
|
355
|
+
# Check to see if we are capturing metrics currently on this thread.
|
356
|
+
def is_execution_traced?
|
357
|
+
untraced = Thread.current[:newrelic_untraced]
|
358
|
+
untraced.nil? || untraced.last != false
|
359
|
+
end
|
360
|
+
|
361
|
+
# helper method to check the thread local to determine whether the
|
362
|
+
# transaction in progress is traced or not
|
363
|
+
def is_transaction_traced?
|
364
|
+
Thread::current[:record_tt] != false
|
365
|
+
end
|
366
|
+
|
367
|
+
# helper method to check the thread local to determine whether sql
|
368
|
+
# is being recorded or not
|
369
|
+
def is_sql_recorded?
|
370
|
+
Thread::current[:record_sql] != false
|
371
|
+
end
|
372
|
+
|
373
|
+
# Set a filter to be applied to errors that the Ruby Agent will
|
374
|
+
# track. The block should evalute to the exception to track
|
375
|
+
# (which could be different from the original exception) or nil to
|
376
|
+
# ignore this exception.
|
377
|
+
#
|
378
|
+
# The block is yielded to with the exception to filter.
|
379
|
+
#
|
380
|
+
# Return the new block or the existing filter Proc if no block is passed.
|
381
|
+
#
|
382
|
+
def ignore_error_filter(&block)
|
383
|
+
agent.error_collector.ignore_error_filter(&block)
|
384
|
+
end
|
385
|
+
|
386
|
+
# Record the given error. It will be passed through the
|
387
|
+
# #ignore_error_filter if there is one.
|
388
|
+
#
|
389
|
+
# * <tt>exception</tt> is the exception which will be recorded. May also be
|
390
|
+
# an error message.
|
391
|
+
# Options:
|
392
|
+
# * <tt>:uri</tt> => The request path, minus any request params or query string.
|
393
|
+
# * <tt>:referer</tt> => The URI of the referer
|
394
|
+
# * <tt>:metric</tt> => The metric name associated with the transaction
|
395
|
+
# * <tt>:request_params</tt> => Request parameters, already filtered if necessary
|
396
|
+
# * <tt>:custom_params</tt> => Custom parameters
|
397
|
+
#
|
398
|
+
# Anything left over is treated as custom params.
|
399
|
+
#
|
400
|
+
def notice_error(exception, options={})
|
401
|
+
NewRelic::Agent::Instrumentation::MetricFrame.notice_error(exception, options)
|
402
|
+
end
|
403
|
+
|
404
|
+
# Add parameters to the current transaction trace (and traced error if any)
|
405
|
+
# on the call stack.
|
406
|
+
#
|
407
|
+
def add_custom_parameters(params)
|
408
|
+
NewRelic::Agent::Instrumentation::MetricFrame.add_custom_parameters(params)
|
409
|
+
end
|
410
|
+
|
411
|
+
# Set attributes about the user making this request. These attributes will be automatically
|
412
|
+
# appended to any Transaction Trace or Error that is collected. These attributes
|
413
|
+
# will also be collected for RUM requests.
|
414
|
+
#
|
415
|
+
# Attributes (hash)
|
416
|
+
# * <tt>:user</tt> => user name or ID
|
417
|
+
# * <tt>:account</tt> => account name or ID
|
418
|
+
# * <tt>:product</tt> => product name or level
|
419
|
+
#
|
420
|
+
def set_user_attributes(attributes)
|
421
|
+
NewRelic::Agent::Instrumentation::MetricFrame.set_user_attributes(attributes)
|
422
|
+
end
|
423
|
+
|
424
|
+
# The #add_request_parameters method is aliased to #add_custom_parameters
|
425
|
+
# and is now deprecated.
|
426
|
+
alias add_request_parameters add_custom_parameters #:nodoc:
|
427
|
+
|
428
|
+
# Yield to a block that is run with a database metric name
|
429
|
+
# context. This means the Database instrumentation will use this
|
430
|
+
# for the metric name if it does not otherwise know about a model.
|
431
|
+
# This is re-entrant.
|
432
|
+
#
|
433
|
+
# * <tt>model</tt> is the DB model class
|
434
|
+
# * <tt>method</tt> is the name of the finder method or other
|
435
|
+
# method to identify the operation with.
|
436
|
+
def with_database_metric_name(model, method, &block)
|
437
|
+
if frame = NewRelic::Agent::Instrumentation::MetricFrame.current
|
438
|
+
frame.with_database_metric_name(model, method, &block)
|
439
|
+
else
|
440
|
+
yield
|
441
|
+
end
|
442
|
+
end
|
443
|
+
|
444
|
+
# Record a web transaction from an external source. This will
|
445
|
+
# process the response time, error, and score an apdex value.
|
446
|
+
#
|
447
|
+
# First argument is a float value, time in seconds. Option
|
448
|
+
# keys are strings.
|
449
|
+
#
|
450
|
+
# == Identifying the transaction
|
451
|
+
# * <tt>'uri' => uri</tt> to record the value for a given web request.
|
452
|
+
# If not provided, just record the aggregate dispatcher and apdex scores.
|
453
|
+
# * <tt>'metric' => metric_name</tt> to record with a general metric name
|
454
|
+
# like +OtherTransaction/Background/Class/method+. Ignored if +uri+ is
|
455
|
+
# provided.
|
456
|
+
#
|
457
|
+
# == Error options
|
458
|
+
# Provide one of the following:
|
459
|
+
# * <tt>'is_error' => true</tt> if an unknown error occurred
|
460
|
+
# * <tt>'error_message' => msg</tt> if an error message is available
|
461
|
+
# * <tt>'exception' => exception</tt> if a ruby exception is recorded
|
462
|
+
#
|
463
|
+
# == Misc options
|
464
|
+
# Additional information captured in errors
|
465
|
+
# * <tt>'referer' => referer_url</tt>
|
466
|
+
# * <tt>'request_params' => hash</tt> to record a set of name/value pairs as the
|
467
|
+
# request parameters.
|
468
|
+
# * <tt>'custom_params' => hash</tt> to record extra information in traced errors
|
469
|
+
#
|
470
|
+
def record_transaction(response_sec, options = {})
|
471
|
+
agent.record_transaction(response_sec, options)
|
472
|
+
end
|
473
|
+
|
474
|
+
# Returns a Javascript string which should be injected into the very top of the response body
|
475
|
+
#
|
476
|
+
def browser_timing_header
|
477
|
+
agent.browser_timing_header
|
478
|
+
end
|
479
|
+
|
480
|
+
# Returns a Javascript string which should be injected into the very bottom of the response body
|
481
|
+
#
|
482
|
+
def browser_timing_footer
|
483
|
+
agent.browser_timing_footer
|
484
|
+
end
|
485
|
+
|
486
|
+
def_delegator :'NewRelic::Agent::PipeChannelManager', :register_report_channel
|
487
|
+
end
|
488
|
+
end
|