wd_newrelic_rpm 3.3.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (264) hide show
  1. data/CHANGELOG +591 -0
  2. data/LICENSE +64 -0
  3. data/README.rdoc +179 -0
  4. data/bin/mongrel_rpm +33 -0
  5. data/bin/newrelic +13 -0
  6. data/bin/newrelic_cmd +5 -0
  7. data/cert/cacert.pem +118 -0
  8. data/cert/oldsite.pem +28 -0
  9. data/cert/site.pem +27 -0
  10. data/install.rb +9 -0
  11. data/lib/conditional_vendored_dependency_detection.rb +3 -0
  12. data/lib/conditional_vendored_metric_parser.rb +5 -0
  13. data/lib/new_relic/agent.rb +467 -0
  14. data/lib/new_relic/agent/agent.rb +1325 -0
  15. data/lib/new_relic/agent/beacon_configuration.rb +121 -0
  16. data/lib/new_relic/agent/browser_monitoring.rb +142 -0
  17. data/lib/new_relic/agent/busy_calculator.rb +99 -0
  18. data/lib/new_relic/agent/chained_call.rb +13 -0
  19. data/lib/new_relic/agent/database.rb +223 -0
  20. data/lib/new_relic/agent/error_collector.rb +251 -0
  21. data/lib/new_relic/agent/instrumentation.rb +9 -0
  22. data/lib/new_relic/agent/instrumentation/active_merchant.rb +29 -0
  23. data/lib/new_relic/agent/instrumentation/active_record.rb +137 -0
  24. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +68 -0
  25. data/lib/new_relic/agent/instrumentation/authlogic.rb +19 -0
  26. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +443 -0
  27. data/lib/new_relic/agent/instrumentation/data_mapper.rb +238 -0
  28. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +52 -0
  29. data/lib/new_relic/agent/instrumentation/memcache.rb +80 -0
  30. data/lib/new_relic/agent/instrumentation/merb/controller.rb +41 -0
  31. data/lib/new_relic/agent/instrumentation/merb/errors.rb +29 -0
  32. data/lib/new_relic/agent/instrumentation/metric_frame.rb +353 -0
  33. data/lib/new_relic/agent/instrumentation/metric_frame/pop.rb +80 -0
  34. data/lib/new_relic/agent/instrumentation/net.rb +29 -0
  35. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +37 -0
  36. data/lib/new_relic/agent/instrumentation/queue_time.rb +210 -0
  37. data/lib/new_relic/agent/instrumentation/rack.rb +98 -0
  38. data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +114 -0
  39. data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +42 -0
  40. data/lib/new_relic/agent/instrumentation/rails/errors.rb +42 -0
  41. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +180 -0
  42. data/lib/new_relic/agent/instrumentation/rails3/errors.rb +37 -0
  43. data/lib/new_relic/agent/instrumentation/sinatra.rb +78 -0
  44. data/lib/new_relic/agent/instrumentation/sunspot.rb +29 -0
  45. data/lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb +21 -0
  46. data/lib/new_relic/agent/method_tracer.rb +528 -0
  47. data/lib/new_relic/agent/sampler.rb +50 -0
  48. data/lib/new_relic/agent/samplers/cpu_sampler.rb +58 -0
  49. data/lib/new_relic/agent/samplers/delayed_job_lock_sampler.rb +40 -0
  50. data/lib/new_relic/agent/samplers/memory_sampler.rb +143 -0
  51. data/lib/new_relic/agent/samplers/object_sampler.rb +26 -0
  52. data/lib/new_relic/agent/shim_agent.rb +29 -0
  53. data/lib/new_relic/agent/sql_sampler.rb +286 -0
  54. data/lib/new_relic/agent/stats_engine.rb +26 -0
  55. data/lib/new_relic/agent/stats_engine/gc_profiler.rb +123 -0
  56. data/lib/new_relic/agent/stats_engine/metric_stats.rb +187 -0
  57. data/lib/new_relic/agent/stats_engine/samplers.rb +95 -0
  58. data/lib/new_relic/agent/stats_engine/transactions.rb +125 -0
  59. data/lib/new_relic/agent/transaction_info.rb +74 -0
  60. data/lib/new_relic/agent/transaction_sample_builder.rb +116 -0
  61. data/lib/new_relic/agent/transaction_sampler.rb +468 -0
  62. data/lib/new_relic/agent/worker_loop.rb +89 -0
  63. data/lib/new_relic/collection_helper.rb +77 -0
  64. data/lib/new_relic/command.rb +85 -0
  65. data/lib/new_relic/commands/deployments.rb +105 -0
  66. data/lib/new_relic/commands/install.rb +80 -0
  67. data/lib/new_relic/control.rb +46 -0
  68. data/lib/new_relic/control/class_methods.rb +53 -0
  69. data/lib/new_relic/control/configuration.rb +206 -0
  70. data/lib/new_relic/control/frameworks.rb +10 -0
  71. data/lib/new_relic/control/frameworks/external.rb +16 -0
  72. data/lib/new_relic/control/frameworks/merb.rb +31 -0
  73. data/lib/new_relic/control/frameworks/rails.rb +164 -0
  74. data/lib/new_relic/control/frameworks/rails3.rb +75 -0
  75. data/lib/new_relic/control/frameworks/ruby.rb +42 -0
  76. data/lib/new_relic/control/frameworks/sinatra.rb +20 -0
  77. data/lib/new_relic/control/instance_methods.rb +179 -0
  78. data/lib/new_relic/control/instrumentation.rb +100 -0
  79. data/lib/new_relic/control/logging_methods.rb +143 -0
  80. data/lib/new_relic/control/profiling.rb +25 -0
  81. data/lib/new_relic/control/server_methods.rb +114 -0
  82. data/lib/new_relic/data_serialization.rb +151 -0
  83. data/lib/new_relic/delayed_job_injection.rb +51 -0
  84. data/lib/new_relic/language_support.rb +73 -0
  85. data/lib/new_relic/local_environment.rb +428 -0
  86. data/lib/new_relic/merbtasks.rb +6 -0
  87. data/lib/new_relic/metric_data.rb +51 -0
  88. data/lib/new_relic/metric_spec.rb +76 -0
  89. data/lib/new_relic/metrics.rb +9 -0
  90. data/lib/new_relic/noticed_error.rb +29 -0
  91. data/lib/new_relic/rack/browser_monitoring.rb +76 -0
  92. data/lib/new_relic/rack/developer_mode.rb +268 -0
  93. data/lib/new_relic/recipes.rb +77 -0
  94. data/lib/new_relic/stats.rb +335 -0
  95. data/lib/new_relic/timer_lib.rb +27 -0
  96. data/lib/new_relic/transaction_analysis.rb +77 -0
  97. data/lib/new_relic/transaction_analysis/segment_summary.rb +49 -0
  98. data/lib/new_relic/transaction_sample.rb +261 -0
  99. data/lib/new_relic/transaction_sample/composite_segment.rb +27 -0
  100. data/lib/new_relic/transaction_sample/fake_segment.rb +9 -0
  101. data/lib/new_relic/transaction_sample/segment.rb +203 -0
  102. data/lib/new_relic/transaction_sample/summary_segment.rb +21 -0
  103. data/lib/new_relic/url_rule.rb +14 -0
  104. data/lib/new_relic/version.rb +55 -0
  105. data/lib/newrelic_rpm.rb +49 -0
  106. data/lib/tasks/all.rb +4 -0
  107. data/lib/tasks/install.rake +7 -0
  108. data/lib/tasks/tests.rake +19 -0
  109. data/newrelic.yml +265 -0
  110. data/newrelic_rpm.gemspec +312 -0
  111. data/recipes/newrelic.rb +6 -0
  112. data/test/active_record_fixtures.rb +77 -0
  113. data/test/config/newrelic.yml +48 -0
  114. data/test/config/test_control.rb +48 -0
  115. data/test/fixtures/proc_cpuinfo.txt +575 -0
  116. data/test/new_relic/agent/agent/connect_test.rb +403 -0
  117. data/test/new_relic/agent/agent/start_test.rb +255 -0
  118. data/test/new_relic/agent/agent/start_worker_thread_test.rb +153 -0
  119. data/test/new_relic/agent/agent_test.rb +140 -0
  120. data/test/new_relic/agent/agent_test_controller.rb +77 -0
  121. data/test/new_relic/agent/agent_test_controller_test.rb +382 -0
  122. data/test/new_relic/agent/apdex_from_server_test.rb +9 -0
  123. data/test/new_relic/agent/beacon_configuration_test.rb +111 -0
  124. data/test/new_relic/agent/browser_monitoring_test.rb +323 -0
  125. data/test/new_relic/agent/busy_calculator_test.rb +81 -0
  126. data/test/new_relic/agent/database_test.rb +149 -0
  127. data/test/new_relic/agent/error_collector/notice_error_test.rb +257 -0
  128. data/test/new_relic/agent/error_collector_test.rb +192 -0
  129. data/test/new_relic/agent/instrumentation/active_record_instrumentation_test.rb +576 -0
  130. data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +34 -0
  131. data/test/new_relic/agent/instrumentation/instrumentation_test.rb +11 -0
  132. data/test/new_relic/agent/instrumentation/metric_frame/pop_test.rb +171 -0
  133. data/test/new_relic/agent/instrumentation/metric_frame_test.rb +50 -0
  134. data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +84 -0
  135. data/test/new_relic/agent/instrumentation/queue_time_test.rb +382 -0
  136. data/test/new_relic/agent/instrumentation/rack_test.rb +35 -0
  137. data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +184 -0
  138. data/test/new_relic/agent/memcache_instrumentation_test.rb +143 -0
  139. data/test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb +164 -0
  140. data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +234 -0
  141. data/test/new_relic/agent/method_tracer_test.rb +386 -0
  142. data/test/new_relic/agent/mock_scope_listener.rb +23 -0
  143. data/test/new_relic/agent/rpm_agent_test.rb +149 -0
  144. data/test/new_relic/agent/sampler_test.rb +19 -0
  145. data/test/new_relic/agent/shim_agent_test.rb +20 -0
  146. data/test/new_relic/agent/sql_sampler_test.rb +192 -0
  147. data/test/new_relic/agent/stats_engine/metric_stats/harvest_test.rb +150 -0
  148. data/test/new_relic/agent/stats_engine/metric_stats_test.rb +82 -0
  149. data/test/new_relic/agent/stats_engine/samplers_test.rb +99 -0
  150. data/test/new_relic/agent/stats_engine_test.rb +220 -0
  151. data/test/new_relic/agent/transaction_info_test.rb +13 -0
  152. data/test/new_relic/agent/transaction_sample_builder_test.rb +219 -0
  153. data/test/new_relic/agent/transaction_sampler_test.rb +967 -0
  154. data/test/new_relic/agent/worker_loop_test.rb +66 -0
  155. data/test/new_relic/agent_test.rb +187 -0
  156. data/test/new_relic/collection_helper_test.rb +149 -0
  157. data/test/new_relic/command/deployments_test.rb +68 -0
  158. data/test/new_relic/control/class_methods_test.rb +62 -0
  159. data/test/new_relic/control/configuration_test.rb +84 -0
  160. data/test/new_relic/control/logging_methods_test.rb +185 -0
  161. data/test/new_relic/control_test.rb +256 -0
  162. data/test/new_relic/data_serialization_test.rb +208 -0
  163. data/test/new_relic/delayed_job_injection_test.rb +16 -0
  164. data/test/new_relic/local_environment_test.rb +85 -0
  165. data/test/new_relic/metric_data_test.rb +125 -0
  166. data/test/new_relic/metric_parser/metric_parser_test.rb +11 -0
  167. data/test/new_relic/metric_spec_test.rb +95 -0
  168. data/test/new_relic/rack/all_test.rb +11 -0
  169. data/test/new_relic/rack/browser_monitoring_test.rb +142 -0
  170. data/test/new_relic/rack/developer_mode_helper_test.rb +141 -0
  171. data/test/new_relic/rack/developer_mode_test.rb +74 -0
  172. data/test/new_relic/stats_test.rb +411 -0
  173. data/test/new_relic/transaction_analysis/segment_summary_test.rb +91 -0
  174. data/test/new_relic/transaction_analysis_test.rb +121 -0
  175. data/test/new_relic/transaction_sample/composite_segment_test.rb +35 -0
  176. data/test/new_relic/transaction_sample/fake_segment_test.rb +17 -0
  177. data/test/new_relic/transaction_sample/segment_test.rb +389 -0
  178. data/test/new_relic/transaction_sample/summary_segment_test.rb +31 -0
  179. data/test/new_relic/transaction_sample_subtest_test.rb +56 -0
  180. data/test/new_relic/transaction_sample_test.rb +177 -0
  181. data/test/new_relic/version_number_test.rb +89 -0
  182. data/test/script/build_test_gem.sh +51 -0
  183. data/test/script/ci.sh +94 -0
  184. data/test/script/ci_bench.sh +52 -0
  185. data/test/test_contexts.rb +29 -0
  186. data/test/test_helper.rb +155 -0
  187. data/ui/helpers/developer_mode_helper.rb +357 -0
  188. data/ui/helpers/google_pie_chart.rb +48 -0
  189. data/ui/views/layouts/newrelic_default.rhtml +47 -0
  190. data/ui/views/newrelic/_explain_plans.rhtml +27 -0
  191. data/ui/views/newrelic/_sample.rhtml +20 -0
  192. data/ui/views/newrelic/_segment.rhtml +28 -0
  193. data/ui/views/newrelic/_segment_limit_message.rhtml +1 -0
  194. data/ui/views/newrelic/_segment_row.rhtml +12 -0
  195. data/ui/views/newrelic/_show_sample_detail.rhtml +24 -0
  196. data/ui/views/newrelic/_show_sample_sql.rhtml +24 -0
  197. data/ui/views/newrelic/_show_sample_summary.rhtml +3 -0
  198. data/ui/views/newrelic/_sql_row.rhtml +16 -0
  199. data/ui/views/newrelic/_stack_trace.rhtml +15 -0
  200. data/ui/views/newrelic/_table.rhtml +12 -0
  201. data/ui/views/newrelic/explain_sql.rhtml +43 -0
  202. data/ui/views/newrelic/file/images/arrow-close.png +0 -0
  203. data/ui/views/newrelic/file/images/arrow-open.png +0 -0
  204. data/ui/views/newrelic/file/images/blue_bar.gif +0 -0
  205. data/ui/views/newrelic/file/images/file_icon.png +0 -0
  206. data/ui/views/newrelic/file/images/gray_bar.gif +0 -0
  207. data/ui/views/newrelic/file/images/new-relic-rpm-desktop.gif +0 -0
  208. data/ui/views/newrelic/file/images/new_relic_rpm_desktop.gif +0 -0
  209. data/ui/views/newrelic/file/images/textmate.png +0 -0
  210. data/ui/views/newrelic/file/javascript/jquery-1.4.2.js +6240 -0
  211. data/ui/views/newrelic/file/javascript/transaction_sample.js +120 -0
  212. data/ui/views/newrelic/file/stylesheets/style.css +490 -0
  213. data/ui/views/newrelic/index.rhtml +71 -0
  214. data/ui/views/newrelic/sample_not_found.rhtml +2 -0
  215. data/ui/views/newrelic/show_sample.rhtml +80 -0
  216. data/ui/views/newrelic/show_source.rhtml +3 -0
  217. data/ui/views/newrelic/threads.rhtml +53 -0
  218. data/vendor/gems/dependency_detection-0.0.1.build/LICENSE +5 -0
  219. data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection.rb +67 -0
  220. data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection/version.rb +3 -0
  221. data/vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb +1 -0
  222. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser.rb +64 -0
  223. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/action_mailer.rb +14 -0
  224. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_merchant.rb +31 -0
  225. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_record.rb +33 -0
  226. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/apdex.rb +89 -0
  227. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/background_transaction.rb +7 -0
  228. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/client.rb +46 -0
  229. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller.rb +67 -0
  230. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_cpu.rb +43 -0
  231. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_ext.rb +17 -0
  232. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database.rb +48 -0
  233. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database_pool.rb +24 -0
  234. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net.rb +28 -0
  235. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net_parser.rb +17 -0
  236. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/errors.rb +11 -0
  237. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/external.rb +55 -0
  238. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/frontend.rb +40 -0
  239. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/gc.rb +20 -0
  240. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/hibernate_session.rb +7 -0
  241. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java.rb +31 -0
  242. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java_parser.rb +17 -0
  243. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp.rb +34 -0
  244. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp_tag.rb +7 -0
  245. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/mem_cache.rb +55 -0
  246. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/metric_parser.rb +135 -0
  247. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/orm.rb +27 -0
  248. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/other_transaction.rb +40 -0
  249. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet.rb +7 -0
  250. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_context_listener.rb +7 -0
  251. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_filter.rb +7 -0
  252. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr.rb +27 -0
  253. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr_request_handler.rb +15 -0
  254. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring.rb +54 -0
  255. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_controller.rb +6 -0
  256. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_view.rb +6 -0
  257. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_action.rb +20 -0
  258. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_result.rb +20 -0
  259. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/version.rb +5 -0
  260. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/view.rb +70 -0
  261. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_frontend.rb +18 -0
  262. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_service.rb +14 -0
  263. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_transaction.rb +133 -0
  264. metadata +376 -0
@@ -0,0 +1,19 @@
1
+ DependencyDetection.defer do
2
+ @name = :authlogic
3
+
4
+ depends_on do
5
+ defined?(AuthLogic) &&
6
+ defined?(AuthLogic::Session) &&
7
+ defined?(AuthLogic::Session::Base)
8
+ end
9
+
10
+ executes do
11
+ NewRelic::Agent.logger.debug 'Installing AuthLogic instrumentation'
12
+ end
13
+
14
+ executes do
15
+ AuthLogic::Session::Base.class_eval do
16
+ add_method_tracer :find, 'Custom/Authlogic/find'
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,443 @@
1
+ require 'new_relic/agent/instrumentation/metric_frame'
2
+ require 'new_relic/agent/instrumentation/queue_time'
3
+ module NewRelic
4
+ module Agent
5
+ module Instrumentation
6
+ # == NewRelic instrumentation for controller actions and tasks
7
+ #
8
+ # This instrumentation is applied to the action controller to collect
9
+ # metrics for every web request.
10
+ #
11
+ # It can also be used to capture performance information for
12
+ # background tasks and other non-web transactions, including
13
+ # detailed transaction traces and traced errors.
14
+ #
15
+ # For details on how to instrument background tasks see
16
+ # ClassMethods#add_transaction_tracer and
17
+ # #perform_action_with_newrelic_trace
18
+ #
19
+ module ControllerInstrumentation
20
+
21
+ def self.included(clazz) # :nodoc:
22
+ clazz.extend(ClassMethods)
23
+ end
24
+
25
+ # This module is for importing stubs when the agent is disabled
26
+ module ClassMethodsShim # :nodoc:
27
+ def newrelic_ignore(*args); end
28
+ def newrelic_ignore_apdex(*args); end
29
+ end
30
+
31
+ module Shim # :nodoc:
32
+ def self.included(clazz)
33
+ clazz.extend(ClassMethodsShim)
34
+ end
35
+ def newrelic_notice_error(*args); end
36
+ def new_relic_trace_controller_action(*args); yield; end
37
+ def newrelic_metric_path; end
38
+ def perform_action_with_newrelic_trace(*args); yield; end
39
+ end
40
+
41
+ module ClassMethods
42
+ # Have NewRelic ignore actions in this controller. Specify the actions as hash options
43
+ # using :except and :only. If no actions are specified, all actions are ignored.
44
+ def newrelic_ignore(specifiers={})
45
+ newrelic_ignore_aspect('do_not_trace', specifiers)
46
+ end
47
+ # Have NewRelic omit apdex measurements on the given actions. Typically used for
48
+ # actions that are not user facing or that skew your overall apdex measurement.
49
+ # Accepts :except and :only options, as with #newrelic_ignore.
50
+ def newrelic_ignore_apdex(specifiers={})
51
+ newrelic_ignore_aspect('ignore_apdex', specifiers)
52
+ end
53
+
54
+ def newrelic_ignore_aspect(property, specifiers={}) # :nodoc:
55
+ if specifiers.empty?
56
+ self.newrelic_write_attr property, true
57
+ elsif ! (Hash === specifiers)
58
+ logger.error "newrelic_#{property} takes an optional hash with :only and :except lists of actions (illegal argument type '#{specifiers.class}')"
59
+ else
60
+ self.newrelic_write_attr property, specifiers
61
+ end
62
+ end
63
+
64
+ # Should be monkey patched into the controller class implemented
65
+ # with the inheritable attribute mechanism.
66
+ def newrelic_write_attr(attr_name, value) # :nodoc:
67
+ instance_variable_set "@#{attr_name}", value
68
+ end
69
+ def newrelic_read_attr(attr_name) # :nodoc:
70
+ instance_variable_get "@#{attr_name}"
71
+ end
72
+
73
+ # Add transaction tracing to the given method. This will treat
74
+ # the given method as a main entrypoint for instrumentation, just
75
+ # like controller actions are treated by default. Useful especially
76
+ # for background tasks.
77
+ #
78
+ # Example for background job:
79
+ # class Job
80
+ # include NewRelic::Agent::Instrumentation::ControllerInstrumentation
81
+ # def run(task)
82
+ # ...
83
+ # end
84
+ # # Instrument run so tasks show up under task.name. Note single
85
+ # # quoting to defer eval to runtime.
86
+ # add_transaction_tracer :run, :name => '#{args[0].name}'
87
+ # end
88
+ #
89
+ # Here's an example of a controller that uses a dispatcher
90
+ # action to invoke operations which you want treated as top
91
+ # level actions, so they aren't all lumped into the invoker
92
+ # action.
93
+ #
94
+ # MyController < ActionController::Base
95
+ # include NewRelic::Agent::Instrumentation::ControllerInstrumentation
96
+ # # dispatch the given op to the method given by the service parameter.
97
+ # def invoke_operation
98
+ # op = params['operation']
99
+ # send op
100
+ # end
101
+ # # Ignore the invoker to avoid double counting
102
+ # newrelic_ignore :only => 'invoke_operation'
103
+ # # Instrument the operations:
104
+ # add_transaction_tracer :print
105
+ # add_transaction_tracer :show
106
+ # add_transaction_tracer :forward
107
+ # end
108
+ #
109
+ # Here's an example of how to pass contextual information into the transaction
110
+ # so it will appear in transaction traces:
111
+ #
112
+ # class Job
113
+ # include NewRelic::Agent::Instrumentation::ControllerInstrumentation
114
+ # def process(account)
115
+ # ...
116
+ # end
117
+ # # Include the account name in the transaction details. Note the single
118
+ # # quotes to defer eval until call time.
119
+ # add_transaction_tracer :process, :params => '{ :account_name => args[0].name }'
120
+ # end
121
+ #
122
+ # See NewRelic::Agent::Instrumentation::ControllerInstrumentation#perform_action_with_newrelic_trace
123
+ # for the full list of available options.
124
+ #
125
+ def add_transaction_tracer(method, options={})
126
+ # The metric path:
127
+ options[:name] ||= method.to_s
128
+ # create the argument list:
129
+ options_arg = []
130
+ options.each do |key, value|
131
+ valuestr = case
132
+ when value.is_a?(Symbol)
133
+ value.inspect
134
+ when key == :params
135
+ value.to_s
136
+ else
137
+ %Q["#{value.to_s}"]
138
+ end
139
+ options_arg << %Q[:#{key} => #{valuestr}]
140
+ end
141
+ class_eval <<-EOC
142
+ def #{method.to_s}_with_newrelic_transaction_trace(*args, &block)
143
+ perform_action_with_newrelic_trace(#{options_arg.join(',')}) do
144
+ #{method.to_s}_without_newrelic_transaction_trace(*args, &block)
145
+ end
146
+ end
147
+ EOC
148
+ alias_method "#{method.to_s}_without_newrelic_transaction_trace", method.to_s
149
+ alias_method method.to_s, "#{method.to_s}_with_newrelic_transaction_trace"
150
+ NewRelic::Control.instance.log.debug("Traced transaction: class = #{self.name}, method = #{method.to_s}, options = #{options.inspect}")
151
+ end
152
+ end
153
+
154
+ # Must be implemented in the controller class:
155
+ # Determine the path that is used in the metric name for
156
+ # the called controller action. Of the form controller_path/action_name
157
+ #
158
+ def newrelic_metric_path(action_name_override = nil) # :nodoc:
159
+ raise "Not implemented!"
160
+ end
161
+
162
+ # Yield to the given block with NewRelic tracing. Used by
163
+ # default instrumentation on controller actions in Rails and Merb.
164
+ # But it can also be used in custom instrumentation of controller
165
+ # methods and background tasks.
166
+ #
167
+ # This is the method invoked by instrumentation added by the
168
+ # <tt>ClassMethods#add_transaction_tracer</tt>.
169
+ #
170
+ # Here's a more verbose version of the example shown in
171
+ # <tt>ClassMethods#add_transaction_tracer</tt> using this method instead of
172
+ # #add_transaction_tracer.
173
+ #
174
+ # Below is a controller with an +invoke_operation+ action which
175
+ # dispatches to more specific operation methods based on a
176
+ # parameter (very dangerous, btw!). With this instrumentation,
177
+ # the +invoke_operation+ action is ignored but the operation
178
+ # methods show up in New Relic as if they were first class controller
179
+ # actions
180
+ #
181
+ # MyController < ActionController::Base
182
+ # include NewRelic::Agent::Instrumentation::ControllerInstrumentation
183
+ # # dispatch the given op to the method given by the service parameter.
184
+ # def invoke_operation
185
+ # op = params['operation']
186
+ # perform_action_with_newrelic_trace(:name => op) do
187
+ # send op, params['message']
188
+ # end
189
+ # end
190
+ # # Ignore the invoker to avoid double counting
191
+ # newrelic_ignore :only => 'invoke_operation'
192
+ # end
193
+ #
194
+ #
195
+ # When invoking this method explicitly as in the example above, pass in a
196
+ # block to measure with some combination of options:
197
+ #
198
+ # * <tt>:category => :controller</tt> indicates that this is a
199
+ # controller action and will appear with all the other actions. This
200
+ # is the default.
201
+ # * <tt>:category => :task</tt> indicates that this is a
202
+ # background task and will show up in New Relic with other background
203
+ # tasks instead of in the controllers list
204
+ # * <tt>:category => :rack</tt> if you are instrumenting a rack
205
+ # middleware call. The <tt>:name</tt> is optional, useful if you
206
+ # have more than one potential transaction in the #call.
207
+ # * <tt>:category => :uri</tt> indicates that this is a
208
+ # web transaction whose name is a normalized URI, where 'normalized'
209
+ # means the URI does not have any elements with data in them such
210
+ # as in many REST URIs.
211
+ # * <tt>:name => action_name</tt> is used to specify the action
212
+ # name used as part of the metric name
213
+ # * <tt>:params => {...}</tt> to provide information about the context
214
+ # of the call, used in transaction trace display, for example:
215
+ # <tt>:params => { :account => @account.name, :file => file.name }</tt>
216
+ # These are treated similarly to request parameters in web transactions.
217
+ #
218
+ # Seldomly used options:
219
+ #
220
+ # * <tt>:force => true</tt> indicates you should capture all
221
+ # metrics even if the #newrelic_ignore directive was specified
222
+ # * <tt>:class_name => aClass.name</tt> is used to override the name
223
+ # of the class when used inside the metric name. Default is the
224
+ # current class.
225
+ # * <tt>:path => metric_path</tt> is *deprecated* in the public API. It
226
+ # allows you to set the entire metric after the category part. Overrides
227
+ # all the other options.
228
+ # * <tt>:request => Rack::Request#new(env)</tt> is used to pass in a
229
+ # request object that may respond to uri and referer.
230
+ #
231
+ # If a single argument is passed in, it is treated as a metric
232
+ # path. This form is deprecated.
233
+ def perform_action_with_newrelic_trace(*args, &block)
234
+ request = newrelic_request(args)
235
+ NewRelic::Agent::TransactionInfo.reset(request)
236
+
237
+ # Skip instrumentation based on the value of 'do_not_trace' and if
238
+ # we aren't calling directly with a block.
239
+ if !block_given? && do_not_trace?
240
+ # Also ignore all instrumentation in the call sequence
241
+ NewRelic::Agent.disable_all_tracing do
242
+ return perform_action_without_newrelic_trace(*args)
243
+ end
244
+ end
245
+
246
+ return perform_action_with_newrelic_profile(args, &block) if NewRelic::Control.instance.profiling?
247
+
248
+ frame_data = _push_metric_frame(block_given? ? args : [])
249
+ begin
250
+ NewRelic::Agent.trace_execution_scoped frame_data.recorded_metrics, :force => frame_data.force_flag do
251
+ frame_data.start_transaction
252
+ begin
253
+ NewRelic::Agent::BusyCalculator.dispatcher_start frame_data.start
254
+ if block_given?
255
+ yield
256
+ else
257
+ perform_action_without_newrelic_trace(*args)
258
+ end
259
+ rescue => e
260
+ frame_data.notice_error(e)
261
+ raise
262
+ end
263
+ end
264
+ ensure
265
+ NewRelic::Agent::BusyCalculator.dispatcher_finish
266
+ # Look for a metric frame in the thread local and process it.
267
+ # Clear the thread local when finished to ensure it only gets called once.
268
+ frame_data.record_apdex unless ignore_apdex?
269
+
270
+ frame_data.pop
271
+ end
272
+ end
273
+
274
+ protected
275
+
276
+ def newrelic_request(args)
277
+ opts = args.first
278
+ # passed as a parameter to add_transaction_tracer
279
+ if opts.respond_to?(:keys) && opts.respond_to?(:[]) && opts[:request]
280
+ opts[:request]
281
+ # in a Rack app
282
+ elsif opts.respond_to?(:keys) && opts.respond_to?(:[]) &&
283
+ opts['rack.version']
284
+ Rack::Request.new(args)
285
+ # in a Rails app
286
+ elsif self.respond_to?(:request)
287
+ self.request
288
+ end
289
+ end
290
+
291
+ # Should be implemented in the dispatcher class
292
+ def newrelic_response_code; end
293
+
294
+ def newrelic_request_headers
295
+ self.respond_to?(:request) && self.request.respond_to?(:headers) && self.request.headers
296
+ end
297
+
298
+ # overrideable method to determine whether to trace an action
299
+ # or not - you may override this in your controller and supply
300
+ # your own logic for ignoring transactions.
301
+ def do_not_trace?
302
+ _is_filtered?('do_not_trace')
303
+ end
304
+
305
+ # overrideable method to determine whether to trace an action
306
+ # for purposes of apdex measurement - you can use this to
307
+ # ignore things like api calls or other fast non-user-facing
308
+ # actions
309
+ def ignore_apdex?
310
+ _is_filtered?('ignore_apdex')
311
+ end
312
+
313
+ private
314
+
315
+ # Profile the instrumented call. Dev mode only. Experimental
316
+ # - should definitely not be used on production applications
317
+ def perform_action_with_newrelic_profile(args)
318
+ frame_data = _push_metric_frame(block_given? ? args : [])
319
+ val = nil
320
+ NewRelic::Agent.trace_execution_scoped frame_data.metric_name do
321
+ MetricFrame.current(true).start_transaction
322
+ NewRelic::Agent.disable_all_tracing do
323
+ # turn on profiling
324
+ profile = RubyProf.profile do
325
+ if block_given?
326
+ val = yield
327
+ else
328
+ val = perform_action_without_newrelic_trace(*args)
329
+ end
330
+ end
331
+ NewRelic::Agent.instance.transaction_sampler.notice_profile profile
332
+ end
333
+ end
334
+ return val
335
+ ensure
336
+ frame_data.pop
337
+ end
338
+
339
+ # Write a metric frame onto a thread local if there isn't already one there.
340
+ # If there is one, just update it.
341
+ def _push_metric_frame(args) # :nodoc:
342
+ frame_data = NewRelic::Agent::Instrumentation::MetricFrame.current(true)
343
+
344
+ frame_data.apdex_start ||= _detect_upstream_wait(frame_data.start)
345
+ _record_queue_length
346
+ # If a block was passed in, then the arguments represent options for the instrumentation,
347
+ # not app method arguments.
348
+ if args.any?
349
+ if args.last.is_a?(Hash)
350
+ options = args.last
351
+ frame_data.force_flag = options[:force]
352
+ frame_data.request = options[:request] if options[:request]
353
+ end
354
+ category, path, available_params = _convert_args_to_path(args)
355
+ else
356
+ category = 'Controller'
357
+ path = newrelic_metric_path
358
+ available_params = self.respond_to?(:params) ? self.params : {}
359
+ end
360
+ frame_data.request ||= self.request if self.respond_to? :request
361
+ transaction_name = category + '/' + path
362
+ frame_data.push(transaction_name)
363
+ NewRelic::Agent::TransactionInfo.get.transaction_name = transaction_name
364
+ frame_data.filtered_params = (respond_to? :filter_parameters) ? filter_parameters(available_params) : available_params
365
+ frame_data
366
+ end
367
+
368
+ def _convert_args_to_path(args)
369
+ options = args.last.is_a?(Hash) ? args.pop : {}
370
+ params = options[:params] || {}
371
+ category = case options[:category]
372
+ when :controller, nil then 'Controller'
373
+ when :task then 'OtherTransaction/Background' # 'Task'
374
+ when :rack then 'Controller/Rack' #'WebTransaction/Rack'
375
+ when :uri then 'Controller' #'WebTransaction/Uri'
376
+ when :sinatra then 'Controller/Sinatra' #'WebTransaction/Uri'
377
+ # for internal use only
378
+ else options[:category].to_s
379
+ end
380
+ unless path = options[:path]
381
+ action = options[:name] || args.first
382
+ metric_class = options[:class_name] || ((self.is_a?(Class)||self.is_a?(Module)) ? self.name : self.class.name)
383
+ path = metric_class
384
+ path += ('/' + action) if action
385
+ end
386
+ [category, path, params]
387
+ end
388
+
389
+ # Filter out a request if it matches one of our parameters for
390
+ # ignoring it - the key is either 'do_not_trace' or 'ignore_apdex'
391
+ def _is_filtered?(key)
392
+ ignore_actions = self.class.newrelic_read_attr(key) if self.class.respond_to? :newrelic_read_attr
393
+ case ignore_actions
394
+ when nil; false
395
+ when Hash
396
+ only_actions = Array(ignore_actions[:only])
397
+ except_actions = Array(ignore_actions[:except])
398
+ only_actions.include?(action_name.to_sym) || (except_actions.any? && !except_actions.include?(action_name.to_sym))
399
+ else
400
+ true
401
+ end
402
+ end
403
+ # Take a guess at a measure representing the number of requests waiting in mongrel
404
+ # or heroku.
405
+ def _record_queue_length
406
+ if newrelic_request_headers
407
+ if queue_depth = newrelic_request_headers['HTTP_X_HEROKU_QUEUE_DEPTH']
408
+ queue_depth = queue_depth.to_i rescue nil
409
+ elsif mongrel = NewRelic::Control.instance.local_env.mongrel
410
+ # Always subtrace 1 for the active mongrel
411
+ queue_depth = [mongrel.workers.list.length.to_i - 1, 0].max rescue nil
412
+ end
413
+ NewRelic::Agent.agent.stats_engine.get_stats_no_scope('Mongrel/Queue Length').trace_call(queue_depth) if queue_depth
414
+ end
415
+ end
416
+
417
+ include NewRelic::Agent::Instrumentation::QueueTime
418
+
419
+ # Return a Time instance representing the upstream start time.
420
+ # now is a Time instance to fall back on if no other candidate
421
+ # for the start time is found.
422
+ def _detect_upstream_wait(now)
423
+ queue_start = nil
424
+ if newrelic_request_headers
425
+ queue_start = parse_frontend_headers(newrelic_request_headers)
426
+ end
427
+ queue_start || now
428
+ rescue => e
429
+ NewRelic::Control.instance.log.error("Error detecting upstream wait time: #{e}")
430
+ NewRelic::Control.instance.log.debug("#{e.backtrace[0..20]}")
431
+ now
432
+ end
433
+
434
+ # returns the NewRelic::MethodTraceStats object associated
435
+ # with the dispatcher time measurement
436
+ def _dispatch_stat
437
+ NewRelic::Agent.agent.stats_engine.get_stats_no_scope 'HttpDispatcher'
438
+ end
439
+
440
+ end
441
+ end
442
+ end
443
+ end