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,20 @@
|
|
1
|
+
|
2
|
+
require 'new_relic/control/frameworks/ruby'
|
3
|
+
module NewRelic
|
4
|
+
class Control
|
5
|
+
module Frameworks
|
6
|
+
# Contains basic control logic for Sinatra
|
7
|
+
class Sinatra < NewRelic::Control::Frameworks::Ruby
|
8
|
+
|
9
|
+
def env
|
10
|
+
@env ||= ENV['RACK_ENV'] || ENV['RAILS_ENV'] || 'development'
|
11
|
+
end
|
12
|
+
|
13
|
+
def init_config(options={})
|
14
|
+
super
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,145 @@
|
|
1
|
+
require 'new_relic/language_support'
|
2
|
+
require 'new_relic/agent/agent_logger'
|
3
|
+
|
4
|
+
module NewRelic
|
5
|
+
class Control
|
6
|
+
include NewRelic::LanguageSupport::Control
|
7
|
+
|
8
|
+
# Contains methods that relate to the runtime usage of the control
|
9
|
+
# object. Note that these are subject to override in the
|
10
|
+
# NewRelic::Control::Framework classes that are actually instantiated
|
11
|
+
module InstanceMethods
|
12
|
+
# The env is the setting used to identify which section of the newrelic.yml
|
13
|
+
# to load. This defaults to a framework specific value, such as ENV['RAILS_ENV']
|
14
|
+
# but can be overridden as long as you set it before calling #init_plugin
|
15
|
+
attr_writer :env
|
16
|
+
|
17
|
+
# The local environment contains all the information we report
|
18
|
+
# to the server about what kind of application this is, what
|
19
|
+
# gems and plugins it uses, and many other kinds of
|
20
|
+
# machine-dependent information useful in debugging
|
21
|
+
attr_reader :local_env
|
22
|
+
|
23
|
+
# Initialize the plugin/gem and start the agent. This does the
|
24
|
+
# necessary configuration based on the framework environment and
|
25
|
+
# determines whether or not to start the agent. If the agent is
|
26
|
+
# not going to be started then it loads the agent shim which has
|
27
|
+
# stubs for all the external api.
|
28
|
+
#
|
29
|
+
# This may be invoked multiple times, as long as you don't attempt
|
30
|
+
# to uninstall the agent after it has been started.
|
31
|
+
#
|
32
|
+
# If the plugin is initialized and it determines that the agent is
|
33
|
+
# not enabled, it will skip starting it and install the shim. But
|
34
|
+
# if you later call this with <tt>:agent_enabled => true</tt>,
|
35
|
+
# then it will install the real agent and start it.
|
36
|
+
#
|
37
|
+
# What determines whether the agent is launched is the result of
|
38
|
+
# calling agent_enabled? This will indicate whether the
|
39
|
+
# instrumentation should/will be installed. If we're in a mode
|
40
|
+
# where tracers are not installed then we should not start the
|
41
|
+
# agent.
|
42
|
+
#
|
43
|
+
# Subclasses are not allowed to override, but must implement
|
44
|
+
# init_config({}) which is called one or more times.
|
45
|
+
#
|
46
|
+
def init_plugin(options={})
|
47
|
+
yaml = Agent::Configuration::YamlSource.new(@config_file_path, options[:env] || env)
|
48
|
+
Agent.config.replace_or_add_config(yaml, 1)
|
49
|
+
|
50
|
+
Agent.config.replace_or_add_config(Agent::Configuration::ManualSource.new(options), 1)
|
51
|
+
|
52
|
+
# Be sure to only create once! RUBY-1020
|
53
|
+
if ::NewRelic::Agent.logger.is_startup_logger?
|
54
|
+
::NewRelic::Agent.logger = NewRelic::Agent::AgentLogger.new(Agent.config, root, options.delete(:log))
|
55
|
+
end
|
56
|
+
|
57
|
+
# Merge the stringified options into the config as overrides:
|
58
|
+
environment_name = options.delete(:env) and self.env = environment_name
|
59
|
+
dispatcher_instance_id = options.delete(:dispatcher_instance_id) and @local_env.dispatcher_instance_id = dispatcher_instance_id
|
60
|
+
|
61
|
+
NewRelic::Agent::PipeChannelManager.listener.start if options.delete(:start_channel_listener)
|
62
|
+
|
63
|
+
# An artifact of earlier implementation, we put both #add_method_tracer and #trace_execution
|
64
|
+
# methods in the module methods.
|
65
|
+
Module.send :include, NewRelic::Agent::MethodTracer::ClassMethods
|
66
|
+
Module.send :include, NewRelic::Agent::MethodTracer::InstanceMethods
|
67
|
+
init_config(options)
|
68
|
+
NewRelic::Agent.agent = NewRelic::Agent::Agent.instance
|
69
|
+
if Agent.config[:agent_enabled] && !NewRelic::Agent.instance.started?
|
70
|
+
start_agent
|
71
|
+
install_instrumentation
|
72
|
+
load_samplers unless Agent.config[:disable_samplers]
|
73
|
+
local_env.gather_environment_info
|
74
|
+
append_environment_info
|
75
|
+
elsif !Agent.config[:agent_enabled]
|
76
|
+
install_shim
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
# Install the real agent into the Agent module, and issue the start command.
|
81
|
+
def start_agent
|
82
|
+
NewRelic::Agent.agent.start
|
83
|
+
end
|
84
|
+
|
85
|
+
def app
|
86
|
+
Agent.config[:framework]
|
87
|
+
end
|
88
|
+
|
89
|
+
def framework
|
90
|
+
Agent.config[:framework]
|
91
|
+
end
|
92
|
+
|
93
|
+
# for backward compatibility with the old config interface
|
94
|
+
def [](key)
|
95
|
+
NewRelic::Agent.config[key.to_sym]
|
96
|
+
end
|
97
|
+
|
98
|
+
def settings
|
99
|
+
NewRelic::Agent.config.to_collector_hash
|
100
|
+
end
|
101
|
+
|
102
|
+
def dispatcher
|
103
|
+
NewRelic::Agent.config[:dispatcher]
|
104
|
+
end
|
105
|
+
|
106
|
+
# Delegates to the class method newrelic_root, implemented by
|
107
|
+
# each subclass
|
108
|
+
def newrelic_root
|
109
|
+
self.class.newrelic_root
|
110
|
+
end
|
111
|
+
|
112
|
+
protected
|
113
|
+
|
114
|
+
# Append framework specific environment information for uploading to
|
115
|
+
# the server for change detection. Override in subclasses
|
116
|
+
def append_environment_info; end
|
117
|
+
|
118
|
+
# Asks bundler to tell us which gemspecs are loaded in the
|
119
|
+
# current process
|
120
|
+
def bundler_gem_list
|
121
|
+
if defined?(Bundler) && Bundler.instance_eval do @load end
|
122
|
+
Bundler.load.specs.map do |spec|
|
123
|
+
version = (spec.respond_to?(:version) && spec.version)
|
124
|
+
spec.name + (version ? "(#{version})" : "")
|
125
|
+
end
|
126
|
+
else
|
127
|
+
[]
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
|
132
|
+
def initialize(local_env, config_file_override=nil)
|
133
|
+
@local_env = local_env
|
134
|
+
@instrumentation_files = []
|
135
|
+
@config_file_path = config_file_override || Agent.config[:config_path]
|
136
|
+
end
|
137
|
+
|
138
|
+
def root
|
139
|
+
'.'
|
140
|
+
end
|
141
|
+
|
142
|
+
end
|
143
|
+
include InstanceMethods
|
144
|
+
end
|
145
|
+
end
|
@@ -0,0 +1,95 @@
|
|
1
|
+
module NewRelic
|
2
|
+
class Control
|
3
|
+
# Contains methods that relate to adding and executing files that
|
4
|
+
# contain instrumentation for the Ruby Agent
|
5
|
+
module Instrumentation
|
6
|
+
|
7
|
+
# Adds a list of files in Dir.glob format
|
8
|
+
# (e.g. '/app/foo/**/*_instrumentation.rb')
|
9
|
+
# This requires the files within a rescue block, so that any
|
10
|
+
# errors within instrumentation files do not affect the overall
|
11
|
+
# agent or application in which it runs.
|
12
|
+
def load_instrumentation_files pattern
|
13
|
+
Dir.glob(pattern) do |file|
|
14
|
+
begin
|
15
|
+
require file.to_s
|
16
|
+
rescue => e
|
17
|
+
::NewRelic::Agent.logger.warn "Error loading instrumentation file '#{file}':", e
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
# Install stubs to the proper location so the app code will not fail
|
23
|
+
# if the agent is not running.
|
24
|
+
def install_shim
|
25
|
+
# Once we install instrumentation, you can't undo that by installing the shim.
|
26
|
+
raise "Cannot install the Agent shim after instrumentation has already been installed!" if @instrumented
|
27
|
+
NewRelic::Agent.agent = NewRelic::Agent::ShimAgent.instance
|
28
|
+
end
|
29
|
+
|
30
|
+
# Add instrumentation. Don't call this directly. Use NewRelic::Agent#add_instrumentation.
|
31
|
+
# This will load the file synchronously if we've already loaded the default
|
32
|
+
# instrumentation, otherwise instrumentation files specified
|
33
|
+
# here will be deferred until all instrumentation is run
|
34
|
+
#
|
35
|
+
# This happens after the agent has loaded and all dependencies
|
36
|
+
# are ready to be instrumented
|
37
|
+
def add_instrumentation pattern
|
38
|
+
if @instrumented
|
39
|
+
load_instrumentation_files pattern
|
40
|
+
else
|
41
|
+
@instrumentation_files << pattern
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
# Signals the agent that it's time to actually load the
|
46
|
+
# instrumentation files. May be overridden by subclasses
|
47
|
+
def install_instrumentation
|
48
|
+
_install_instrumentation
|
49
|
+
end
|
50
|
+
|
51
|
+
# adds samplers to the stats engine so that they run every
|
52
|
+
# minute. This is dynamically recognized by any class that
|
53
|
+
# subclasses NewRelic::Agent::Sampler
|
54
|
+
def load_samplers
|
55
|
+
agent = NewRelic::Agent.instance
|
56
|
+
NewRelic::Agent::Sampler.sampler_classes.each do | subclass |
|
57
|
+
begin
|
58
|
+
::NewRelic::Agent.logger.debug "#{subclass.name} not supported on this platform." and next if not subclass.supported_on_this_platform?
|
59
|
+
sampler = subclass.new
|
60
|
+
if subclass.use_harvest_sampler?
|
61
|
+
agent.stats_engine.add_harvest_sampler sampler
|
62
|
+
::NewRelic::Agent.logger.debug "Registered #{subclass.name} for harvest time sampling"
|
63
|
+
else
|
64
|
+
agent.stats_engine.add_sampler sampler
|
65
|
+
::NewRelic::Agent.logger.debug "Registered #{subclass.name} for periodic sampling"
|
66
|
+
end
|
67
|
+
rescue NewRelic::Agent::Sampler::Unsupported => e
|
68
|
+
::NewRelic::Agent.logger.info "#{subclass} sampler not available: #{e}"
|
69
|
+
rescue => e
|
70
|
+
::NewRelic::Agent.logger.error "Error registering sampler:", e
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
private
|
76
|
+
|
77
|
+
def _install_instrumentation
|
78
|
+
return if @instrumented
|
79
|
+
|
80
|
+
@instrumented = true
|
81
|
+
|
82
|
+
# Instrumentation for the key code points inside rails for monitoring by NewRelic.
|
83
|
+
# note this file is loaded only if the newrelic agent is enabled (through config/newrelic.yml)
|
84
|
+
instrumentation_path = File.expand_path(File.join(File.dirname(__FILE__), '..', 'agent','instrumentation'))
|
85
|
+
@instrumentation_files <<
|
86
|
+
File.join(instrumentation_path, '*.rb') <<
|
87
|
+
File.join(instrumentation_path, app.to_s, '*.rb')
|
88
|
+
@instrumentation_files.each { | pattern | load_instrumentation_files pattern }
|
89
|
+
DependencyDetection.detect!
|
90
|
+
::NewRelic::Agent.logger.info "Finished instrumentation"
|
91
|
+
end
|
92
|
+
end
|
93
|
+
include Instrumentation
|
94
|
+
end
|
95
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
module NewRelic
|
2
|
+
class Control
|
3
|
+
module Profiling
|
4
|
+
|
5
|
+
# A flag used in dev mode to indicate if profiling is available
|
6
|
+
def profiling?
|
7
|
+
@profiling
|
8
|
+
end
|
9
|
+
|
10
|
+
def profiling_available?
|
11
|
+
@profiling_available ||=
|
12
|
+
begin
|
13
|
+
require 'ruby-prof'
|
14
|
+
true
|
15
|
+
rescue LoadError; end
|
16
|
+
end
|
17
|
+
# Set the flag for capturing profiles in dev mode. If RubyProf is not
|
18
|
+
# loaded a true value is ignored.
|
19
|
+
def profiling=(val)
|
20
|
+
@profiling = profiling_available? && val && defined?(RubyProf)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
include Profiling
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,80 @@
|
|
1
|
+
module NewRelic
|
2
|
+
class Control
|
3
|
+
|
4
|
+
# Structs holding info for the remote server and proxy server
|
5
|
+
class Server < Struct.new :name, :port, :ip #:nodoc:
|
6
|
+
def to_s; "#{name}:#{port}"; end
|
7
|
+
end
|
8
|
+
|
9
|
+
ProxyServer = Struct.new :name, :port, :user, :password #:nodoc:
|
10
|
+
|
11
|
+
# Contains methods that deal with connecting to the server
|
12
|
+
module ServerMethods
|
13
|
+
|
14
|
+
def server
|
15
|
+
@remote_server ||= server_from_host(nil)
|
16
|
+
end
|
17
|
+
|
18
|
+
# the server we should contact for api requests, like uploading
|
19
|
+
# deployments and the like
|
20
|
+
def api_server
|
21
|
+
@api_server ||= NewRelic::Control::Server.new(Agent.config[:api_host], Agent.config[:api_port], nil)
|
22
|
+
end
|
23
|
+
|
24
|
+
# a new instances of the proxy server - this passes through if
|
25
|
+
# there is no proxy, otherwise it has proxy configuration
|
26
|
+
# information pulled from the config file
|
27
|
+
def proxy_server
|
28
|
+
@proxy_server ||= NewRelic::Control::ProxyServer.new(Agent.config[:proxy_host],
|
29
|
+
Agent.config[:proxy_port],
|
30
|
+
Agent.config[:proxy_user],
|
31
|
+
Agent.config[:proxy_pass])
|
32
|
+
end
|
33
|
+
|
34
|
+
# turns a hostname into an ip address and returns a
|
35
|
+
# NewRelic::Control::Server that contains the configuration info
|
36
|
+
def server_from_host(hostname=nil)
|
37
|
+
host = hostname || Agent.config[:host]
|
38
|
+
|
39
|
+
# if the host is not an IP address, turn it into one
|
40
|
+
NewRelic::Control::Server.new(host, Agent.config[:port],
|
41
|
+
convert_to_ip_address(host))
|
42
|
+
end
|
43
|
+
|
44
|
+
# Check to see if we need to look up the IP address
|
45
|
+
# If it's an IP address already, we pass it through.
|
46
|
+
# If it's nil, or localhost, we don't bother.
|
47
|
+
# Otherwise, use `resolve_ip_address` to find one
|
48
|
+
def convert_to_ip_address(host)
|
49
|
+
# here we leave it as a host name since the cert verification
|
50
|
+
# needs it in host form
|
51
|
+
return host if Agent.config[:ssl] && Agent.config[:verify_certificate]
|
52
|
+
return nil if host.nil? || host.downcase == "localhost"
|
53
|
+
ip = resolve_ip_address(host)
|
54
|
+
|
55
|
+
::NewRelic::Agent.logger.debug "Resolved #{host} to #{ip}"
|
56
|
+
ip
|
57
|
+
end
|
58
|
+
|
59
|
+
# Look up the ip address of the host using the pure ruby lookup
|
60
|
+
# to prevent blocking. If that fails, fall back to the regular
|
61
|
+
# IPSocket library. Return nil if we can't find the host ip
|
62
|
+
# address and don't have a good default.
|
63
|
+
def resolve_ip_address(host)
|
64
|
+
Resolv.getaddress(host)
|
65
|
+
rescue => e
|
66
|
+
::NewRelic::Agent.logger.warn("DNS Error caching IP address:", e)
|
67
|
+
begin
|
68
|
+
::NewRelic::Agent.logger.debug("Trying native DNS lookup since Resolv failed")
|
69
|
+
IPSocket.getaddress(host)
|
70
|
+
rescue => e
|
71
|
+
::NewRelic::Agent.logger.error("Could not look up server address: #{e}")
|
72
|
+
nil
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
include ServerMethods
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'dependency_detection'
|
2
|
+
# This installs some code to manually start the agent when a delayed
|
3
|
+
# job worker starts. It's not really instrumentation. It's more like
|
4
|
+
# a hook from DJ to the Ruby Agent so it gets loaded at the time the
|
5
|
+
# Ruby Agent initializes, which must be before the DJ worker
|
6
|
+
# initializes. Loaded from control.rb
|
7
|
+
module NewRelic
|
8
|
+
module DelayedJobInjection
|
9
|
+
extend self
|
10
|
+
attr_accessor :worker_name
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
DependencyDetection.defer do
|
15
|
+
@name = :delayed_job_injection
|
16
|
+
|
17
|
+
depends_on do
|
18
|
+
defined?(::Delayed) && defined?(::Delayed::Worker) && !NewRelic::Agent.config[:disable_dj]
|
19
|
+
end
|
20
|
+
|
21
|
+
executes do
|
22
|
+
if NewRelic::Agent.respond_to?(:logger)
|
23
|
+
::NewRelic::Agent.logger.info 'Installing DelayedJob instrumentation hooks'
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
executes do
|
28
|
+
Delayed::Worker.class_eval do
|
29
|
+
def initialize_with_new_relic(*args)
|
30
|
+
initialize_without_new_relic(*args)
|
31
|
+
worker_name = case
|
32
|
+
when self.respond_to?(:name) then self.name
|
33
|
+
when self.class.respond_to?(:default_name) then self.class.default_name
|
34
|
+
end
|
35
|
+
dispatcher_instance_id = worker_name || "host:#{Socket.gethostname} pid:#{Process.pid}" rescue "pid:#{Process.pid}"
|
36
|
+
say "New Relic Ruby Agent Monitoring DJ worker #{dispatcher_instance_id}"
|
37
|
+
NewRelic::DelayedJobInjection.worker_name = worker_name
|
38
|
+
NewRelic::Control.instance.init_plugin :dispatcher => :delayed_job, :dispatcher_instance_id => dispatcher_instance_id
|
39
|
+
end
|
40
|
+
|
41
|
+
alias initialize_without_new_relic initialize
|
42
|
+
alias initialize initialize_with_new_relic
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
# If Rails is defined, this gets called in an after_initialize hook
|
48
|
+
# see NewRelic::Control::Frameworks::Rails#init_config
|
49
|
+
unless defined?(Rails)
|
50
|
+
DependencyDetection.detect!
|
51
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
#encoding: utf-8
|
2
|
+
|
3
|
+
module NewRelic
|
4
|
+
# A singleton for shared generic helper methods
|
5
|
+
module Helper
|
6
|
+
extend self
|
7
|
+
|
8
|
+
# confirm a string is correctly encoded (in >= 1.9)
|
9
|
+
# If not force the encoding to ASCII-8BIT (binary)
|
10
|
+
if RUBY_VERSION >= '1.9'
|
11
|
+
def correctly_encoded(string)
|
12
|
+
return string unless string.is_a? String
|
13
|
+
string.valid_encoding? ? string : string.force_encoding("ASCII-8BIT")
|
14
|
+
end
|
15
|
+
else
|
16
|
+
#noop
|
17
|
+
def correctly_encoded(string)
|
18
|
+
string
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def instance_method_visibility(klass, method_name)
|
23
|
+
if klass.private_instance_methods.map{|s|s.to_sym}.include? method_name.to_sym
|
24
|
+
:private
|
25
|
+
elsif klass.protected_instance_methods.map{|s|s.to_sym}.include? method_name.to_sym
|
26
|
+
:protected
|
27
|
+
else
|
28
|
+
:public
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def time_to_millis(time)
|
33
|
+
(time.to_f * 1000).round
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
# Load the JSON library from the standard library.
|
38
|
+
def self::load_stdlib_json
|
39
|
+
# Don't even try to use 1.9.1's json.
|
40
|
+
return false if RUBY_VERSION == '1.9.1'
|
41
|
+
|
42
|
+
require 'json'
|
43
|
+
define_method( :json_dump, &::JSON.method(:dump) )
|
44
|
+
define_method( :json_load, &::JSON.method(:parse) )
|
45
|
+
|
46
|
+
return true
|
47
|
+
rescue LoadError
|
48
|
+
NewRelic::Agent.logger.debug "%p while loading JSON library: %s" % [ err, err.message ] if
|
49
|
+
defined?( NewRelic::Agent ) && NewRelic::Agent.respond_to?( :logger )
|
50
|
+
return false
|
51
|
+
end
|
52
|
+
|
53
|
+
|
54
|
+
# Load the fallback JSON library
|
55
|
+
def self::load_okjson
|
56
|
+
require 'new_relic/okjson'
|
57
|
+
define_method( :json_dump, &::NewRelic::OkJson.method(:encode) )
|
58
|
+
define_method( :json_load, &::NewRelic::OkJson.method(:decode) )
|
59
|
+
end
|
60
|
+
|
61
|
+
|
62
|
+
load_stdlib_json or load_okjson
|
63
|
+
module_function :json_dump, :json_load
|
64
|
+
|
65
|
+
end
|
66
|
+
|