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,99 @@
|
|
1
|
+
# When installed as a plugin this is loaded automatically.
|
2
|
+
#
|
3
|
+
# When installed as a gem, you need to add
|
4
|
+
# require 'new_relic/recipes'
|
5
|
+
# to your deploy.rb
|
6
|
+
#
|
7
|
+
# Defined deploy:notify_rpm which will send information about the deploy to New Relic.
|
8
|
+
# The task will run on app servers except where no_release is true.
|
9
|
+
# If it fails, it will not affect the task execution or do a rollback.
|
10
|
+
#
|
11
|
+
make_notify_task = Proc.new do
|
12
|
+
|
13
|
+
namespace :newrelic do
|
14
|
+
|
15
|
+
# on all deployments, notify New Relic
|
16
|
+
desc "Record a deployment in New Relic (newrelic.com)"
|
17
|
+
task :notice_deployment, :roles => :app, :except => {:no_release => true } do
|
18
|
+
rails_env = fetch(:newrelic_rails_env, fetch(:rails_env, "production"))
|
19
|
+
|
20
|
+
require File.join(File.dirname(__FILE__), 'command.rb')
|
21
|
+
|
22
|
+
begin
|
23
|
+
# allow overrides to be defined for revision, description, changelog, appname, and user
|
24
|
+
rev = fetch(:newrelic_revision) if exists?(:newrelic_revision)
|
25
|
+
description = fetch(:newrelic_desc) if exists?(:newrelic_desc)
|
26
|
+
changelog = fetch(:newrelic_changelog) if exists?(:newrelic_changelog)
|
27
|
+
appname = fetch(:newrelic_appname) if exists?(:newrelic_appname)
|
28
|
+
user = fetch(:newrelic_user) if exists?(:newrelic_user)
|
29
|
+
|
30
|
+
if !changelog
|
31
|
+
logger.debug "Getting log of changes for New Relic Deployment details"
|
32
|
+
from_revision = source.next_revision(current_revision)
|
33
|
+
|
34
|
+
if scm == :git
|
35
|
+
log_command = "git log --no-color --pretty=format:' * %an: %s' " +
|
36
|
+
"--abbrev-commit --no-merges #{previous_revision}..#{real_revision}"
|
37
|
+
else
|
38
|
+
log_command = "#{source.log(from_revision)}"
|
39
|
+
end
|
40
|
+
|
41
|
+
changelog = `#{log_command}`
|
42
|
+
end
|
43
|
+
|
44
|
+
if rev.nil?
|
45
|
+
rev = source.query_revision(source.head()) do |cmd|
|
46
|
+
logger.debug "executing locally: '#{cmd}'"
|
47
|
+
`#{cmd}`
|
48
|
+
end
|
49
|
+
|
50
|
+
rev = rev[0..6] if scm == :git
|
51
|
+
end
|
52
|
+
|
53
|
+
new_revision = rev
|
54
|
+
deploy_options = {
|
55
|
+
:environment => rails_env,
|
56
|
+
:revision => new_revision,
|
57
|
+
:changelog => changelog,
|
58
|
+
:description => description,
|
59
|
+
:appname => appname,
|
60
|
+
:user => user
|
61
|
+
}
|
62
|
+
|
63
|
+
logger.debug "Uploading deployment to New Relic"
|
64
|
+
deployment = NewRelic::Command::Deployments.new deploy_options
|
65
|
+
deployment.run
|
66
|
+
logger.info "Uploaded deployment information to New Relic"
|
67
|
+
|
68
|
+
rescue NewRelic::Command::CommandFailure => e
|
69
|
+
logger.info e.message
|
70
|
+
|
71
|
+
rescue Capistrano::CommandError
|
72
|
+
logger.info "Unable to notify New Relic of the deployment... skipping"
|
73
|
+
|
74
|
+
rescue => e
|
75
|
+
logger.info "Error creating New Relic deployment (#{e})\n#{e.backtrace.join("\n")}"
|
76
|
+
end
|
77
|
+
|
78
|
+
# WIP: For rollbacks, let's update the deployment we created with an indication of the failure:
|
79
|
+
# on_rollback do
|
80
|
+
# run(...)
|
81
|
+
# end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
require 'capistrano/version'
|
87
|
+
|
88
|
+
if defined?(Capistrano::Version::MAJOR) && Capistrano::Version::MAJOR < 2
|
89
|
+
STDERR.puts "Unable to load #{__FILE__}\nNew Relic Capistrano hooks require at least version 2.0.0"
|
90
|
+
else
|
91
|
+
instance = Capistrano::Configuration.instance
|
92
|
+
|
93
|
+
if instance
|
94
|
+
instance.load &make_notify_task
|
95
|
+
else
|
96
|
+
make_notify_task.call
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# Copyright: (C) 2008 David Vollbracht & Philippe Hanrigou
|
2
|
+
|
3
|
+
# This code was borrowed from the system_timer gem under the terms
|
4
|
+
# of the Ruby license. It has been slightly modified.
|
5
|
+
|
6
|
+
# Defines the constant TimerLib to the appropriate timeout library
|
7
|
+
module NewRelic #:nodoc:
|
8
|
+
|
9
|
+
begin
|
10
|
+
# Try to use the SystemTimer gem instead of Ruby's timeout library
|
11
|
+
# when running on Ruby 1.8.x. See:
|
12
|
+
# http://ph7spot.com/articles/system_timer
|
13
|
+
# We don't want to bother trying to load SystemTimer on jruby,
|
14
|
+
# ruby 1.9+ and rbx.
|
15
|
+
if !defined?(RUBY_ENGINE) || (RUBY_ENGINE == 'ruby' && RUBY_VERSION < '1.9.0')
|
16
|
+
require 'system_timer'
|
17
|
+
TimerLib = SystemTimer
|
18
|
+
else
|
19
|
+
require 'timeout'
|
20
|
+
TimerLib = Timeout
|
21
|
+
end
|
22
|
+
rescue LoadError => e
|
23
|
+
require 'timeout'
|
24
|
+
TimerLib = Timeout
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
require 'new_relic/transaction_analysis/segment_summary'
|
2
|
+
# Add these methods to TransactionSample that enable performance analysis in the user interface.
|
3
|
+
module NewRelic
|
4
|
+
module TransactionAnalysis
|
5
|
+
def database_time
|
6
|
+
time_percentage(/^Database\/.*/)
|
7
|
+
end
|
8
|
+
|
9
|
+
def render_time
|
10
|
+
time_percentage(/^View\/.*/)
|
11
|
+
end
|
12
|
+
|
13
|
+
# return the data that breaks down the performance of the transaction
|
14
|
+
# as an array of SegmentSummary objects. If a limit is specified, then
|
15
|
+
# limit the data set to the top n
|
16
|
+
def breakdown_data(limit = nil)
|
17
|
+
metric_hash = {}
|
18
|
+
each_segment_with_nest_tracking do |segment|
|
19
|
+
unless segment == root_segment
|
20
|
+
metric_name = segment.metric_name
|
21
|
+
metric_hash[metric_name] ||= SegmentSummary.new(metric_name, self)
|
22
|
+
metric_hash[metric_name] << segment
|
23
|
+
metric_hash[metric_name]
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
data = metric_hash.values
|
28
|
+
|
29
|
+
data.sort! do |x,y|
|
30
|
+
y.exclusive_time <=> x.exclusive_time
|
31
|
+
end
|
32
|
+
|
33
|
+
if limit && data.length > limit
|
34
|
+
data = data[0..limit - 1]
|
35
|
+
end
|
36
|
+
|
37
|
+
# add one last segment for the remaining time if any
|
38
|
+
remainder = duration
|
39
|
+
data.each do |segment|
|
40
|
+
remainder -= segment.exclusive_time
|
41
|
+
end
|
42
|
+
|
43
|
+
if (remainder*1000).round > 0
|
44
|
+
remainder_summary = SegmentSummary.new('Remainder', self)
|
45
|
+
remainder_summary.total_time = remainder_summary.exclusive_time = remainder
|
46
|
+
remainder_summary.call_count = 1
|
47
|
+
data << remainder_summary
|
48
|
+
end
|
49
|
+
|
50
|
+
data
|
51
|
+
end
|
52
|
+
|
53
|
+
# return an array of sql statements executed by this transaction
|
54
|
+
# each element in the array contains [sql, parent_segment_metric_name, duration]
|
55
|
+
def sql_segments(show_non_sql_segments = true)
|
56
|
+
segments = []
|
57
|
+
each_segment do |segment|
|
58
|
+
segments << segment if segment[:sql] || segment[:sql_obfuscated] || (show_non_sql_segments && segment[:key])
|
59
|
+
end
|
60
|
+
segments
|
61
|
+
end
|
62
|
+
|
63
|
+
private
|
64
|
+
def time_percentage(regex)
|
65
|
+
total = 0
|
66
|
+
each_segment do |segment|
|
67
|
+
if regex =~ segment.metric_name
|
68
|
+
total += segment.duration
|
69
|
+
end
|
70
|
+
end
|
71
|
+
fraction = 100.0 * total / duration
|
72
|
+
# percent value rounded to two digits:
|
73
|
+
return (100 * fraction).round / 100.0
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
@@ -0,0 +1,49 @@
|
|
1
|
+
module NewRelic
|
2
|
+
module TransactionAnalysis
|
3
|
+
# summarizes performance data for all calls to segments
|
4
|
+
# with the same metric_name
|
5
|
+
class SegmentSummary
|
6
|
+
attr_accessor :metric_name, :total_time, :exclusive_time, :call_count, :current_nest_count
|
7
|
+
def initialize(metric_name, sample)
|
8
|
+
@metric_name = metric_name
|
9
|
+
@total_time, @exclusive_time, @call_count = 0,0,0
|
10
|
+
@sample = sample
|
11
|
+
@current_nest_count = 0
|
12
|
+
end
|
13
|
+
|
14
|
+
def <<(segment)
|
15
|
+
if metric_name != segment.metric_name
|
16
|
+
raise ArgumentError, "Metric Name Mismatch: #{segment.metric_name} != #{metric_name}"
|
17
|
+
end
|
18
|
+
|
19
|
+
# a nested segment should use the sum of the top level totals
|
20
|
+
@total_time += segment.duration if current_nest_count == 0
|
21
|
+
@exclusive_time += segment.exclusive_duration
|
22
|
+
@call_count += 1
|
23
|
+
end
|
24
|
+
|
25
|
+
def average_time
|
26
|
+
@total_time / @call_count
|
27
|
+
end
|
28
|
+
|
29
|
+
def average_exclusive_time
|
30
|
+
@exclusive_time / @call_count
|
31
|
+
end
|
32
|
+
|
33
|
+
def exclusive_time_percentage
|
34
|
+
return 0 unless @exclusive_time && @sample.duration && @sample.duration > 0
|
35
|
+
@exclusive_time / @sample.duration
|
36
|
+
end
|
37
|
+
|
38
|
+
def total_time_percentage
|
39
|
+
return 0 unless @total_time && @sample.duration && @sample.duration > 0
|
40
|
+
@total_time / @sample.duration
|
41
|
+
end
|
42
|
+
|
43
|
+
def ui_name
|
44
|
+
return @metric_name if @metric_name == 'Remainder'
|
45
|
+
NewRelic::MetricParser::MetricParser.parse(@metric_name).developer_name
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,272 @@
|
|
1
|
+
require 'base64'
|
2
|
+
|
3
|
+
require 'new_relic/transaction_sample/segment'
|
4
|
+
require 'new_relic/transaction_sample/summary_segment'
|
5
|
+
require 'new_relic/transaction_sample/fake_segment'
|
6
|
+
require 'new_relic/transaction_sample/composite_segment'
|
7
|
+
module NewRelic
|
8
|
+
# the number of segments that need to exist before we roll them up
|
9
|
+
# into one segment with multiple executions
|
10
|
+
COLLAPSE_SEGMENTS_THRESHOLD = 2
|
11
|
+
|
12
|
+
class TransactionSample
|
13
|
+
|
14
|
+
attr_accessor(:params, :root_segment, :profile, :force_persist, :guid,
|
15
|
+
:threshold)
|
16
|
+
attr_reader :root_segment, :params, :sample_id
|
17
|
+
|
18
|
+
@@start_time = Time.now
|
19
|
+
|
20
|
+
include TransactionAnalysis
|
21
|
+
|
22
|
+
def initialize(time = Time.now.to_f, sample_id = nil)
|
23
|
+
@sample_id = sample_id || object_id
|
24
|
+
@start_time = time
|
25
|
+
@params = { :segment_count => -1, :request_params => {} }
|
26
|
+
@segment_count = -1
|
27
|
+
@root_segment = create_segment 0.0, "ROOT"
|
28
|
+
|
29
|
+
@guid = generate_guid
|
30
|
+
NewRelic::Agent::TransactionInfo.get.guid = @guid
|
31
|
+
end
|
32
|
+
|
33
|
+
def count_segments
|
34
|
+
@segment_count
|
35
|
+
end
|
36
|
+
|
37
|
+
# Truncates the transaction sample to a maximum length determined
|
38
|
+
# by the passed-in parameter. Operates recursively on the entire
|
39
|
+
# tree of transaction segments in a depth-first manner
|
40
|
+
def truncate(max)
|
41
|
+
return if @segment_count < max
|
42
|
+
@root_segment.truncate(max + 1)
|
43
|
+
@segment_count = max
|
44
|
+
end
|
45
|
+
|
46
|
+
# makes sure that the parameter cache for segment count is set to
|
47
|
+
# the correct value
|
48
|
+
def ensure_segment_count_set(count)
|
49
|
+
params[:segment_count] ||= count
|
50
|
+
end
|
51
|
+
|
52
|
+
# offset from start of app
|
53
|
+
def timestamp
|
54
|
+
@start_time - @@start_time.to_f
|
55
|
+
end
|
56
|
+
|
57
|
+
def to_json
|
58
|
+
JSON.dump(self.to_array)
|
59
|
+
end
|
60
|
+
|
61
|
+
include NewRelic::Coerce
|
62
|
+
|
63
|
+
def to_array
|
64
|
+
[ float(@start_time),
|
65
|
+
@params[:request_params],
|
66
|
+
@params[:custom_params],
|
67
|
+
@root_segment.to_array ]
|
68
|
+
end
|
69
|
+
|
70
|
+
def to_collector_array(encoder)
|
71
|
+
trace_tree = encoder.encode(self.to_array)
|
72
|
+
[ Helper.time_to_millis(@start_time),
|
73
|
+
Helper.time_to_millis(duration),
|
74
|
+
string(@params[:path]),
|
75
|
+
string(@params[:uri]),
|
76
|
+
trace_tree,
|
77
|
+
string(@guid),
|
78
|
+
nil,
|
79
|
+
!!@force_persist ]
|
80
|
+
end
|
81
|
+
|
82
|
+
def start_time
|
83
|
+
Time.at(@start_time)
|
84
|
+
end
|
85
|
+
|
86
|
+
def path_string
|
87
|
+
@root_segment.path_string
|
88
|
+
end
|
89
|
+
|
90
|
+
def create_segment(relative_timestamp, metric_name, segment_id = nil)
|
91
|
+
raise TypeError.new("Frozen Transaction Sample") if frozen?
|
92
|
+
@params[:segment_count] += 1
|
93
|
+
@segment_count += 1
|
94
|
+
NewRelic::TransactionSample::Segment.new(relative_timestamp, metric_name, segment_id)
|
95
|
+
end
|
96
|
+
|
97
|
+
def duration
|
98
|
+
root_segment.duration
|
99
|
+
end
|
100
|
+
|
101
|
+
# Iterates recursively over each segment in the entire transaction
|
102
|
+
# sample tree
|
103
|
+
def each_segment(&block)
|
104
|
+
@root_segment.each_segment(&block)
|
105
|
+
end
|
106
|
+
|
107
|
+
# Iterates recursively over each segment in the entire transaction
|
108
|
+
# sample tree while keeping track of nested segments
|
109
|
+
def each_segment_with_nest_tracking(&block)
|
110
|
+
@root_segment.each_segment_with_nest_tracking(&block)
|
111
|
+
end
|
112
|
+
|
113
|
+
def to_s_compact
|
114
|
+
@root_segment.to_s_compact
|
115
|
+
end
|
116
|
+
|
117
|
+
# Searches the tree recursively for the segment with the given
|
118
|
+
# id. note that this is an internal id, not an ActiveRecord id
|
119
|
+
def find_segment(id)
|
120
|
+
@root_segment.find_segment(id)
|
121
|
+
end
|
122
|
+
|
123
|
+
def to_s
|
124
|
+
s = "Transaction Sample collected at #{start_time}\n"
|
125
|
+
s << " {\n"
|
126
|
+
s << " Path: #{params[:path]} \n"
|
127
|
+
|
128
|
+
params.each do |k,v|
|
129
|
+
next if k == :path
|
130
|
+
s << " #{k}: " <<
|
131
|
+
case v
|
132
|
+
when Enumerable then v.map(&:to_s).sort.join("; ")
|
133
|
+
when String then v
|
134
|
+
when Float then '%6.3s' % v
|
135
|
+
when Fixnum then v.to_s
|
136
|
+
when nil then ''
|
137
|
+
else
|
138
|
+
raise "unexpected value type for #{k}: '#{v}' (#{v.class})"
|
139
|
+
end << "\n"
|
140
|
+
end
|
141
|
+
s << " }\n\n"
|
142
|
+
s << @root_segment.to_debug_str(0)
|
143
|
+
end
|
144
|
+
|
145
|
+
# return a new transaction sample that treats segments
|
146
|
+
# with the given regular expression in their name as if they
|
147
|
+
# were never called at all. This allows us to strip out segments
|
148
|
+
# from traces captured in development environment that would not
|
149
|
+
# normally show up in production (like Rails/Application Code Loading)
|
150
|
+
def omit_segments_with(regex)
|
151
|
+
regex = Regexp.new(regex)
|
152
|
+
|
153
|
+
sample = TransactionSample.new(@start_time, sample_id)
|
154
|
+
|
155
|
+
sample.params = params.dup
|
156
|
+
sample.params[:segment_count] = 0
|
157
|
+
|
158
|
+
delta = build_segment_with_omissions(sample, 0.0, @root_segment, sample.root_segment, regex)
|
159
|
+
sample.root_segment.end_trace(@root_segment.exit_timestamp - delta)
|
160
|
+
sample.profile = self.profile
|
161
|
+
sample
|
162
|
+
end
|
163
|
+
|
164
|
+
# Return a new transaction sample that can be sent to the New
|
165
|
+
# Relic service. This involves potentially one or more of the
|
166
|
+
# following options
|
167
|
+
#
|
168
|
+
# :explain_sql : run EXPLAIN on all queries whose response times equal the value for this key
|
169
|
+
# (for example :explain_sql => 2.0 would explain everything over 2 seconds. 0.0 would explain everything.)
|
170
|
+
# :keep_backtraces : keep backtraces, significantly increasing size of trace (off by default)
|
171
|
+
# :record_sql => [ :raw | :obfuscated] : copy over the sql, obfuscating if necessary
|
172
|
+
def prepare_to_send(options={})
|
173
|
+
sample = TransactionSample.new(@start_time, sample_id)
|
174
|
+
|
175
|
+
sample.params.merge! self.params
|
176
|
+
sample.guid = self.guid
|
177
|
+
sample.force_persist = self.force_persist if self.force_persist
|
178
|
+
|
179
|
+
build_segment_for_transfer(sample, @root_segment, sample.root_segment, options)
|
180
|
+
|
181
|
+
sample.root_segment.end_trace(@root_segment.exit_timestamp)
|
182
|
+
sample
|
183
|
+
end
|
184
|
+
|
185
|
+
def params=(params)
|
186
|
+
@params = params
|
187
|
+
end
|
188
|
+
|
189
|
+
private
|
190
|
+
|
191
|
+
HEX_DIGITS = (0..15).map{|i| i.to_s(16)}
|
192
|
+
# generate a random 64 bit uuid
|
193
|
+
def generate_guid
|
194
|
+
guid = ''
|
195
|
+
HEX_DIGITS.each do |a|
|
196
|
+
guid << HEX_DIGITS[rand(16)]
|
197
|
+
end
|
198
|
+
guid
|
199
|
+
end
|
200
|
+
|
201
|
+
# This is badly in need of refactoring
|
202
|
+
def build_segment_with_omissions(new_sample, time_delta, source_segment, target_segment, regex)
|
203
|
+
source_segment.called_segments.each do |source_called_segment|
|
204
|
+
# if this segment's metric name matches the given regular expression, bail
|
205
|
+
# here and increase the amount of time that we reduce the target sample with
|
206
|
+
# by this omitted segment's duration.
|
207
|
+
do_omit = regex =~ source_called_segment.metric_name
|
208
|
+
|
209
|
+
if do_omit
|
210
|
+
time_delta += source_called_segment.duration
|
211
|
+
else
|
212
|
+
target_called_segment = new_sample.create_segment(
|
213
|
+
source_called_segment.entry_timestamp - time_delta,
|
214
|
+
source_called_segment.metric_name,
|
215
|
+
source_called_segment.segment_id)
|
216
|
+
|
217
|
+
target_segment.add_called_segment target_called_segment
|
218
|
+
source_called_segment.params.each do |k,v|
|
219
|
+
target_called_segment[k]=v
|
220
|
+
end
|
221
|
+
|
222
|
+
time_delta = build_segment_with_omissions(
|
223
|
+
new_sample, time_delta, source_called_segment, target_called_segment, regex)
|
224
|
+
target_called_segment.end_trace(source_called_segment.exit_timestamp - time_delta)
|
225
|
+
end
|
226
|
+
end
|
227
|
+
|
228
|
+
return time_delta
|
229
|
+
end
|
230
|
+
|
231
|
+
# see prepare_to_send for what we do with options
|
232
|
+
#
|
233
|
+
# This is badly in need of refactoring
|
234
|
+
def build_segment_for_transfer(new_sample, source_segment, target_segment, options)
|
235
|
+
source_segment.called_segments.each do |source_called_segment|
|
236
|
+
target_called_segment = new_sample.create_segment(
|
237
|
+
source_called_segment.entry_timestamp,
|
238
|
+
source_called_segment.metric_name,
|
239
|
+
source_called_segment.segment_id)
|
240
|
+
|
241
|
+
target_segment.add_called_segment target_called_segment
|
242
|
+
source_called_segment.params.each do |k,v|
|
243
|
+
case k
|
244
|
+
when :backtrace
|
245
|
+
target_called_segment[k]=v if options[:keep_backtraces]
|
246
|
+
when :sql
|
247
|
+
# run an EXPLAIN on this sql if specified.
|
248
|
+
if options[:record_sql] && options[:record_sql] &&
|
249
|
+
options[:explain_sql] &&
|
250
|
+
source_called_segment.duration > options[:explain_sql].to_f
|
251
|
+
target_called_segment[:explain_plan] = source_called_segment.explain_sql
|
252
|
+
end
|
253
|
+
|
254
|
+
target_called_segment[:sql] = case options[:record_sql]
|
255
|
+
when :raw then v
|
256
|
+
when :obfuscated then NewRelic::Agent::Database.obfuscate_sql(v)
|
257
|
+
else raise "Invalid value for record_sql: #{options[:record_sql]}"
|
258
|
+
end.to_s if options[:record_sql]
|
259
|
+
when :connection_config
|
260
|
+
# don't copy it
|
261
|
+
else
|
262
|
+
target_called_segment[k]=v
|
263
|
+
end
|
264
|
+
end
|
265
|
+
|
266
|
+
build_segment_for_transfer(new_sample, source_called_segment, target_called_segment, options)
|
267
|
+
target_called_segment.end_trace(source_called_segment.exit_timestamp)
|
268
|
+
end
|
269
|
+
end
|
270
|
+
|
271
|
+
end
|
272
|
+
end
|