wd_newrelic_rpm 3.3.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +591 -0
- data/LICENSE +64 -0
- data/README.rdoc +179 -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/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 +467 -0
- data/lib/new_relic/agent/agent.rb +1325 -0
- data/lib/new_relic/agent/beacon_configuration.rb +121 -0
- data/lib/new_relic/agent/browser_monitoring.rb +142 -0
- data/lib/new_relic/agent/busy_calculator.rb +99 -0
- data/lib/new_relic/agent/chained_call.rb +13 -0
- data/lib/new_relic/agent/database.rb +223 -0
- data/lib/new_relic/agent/error_collector.rb +251 -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 +137 -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/controller_instrumentation.rb +443 -0
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +238 -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 +353 -0
- data/lib/new_relic/agent/instrumentation/metric_frame/pop.rb +80 -0
- data/lib/new_relic/agent/instrumentation/net.rb +29 -0
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +37 -0
- data/lib/new_relic/agent/instrumentation/queue_time.rb +210 -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 +37 -0
- data/lib/new_relic/agent/instrumentation/sinatra.rb +78 -0
- data/lib/new_relic/agent/instrumentation/sunspot.rb +29 -0
- data/lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb +21 -0
- data/lib/new_relic/agent/method_tracer.rb +528 -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_lock_sampler.rb +40 -0
- data/lib/new_relic/agent/samplers/memory_sampler.rb +143 -0
- data/lib/new_relic/agent/samplers/object_sampler.rb +26 -0
- data/lib/new_relic/agent/shim_agent.rb +29 -0
- data/lib/new_relic/agent/sql_sampler.rb +286 -0
- data/lib/new_relic/agent/stats_engine.rb +26 -0
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +123 -0
- data/lib/new_relic/agent/stats_engine/metric_stats.rb +187 -0
- data/lib/new_relic/agent/stats_engine/samplers.rb +95 -0
- data/lib/new_relic/agent/stats_engine/transactions.rb +125 -0
- data/lib/new_relic/agent/transaction_info.rb +74 -0
- data/lib/new_relic/agent/transaction_sample_builder.rb +116 -0
- data/lib/new_relic/agent/transaction_sampler.rb +468 -0
- data/lib/new_relic/agent/worker_loop.rb +89 -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 +105 -0
- data/lib/new_relic/commands/install.rb +80 -0
- data/lib/new_relic/control.rb +46 -0
- data/lib/new_relic/control/class_methods.rb +53 -0
- data/lib/new_relic/control/configuration.rb +206 -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 +31 -0
- data/lib/new_relic/control/frameworks/rails.rb +164 -0
- data/lib/new_relic/control/frameworks/rails3.rb +75 -0
- data/lib/new_relic/control/frameworks/ruby.rb +42 -0
- data/lib/new_relic/control/frameworks/sinatra.rb +20 -0
- data/lib/new_relic/control/instance_methods.rb +179 -0
- data/lib/new_relic/control/instrumentation.rb +100 -0
- data/lib/new_relic/control/logging_methods.rb +143 -0
- data/lib/new_relic/control/profiling.rb +25 -0
- data/lib/new_relic/control/server_methods.rb +114 -0
- data/lib/new_relic/data_serialization.rb +151 -0
- data/lib/new_relic/delayed_job_injection.rb +51 -0
- data/lib/new_relic/language_support.rb +73 -0
- data/lib/new_relic/local_environment.rb +428 -0
- data/lib/new_relic/merbtasks.rb +6 -0
- data/lib/new_relic/metric_data.rb +51 -0
- data/lib/new_relic/metric_spec.rb +76 -0
- data/lib/new_relic/metrics.rb +9 -0
- data/lib/new_relic/noticed_error.rb +29 -0
- data/lib/new_relic/rack/browser_monitoring.rb +76 -0
- data/lib/new_relic/rack/developer_mode.rb +268 -0
- data/lib/new_relic/recipes.rb +77 -0
- data/lib/new_relic/stats.rb +335 -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 +261 -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 +203 -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 +55 -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 +19 -0
- data/newrelic.yml +265 -0
- data/newrelic_rpm.gemspec +312 -0
- data/recipes/newrelic.rb +6 -0
- data/test/active_record_fixtures.rb +77 -0
- data/test/config/newrelic.yml +48 -0
- data/test/config/test_control.rb +48 -0
- data/test/fixtures/proc_cpuinfo.txt +575 -0
- data/test/new_relic/agent/agent/connect_test.rb +403 -0
- data/test/new_relic/agent/agent/start_test.rb +255 -0
- data/test/new_relic/agent/agent/start_worker_thread_test.rb +153 -0
- data/test/new_relic/agent/agent_test.rb +140 -0
- data/test/new_relic/agent/agent_test_controller.rb +77 -0
- data/test/new_relic/agent/agent_test_controller_test.rb +382 -0
- data/test/new_relic/agent/apdex_from_server_test.rb +9 -0
- data/test/new_relic/agent/beacon_configuration_test.rb +111 -0
- data/test/new_relic/agent/browser_monitoring_test.rb +323 -0
- data/test/new_relic/agent/busy_calculator_test.rb +81 -0
- data/test/new_relic/agent/database_test.rb +149 -0
- data/test/new_relic/agent/error_collector/notice_error_test.rb +257 -0
- data/test/new_relic/agent/error_collector_test.rb +192 -0
- data/test/new_relic/agent/instrumentation/active_record_instrumentation_test.rb +576 -0
- data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +34 -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 +50 -0
- data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +84 -0
- data/test/new_relic/agent/instrumentation/queue_time_test.rb +382 -0
- data/test/new_relic/agent/instrumentation/rack_test.rb +35 -0
- data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +184 -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 +164 -0
- data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +234 -0
- data/test/new_relic/agent/method_tracer_test.rb +386 -0
- data/test/new_relic/agent/mock_scope_listener.rb +23 -0
- data/test/new_relic/agent/rpm_agent_test.rb +149 -0
- data/test/new_relic/agent/sampler_test.rb +19 -0
- data/test/new_relic/agent/shim_agent_test.rb +20 -0
- data/test/new_relic/agent/sql_sampler_test.rb +192 -0
- data/test/new_relic/agent/stats_engine/metric_stats/harvest_test.rb +150 -0
- data/test/new_relic/agent/stats_engine/metric_stats_test.rb +82 -0
- data/test/new_relic/agent/stats_engine/samplers_test.rb +99 -0
- data/test/new_relic/agent/stats_engine_test.rb +220 -0
- data/test/new_relic/agent/transaction_info_test.rb +13 -0
- data/test/new_relic/agent/transaction_sample_builder_test.rb +219 -0
- data/test/new_relic/agent/transaction_sampler_test.rb +967 -0
- data/test/new_relic/agent/worker_loop_test.rb +66 -0
- data/test/new_relic/agent_test.rb +187 -0
- data/test/new_relic/collection_helper_test.rb +149 -0
- data/test/new_relic/command/deployments_test.rb +68 -0
- data/test/new_relic/control/class_methods_test.rb +62 -0
- data/test/new_relic/control/configuration_test.rb +84 -0
- data/test/new_relic/control/logging_methods_test.rb +185 -0
- data/test/new_relic/control_test.rb +256 -0
- data/test/new_relic/data_serialization_test.rb +208 -0
- data/test/new_relic/delayed_job_injection_test.rb +16 -0
- data/test/new_relic/local_environment_test.rb +85 -0
- data/test/new_relic/metric_data_test.rb +125 -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/rack/all_test.rb +11 -0
- data/test/new_relic/rack/browser_monitoring_test.rb +142 -0
- data/test/new_relic/rack/developer_mode_helper_test.rb +141 -0
- data/test/new_relic/rack/developer_mode_test.rb +74 -0
- data/test/new_relic/stats_test.rb +411 -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 +389 -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 +177 -0
- data/test/new_relic/version_number_test.rb +89 -0
- data/test/script/build_test_gem.sh +51 -0
- data/test/script/ci.sh +94 -0
- data/test/script/ci_bench.sh +52 -0
- data/test/test_contexts.rb +29 -0
- data/test/test_helper.rb +155 -0
- data/ui/helpers/developer_mode_helper.rb +357 -0
- data/ui/helpers/google_pie_chart.rb +48 -0
- data/ui/views/layouts/newrelic_default.rhtml +47 -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 +53 -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/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/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 +376 -0
@@ -0,0 +1,114 @@
|
|
1
|
+
DependencyDetection.defer do
|
2
|
+
@name = :rails21_view
|
3
|
+
|
4
|
+
depends_on do
|
5
|
+
!NewRelic::Control.instance['disable_view_instrumentation'] &&
|
6
|
+
defined?(ActionController) && defined?(ActionController::Base) && defined?(ActionView::PartialTemplate) && defined?(ActionView::Template) &&
|
7
|
+
defined?(Rails::VERSION::STRING) && Rails::VERSION::STRING =~ /^2\.1\./ # Rails 2.1 &&
|
8
|
+
end
|
9
|
+
|
10
|
+
executes do
|
11
|
+
NewRelic::Agent.logger.debug 'Installing Rails 2.1 View instrumentation'
|
12
|
+
end
|
13
|
+
|
14
|
+
executes do
|
15
|
+
ActionView::PartialTemplate.class_eval do
|
16
|
+
add_method_tracer :render, 'View/#{path_without_extension[%r{^(/.*/)?(.*)$},2]}.#{@view.template_format}.#{extension}/Partial'
|
17
|
+
end
|
18
|
+
# this is for template rendering, as opposed to partial rendering.
|
19
|
+
ActionView::Template.class_eval do
|
20
|
+
add_method_tracer :render, 'View/#{(path_without_extension || @view.controller.newrelic_metric_path)[%r{^(/.*/)?(.*)$},2]}.#{@view.template_format}.#{extension}/Rendering'
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
DependencyDetection.defer do
|
26
|
+
@name = :old_rails_view
|
27
|
+
|
28
|
+
depends_on do
|
29
|
+
!NewRelic::Control.instance['disable_view_instrumentation'] &&
|
30
|
+
defined?(ActionController) && defined?(ActionController::Base) &&
|
31
|
+
defined?(Rails::VERSION::STRING) && Rails::VERSION::STRING =~ /^(1\.|2\.0)/ # Rails 1.* - 2.0
|
32
|
+
end
|
33
|
+
|
34
|
+
executes do
|
35
|
+
NewRelic::Agent.logger.debug 'Installing Rails 1.* - 2.0 View instrumentation'
|
36
|
+
end
|
37
|
+
|
38
|
+
executes do
|
39
|
+
ActionController::Base.class_eval do
|
40
|
+
add_method_tracer :render, 'View/#{newrelic_metric_path}/Rendering'
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
DependencyDetection.defer do
|
47
|
+
@name = :rails23_view
|
48
|
+
|
49
|
+
depends_on do
|
50
|
+
!NewRelic::Control.instance['disable_view_instrumentation'] &&
|
51
|
+
defined?(ActionView) && defined?(ActionView::Template) && defined?(ActionView::RenderablePartial) &&
|
52
|
+
defined?(Rails::VERSION::STRING) && Rails::VERSION::STRING =~ /^2\.[23]/
|
53
|
+
end
|
54
|
+
|
55
|
+
executes do
|
56
|
+
NewRelic::Agent.logger.debug 'Installing Rails 2.2 - 2.3 View instrumentation'
|
57
|
+
end
|
58
|
+
|
59
|
+
executes do
|
60
|
+
ActionView::RenderablePartial.module_eval do
|
61
|
+
add_method_tracer :render_partial, 'View/#{path[%r{^(/.*/)?(.*)$},2]}/Partial'
|
62
|
+
end
|
63
|
+
ActionView::Template.class_eval do
|
64
|
+
add_method_tracer :render, 'View/#{path[%r{^(/.*/)?(.*)$},2]}/Rendering'
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
DependencyDetection.defer do
|
70
|
+
@name = :rails2_controller
|
71
|
+
|
72
|
+
depends_on do
|
73
|
+
defined?(ActionController) && defined?(ActionController::Base)
|
74
|
+
end
|
75
|
+
|
76
|
+
depends_on do
|
77
|
+
defined?(Rails) && Rails::VERSION::MAJOR.to_i == 2
|
78
|
+
end
|
79
|
+
|
80
|
+
executes do
|
81
|
+
NewRelic::Agent.logger.debug 'Installing Rails 2 Controller instrumentation'
|
82
|
+
end
|
83
|
+
|
84
|
+
executes do
|
85
|
+
ActionController::Base.class_eval do
|
86
|
+
include NewRelic::Agent::Instrumentation::ControllerInstrumentation
|
87
|
+
|
88
|
+
# Compare with #alias_method_chain, which is not available in
|
89
|
+
# Rails 1.1:
|
90
|
+
alias_method :perform_action_without_newrelic_trace, :perform_action
|
91
|
+
alias_method :perform_action, :perform_action_with_newrelic_trace
|
92
|
+
private :perform_action
|
93
|
+
|
94
|
+
def self.newrelic_write_attr(attr_name, value) # :nodoc:
|
95
|
+
write_inheritable_attribute(attr_name, value)
|
96
|
+
end
|
97
|
+
|
98
|
+
def self.newrelic_read_attr(attr_name) # :nodoc:
|
99
|
+
read_inheritable_attribute(attr_name)
|
100
|
+
end
|
101
|
+
|
102
|
+
# determine the path that is used in the metric name for
|
103
|
+
# the called controller action
|
104
|
+
def newrelic_metric_path(action_name_override = nil)
|
105
|
+
action_part = action_name_override || action_name
|
106
|
+
if action_name_override || self.class.action_methods.include?(action_part)
|
107
|
+
"#{self.class.controller_path}/#{action_part}"
|
108
|
+
else
|
109
|
+
"#{self.class.controller_path}/(other)"
|
110
|
+
end
|
111
|
+
end
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
DependencyDetection.defer do
|
2
|
+
@name = :rails_action_web_service
|
3
|
+
|
4
|
+
depends_on do
|
5
|
+
defined?(ActionWebService)
|
6
|
+
end
|
7
|
+
|
8
|
+
executes do
|
9
|
+
NewRelic::Agent.logger.debug 'Installing Rails ActionWebService instrumentation'
|
10
|
+
end
|
11
|
+
|
12
|
+
executes do
|
13
|
+
# NewRelic Agent instrumentation for WebServices
|
14
|
+
|
15
|
+
# Note Action Web Service is removed from default package in rails
|
16
|
+
# 2.0, this is purely here as a service to our legacy customers.
|
17
|
+
|
18
|
+
# instrumentation for Web Service martialing - XML RPC
|
19
|
+
ActionWebService::Protocol::XmlRpc::XmlRpcProtocol.class_eval do
|
20
|
+
add_method_tracer :decode_request, "WebService/Xml Rpc/XML Decode"
|
21
|
+
add_method_tracer :encode_request, "WebService/Xml Rpc/XML Encode"
|
22
|
+
add_method_tracer :decode_response, "WebService/Xml Rpc/XML Decode"
|
23
|
+
add_method_tracer :encode_response, "WebService/Xml Rpc/XML Encode"
|
24
|
+
end
|
25
|
+
|
26
|
+
# instrumentation for Web Service martialing - Soap
|
27
|
+
ActionWebService::Protocol::Soap::SoapProtocol.class_eval do
|
28
|
+
add_method_tracer :decode_request, "WebService/Soap/XML Decode"
|
29
|
+
add_method_tracer :encode_request, "WebService/Soap/XML Encode"
|
30
|
+
add_method_tracer :decode_response, "WebService/Soap/XML Decode"
|
31
|
+
add_method_tracer :encode_response, "WebService/Soap/XML Encode"
|
32
|
+
end
|
33
|
+
|
34
|
+
if defined?(ActionController) && defined?(ActionController::Base)
|
35
|
+
ActionController::Base.class_eval do
|
36
|
+
if method_defined? :perform_invocation
|
37
|
+
add_method_tracer :perform_invocation, 'WebService/#{controller_name}/#{args.first}'
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
DependencyDetection.defer do
|
2
|
+
@name = :rails2_error
|
3
|
+
|
4
|
+
depends_on do
|
5
|
+
defined?(ActionController) && defined?(ActionController::Base)
|
6
|
+
end
|
7
|
+
|
8
|
+
depends_on do
|
9
|
+
defined?(::Rails) && ::Rails::VERSION::MAJOR.to_i == 2
|
10
|
+
end
|
11
|
+
|
12
|
+
executes do
|
13
|
+
NewRelic::Agent.logger.debug 'Installing Rails 2 Error instrumentation'
|
14
|
+
end
|
15
|
+
|
16
|
+
executes do
|
17
|
+
|
18
|
+
ActionController::Base.class_eval do
|
19
|
+
|
20
|
+
# Make a note of an exception associated with the currently executing
|
21
|
+
# controller action. Note that this used to be available on Object
|
22
|
+
# but we replaced that global method with NewRelic::Agent#notice_error.
|
23
|
+
# Use that one outside of controller actions.
|
24
|
+
def newrelic_notice_error(exception, custom_params = {})
|
25
|
+
NewRelic::Agent::Instrumentation::MetricFrame.notice_error exception, :custom_params => custom_params, :request => request
|
26
|
+
end
|
27
|
+
|
28
|
+
def rescue_action_with_newrelic_trace(exception)
|
29
|
+
rescue_action_without_newrelic_trace exception
|
30
|
+
NewRelic::Agent::Instrumentation::MetricFrame.notice_error exception, :request => request
|
31
|
+
end
|
32
|
+
|
33
|
+
# Compare with #alias_method_chain, which is not available in
|
34
|
+
# Rails 1.1:
|
35
|
+
alias_method :rescue_action_without_newrelic_trace, :rescue_action
|
36
|
+
alias_method :rescue_action, :rescue_action_with_newrelic_trace
|
37
|
+
protected :rescue_action
|
38
|
+
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
@@ -0,0 +1,180 @@
|
|
1
|
+
module NewRelic
|
2
|
+
module Agent
|
3
|
+
module Instrumentation
|
4
|
+
module Rails3
|
5
|
+
module ActionController
|
6
|
+
def self.newrelic_write_attr(attr_name, value) # :nodoc:
|
7
|
+
write_inheritable_attribute(attr_name, value)
|
8
|
+
end
|
9
|
+
|
10
|
+
def self.newrelic_read_attr(attr_name) # :nodoc:
|
11
|
+
read_inheritable_attribute(attr_name)
|
12
|
+
end
|
13
|
+
|
14
|
+
# determine the path that is used in the metric name for
|
15
|
+
# the called controller action
|
16
|
+
def newrelic_metric_path(action_name_override = nil)
|
17
|
+
action_part = action_name_override || action_name
|
18
|
+
if action_name_override || self.class.action_methods.include?(action_part)
|
19
|
+
"#{self.class.controller_path}/#{action_part}"
|
20
|
+
else
|
21
|
+
"#{self.class.controller_path}/(other)"
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
def process_action(*args)
|
26
|
+
# skip instrumentation if we are in an ignored action
|
27
|
+
if _is_filtered?('do_not_trace')
|
28
|
+
NewRelic::Agent.disable_all_tracing do
|
29
|
+
return super
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
perform_action_with_newrelic_trace(:category => :controller, :name => self.action_name, :path => newrelic_metric_path, :params => request.filtered_parameters, :class_name => self.class.name) do
|
34
|
+
super
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
end
|
39
|
+
|
40
|
+
module ActionView
|
41
|
+
module NewRelic
|
42
|
+
extend self
|
43
|
+
def template_metric(identifier, options = {})
|
44
|
+
if options[:file]
|
45
|
+
"file"
|
46
|
+
elsif identifier.nil?
|
47
|
+
"(unknown)"
|
48
|
+
elsif identifier.include? '/' # this is a filepath
|
49
|
+
identifier.split('/')[-2..-1].join('/')
|
50
|
+
else
|
51
|
+
identifier
|
52
|
+
end
|
53
|
+
end
|
54
|
+
def render_type(file_path)
|
55
|
+
file = File.basename(file_path)
|
56
|
+
if file.starts_with?('_')
|
57
|
+
return 'Partial'
|
58
|
+
else
|
59
|
+
return 'Rendering'
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
DependencyDetection.defer do
|
70
|
+
@name = :rails3_controller
|
71
|
+
|
72
|
+
depends_on do
|
73
|
+
defined?(::Rails) && ::Rails::VERSION::MAJOR.to_i == 3
|
74
|
+
end
|
75
|
+
|
76
|
+
depends_on do
|
77
|
+
defined?(ActionController) && defined?(ActionController::Base)
|
78
|
+
end
|
79
|
+
|
80
|
+
executes do
|
81
|
+
NewRelic::Agent.logger.debug 'Installing Rails 3 Controller instrumentation'
|
82
|
+
end
|
83
|
+
|
84
|
+
executes do
|
85
|
+
class ActionController::Base
|
86
|
+
include NewRelic::Agent::Instrumentation::ControllerInstrumentation
|
87
|
+
include NewRelic::Agent::Instrumentation::Rails3::ActionController
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
91
|
+
DependencyDetection.defer do
|
92
|
+
@name = :rails30_view
|
93
|
+
|
94
|
+
depends_on do
|
95
|
+
defined?(::Rails) && ::Rails::VERSION::MAJOR.to_i == 3 && ::Rails::VERSION::MINOR.to_i == 0
|
96
|
+
end
|
97
|
+
|
98
|
+
depends_on do
|
99
|
+
!NewRelic::Control.instance['disable_view_instrumentation']
|
100
|
+
end
|
101
|
+
|
102
|
+
executes do
|
103
|
+
NewRelic::Agent.logger.debug 'Installing Rails 3.0 view instrumentation'
|
104
|
+
end
|
105
|
+
|
106
|
+
executes do
|
107
|
+
ActionView::Template.class_eval do
|
108
|
+
include NewRelic::Agent::MethodTracer
|
109
|
+
def render_with_newrelic(*args, &block)
|
110
|
+
options = if @virtual_path && @virtual_path.starts_with?('/') # file render
|
111
|
+
{:file => true }
|
112
|
+
else
|
113
|
+
{}
|
114
|
+
end
|
115
|
+
str = "View/#{NewRelic::Agent::Instrumentation::Rails3::ActionView::NewRelic.template_metric(@identifier, options)}/#{NewRelic::Agent::Instrumentation::Rails3::ActionView::NewRelic.render_type(@identifier)}"
|
116
|
+
trace_execution_scoped str do
|
117
|
+
render_without_newrelic(*args, &block)
|
118
|
+
end
|
119
|
+
end
|
120
|
+
|
121
|
+
alias_method :render_without_newrelic, :render
|
122
|
+
alias_method :render, :render_with_newrelic
|
123
|
+
|
124
|
+
end
|
125
|
+
end
|
126
|
+
end
|
127
|
+
|
128
|
+
DependencyDetection.defer do
|
129
|
+
@name = :rails31_view
|
130
|
+
|
131
|
+
# We can't be sure that this wil work with future versions of Rails 3.
|
132
|
+
# Currently enabled for Rails 3.1 and 3.2
|
133
|
+
depends_on do
|
134
|
+
defined?(::Rails) && ::Rails::VERSION::MAJOR.to_i == 3 && ([1,2].member?(::Rails::VERSION::MINOR.to_i))
|
135
|
+
end
|
136
|
+
|
137
|
+
depends_on do
|
138
|
+
!NewRelic::Control.instance['disable_view_instrumentation']
|
139
|
+
end
|
140
|
+
|
141
|
+
executes do
|
142
|
+
NewRelic::Agent.logger.debug 'Installing Rails 3.1/3.2 view instrumentation'
|
143
|
+
end
|
144
|
+
|
145
|
+
executes do
|
146
|
+
ActionView::TemplateRenderer.class_eval do
|
147
|
+
include NewRelic::Agent::MethodTracer
|
148
|
+
# namespaced helper methods
|
149
|
+
|
150
|
+
def render_with_newrelic(context, options)
|
151
|
+
# This is needed for rails 3.2 compatibility
|
152
|
+
@details = extract_details(options) if respond_to? :extract_details
|
153
|
+
identifier = determine_template(options) ? determine_template(options).identifier : nil
|
154
|
+
str = "View/#{NewRelic::Agent::Instrumentation::Rails3::ActionView::NewRelic.template_metric(identifier, options)}/Rendering"
|
155
|
+
trace_execution_scoped str do
|
156
|
+
render_without_newrelic(context, options)
|
157
|
+
end
|
158
|
+
end
|
159
|
+
|
160
|
+
alias_method :render_without_newrelic, :render
|
161
|
+
alias_method :render, :render_with_newrelic
|
162
|
+
end
|
163
|
+
|
164
|
+
ActionView::PartialRenderer.class_eval do
|
165
|
+
include NewRelic::Agent::MethodTracer
|
166
|
+
|
167
|
+
def render_with_newrelic(*args, &block)
|
168
|
+
setup(*args, &block)
|
169
|
+
identifier = find_partial ? find_partial.identifier : nil
|
170
|
+
str = "View/#{NewRelic::Agent::Instrumentation::Rails3::ActionView::NewRelic.template_metric(identifier)}/Partial"
|
171
|
+
trace_execution_scoped str do
|
172
|
+
render_without_newrelic(*args, &block)
|
173
|
+
end
|
174
|
+
end
|
175
|
+
|
176
|
+
alias_method :render_without_newrelic, :render
|
177
|
+
alias_method :render, :render_with_newrelic
|
178
|
+
end
|
179
|
+
end
|
180
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
module NewRelic
|
2
|
+
module Agent
|
3
|
+
module Instrumentation
|
4
|
+
module Rails3
|
5
|
+
module Errors
|
6
|
+
def newrelic_notice_error(exception, custom_params = {})
|
7
|
+
filtered_params = (respond_to? :filter_parameters) ? filter_parameters(params) : params
|
8
|
+
filtered_params.merge!(custom_params)
|
9
|
+
NewRelic::Agent.agent.error_collector.notice_error(exception, request, newrelic_metric_path, filtered_params)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
DependencyDetection.defer do
|
18
|
+
@name = :rails3_error
|
19
|
+
|
20
|
+
depends_on do
|
21
|
+
defined?(::Rails) && ::Rails.respond_to?(:version) && ::Rails.version.to_i == 3
|
22
|
+
end
|
23
|
+
|
24
|
+
depends_on do
|
25
|
+
defined?(ActionController) && defined?(ActionController::Base)
|
26
|
+
end
|
27
|
+
|
28
|
+
executes do
|
29
|
+
NewRelic::Agent.logger.debug 'Installing Rails3 Error instrumentation'
|
30
|
+
end
|
31
|
+
|
32
|
+
executes do
|
33
|
+
class ActionController::Base
|
34
|
+
include NewRelic::Agent::Instrumentation::Rails3::Errors
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -0,0 +1,78 @@
|
|
1
|
+
require 'new_relic/agent/instrumentation/controller_instrumentation'
|
2
|
+
|
3
|
+
DependencyDetection.defer do
|
4
|
+
depends_on do
|
5
|
+
defined?(::Sinatra) && defined?(::Sinatra::Base) && !defined?(::WeaselDiesel) &&
|
6
|
+
Sinatra::Base.private_method_defined?(:dispatch!)
|
7
|
+
end
|
8
|
+
|
9
|
+
executes do
|
10
|
+
NewRelic::Agent.logger.debug 'Installing Sinatra instrumentation'
|
11
|
+
end
|
12
|
+
|
13
|
+
executes do
|
14
|
+
::Sinatra::Base.class_eval do
|
15
|
+
include NewRelic::Agent::Instrumentation::Sinatra
|
16
|
+
alias dispatch_without_newrelic dispatch!
|
17
|
+
alias dispatch! dispatch_with_newrelic
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
|
23
|
+
module NewRelic
|
24
|
+
module Agent
|
25
|
+
module Instrumentation
|
26
|
+
# NewRelic instrumentation for Sinatra applications. Sinatra actions will
|
27
|
+
# appear in the UI similar to controller actions, and have breakdown charts
|
28
|
+
# and transaction traces.
|
29
|
+
#
|
30
|
+
# The actions in the UI will correspond to the pattern expression used
|
31
|
+
# to match them. HTTP operations are not distinguished. Multiple matches
|
32
|
+
# will all be tracked as separate actions.
|
33
|
+
module Sinatra
|
34
|
+
include ::NewRelic::Agent::Instrumentation::ControllerInstrumentation
|
35
|
+
|
36
|
+
def dispatch_with_newrelic
|
37
|
+
txn_name = NewRelic.transaction_name(self.class.routes, @request) do |pattern, keys, conditions|
|
38
|
+
process_route(pattern, keys, conditions) do
|
39
|
+
pattern.source
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
perform_action_with_newrelic_trace(:category => :sinatra,
|
44
|
+
:name => txn_name,
|
45
|
+
:params => @request.params) do
|
46
|
+
dispatch_without_newrelic
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
module NewRelic
|
51
|
+
extend self
|
52
|
+
|
53
|
+
def http_verb(request)
|
54
|
+
request.request_method if request.respond_to?(:request_method)
|
55
|
+
end
|
56
|
+
|
57
|
+
def transaction_name(routes, request)
|
58
|
+
name = '(unknown)'
|
59
|
+
verb = http_verb(request)
|
60
|
+
|
61
|
+
Array(routes[verb]).each do |pattern, keys, conditions, block|
|
62
|
+
if pattern = yield(pattern, keys, conditions)
|
63
|
+
name = pattern
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
name.gsub!(%r{^[/^]*(.*?)[/\$\?]*$}, '\1')
|
68
|
+
if verb
|
69
|
+
name = verb + ' ' + name
|
70
|
+
end
|
71
|
+
|
72
|
+
name
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|