sundawg_newrelic_rpm 3.5.8.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (409) hide show
  1. data/.gitignore +22 -0
  2. data/.project +23 -0
  3. data/.travis.yml +9 -0
  4. data/CHANGELOG +969 -0
  5. data/GUIDELINES_FOR_CONTRIBUTING.md +76 -0
  6. data/Gemfile +20 -0
  7. data/LICENSE +87 -0
  8. data/README.md +195 -0
  9. data/Rakefile +58 -0
  10. data/bin/mongrel_rpm +33 -0
  11. data/bin/newrelic +13 -0
  12. data/bin/newrelic_cmd +5 -0
  13. data/cert/cacert.pem +118 -0
  14. data/cert/oldsite.pem +28 -0
  15. data/cert/site.pem +27 -0
  16. data/config.dot +290 -0
  17. data/config/database.yml +5 -0
  18. data/gem-public_cert.pem +20 -0
  19. data/init.rb +31 -0
  20. data/install.rb +9 -0
  21. data/lib/conditional_vendored_dependency_detection.rb +3 -0
  22. data/lib/conditional_vendored_metric_parser.rb +5 -0
  23. data/lib/new_relic/agent.rb +488 -0
  24. data/lib/new_relic/agent/agent.rb +1069 -0
  25. data/lib/new_relic/agent/agent_logger.rb +173 -0
  26. data/lib/new_relic/agent/audit_logger.rb +72 -0
  27. data/lib/new_relic/agent/beacon_configuration.rb +107 -0
  28. data/lib/new_relic/agent/browser_monitoring.rb +195 -0
  29. data/lib/new_relic/agent/busy_calculator.rb +112 -0
  30. data/lib/new_relic/agent/chained_call.rb +13 -0
  31. data/lib/new_relic/agent/configuration.rb +74 -0
  32. data/lib/new_relic/agent/configuration/defaults.rb +132 -0
  33. data/lib/new_relic/agent/configuration/environment_source.rb +49 -0
  34. data/lib/new_relic/agent/configuration/manager.rb +148 -0
  35. data/lib/new_relic/agent/configuration/mask_defaults.rb +11 -0
  36. data/lib/new_relic/agent/configuration/server_source.rb +31 -0
  37. data/lib/new_relic/agent/configuration/yaml_source.rb +67 -0
  38. data/lib/new_relic/agent/cross_app_monitor.rb +239 -0
  39. data/lib/new_relic/agent/cross_app_tracing.rb +281 -0
  40. data/lib/new_relic/agent/database.rb +254 -0
  41. data/lib/new_relic/agent/error_collector.rb +266 -0
  42. data/lib/new_relic/agent/event_listener.rb +43 -0
  43. data/lib/new_relic/agent/instrumentation.rb +9 -0
  44. data/lib/new_relic/agent/instrumentation/active_merchant.rb +29 -0
  45. data/lib/new_relic/agent/instrumentation/active_record.rb +134 -0
  46. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +68 -0
  47. data/lib/new_relic/agent/instrumentation/authlogic.rb +19 -0
  48. data/lib/new_relic/agent/instrumentation/browser_monitoring_timings.rb +51 -0
  49. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +485 -0
  50. data/lib/new_relic/agent/instrumentation/data_mapper.rb +230 -0
  51. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +52 -0
  52. data/lib/new_relic/agent/instrumentation/memcache.rb +80 -0
  53. data/lib/new_relic/agent/instrumentation/merb/controller.rb +41 -0
  54. data/lib/new_relic/agent/instrumentation/merb/errors.rb +29 -0
  55. data/lib/new_relic/agent/instrumentation/metric_frame.rb +356 -0
  56. data/lib/new_relic/agent/instrumentation/metric_frame/pop.rb +80 -0
  57. data/lib/new_relic/agent/instrumentation/net.rb +31 -0
  58. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +23 -0
  59. data/lib/new_relic/agent/instrumentation/queue_time.rb +68 -0
  60. data/lib/new_relic/agent/instrumentation/rack.rb +98 -0
  61. data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +114 -0
  62. data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +42 -0
  63. data/lib/new_relic/agent/instrumentation/rails/errors.rb +42 -0
  64. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +180 -0
  65. data/lib/new_relic/agent/instrumentation/rails3/errors.rb +41 -0
  66. data/lib/new_relic/agent/instrumentation/rails4/action_controller.rb +145 -0
  67. data/lib/new_relic/agent/instrumentation/rails4/errors.rb +45 -0
  68. data/lib/new_relic/agent/instrumentation/resque.rb +81 -0
  69. data/lib/new_relic/agent/instrumentation/sinatra.rb +107 -0
  70. data/lib/new_relic/agent/instrumentation/sunspot.rb +29 -0
  71. data/lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb +22 -0
  72. data/lib/new_relic/agent/method_tracer.rb +530 -0
  73. data/lib/new_relic/agent/new_relic_service.rb +513 -0
  74. data/lib/new_relic/agent/pipe_channel_manager.rb +175 -0
  75. data/lib/new_relic/agent/pipe_service.rb +63 -0
  76. data/lib/new_relic/agent/rules_engine.rb +72 -0
  77. data/lib/new_relic/agent/sampler.rb +50 -0
  78. data/lib/new_relic/agent/samplers/cpu_sampler.rb +58 -0
  79. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +86 -0
  80. data/lib/new_relic/agent/samplers/memory_sampler.rb +141 -0
  81. data/lib/new_relic/agent/samplers/object_sampler.rb +26 -0
  82. data/lib/new_relic/agent/shim_agent.rb +28 -0
  83. data/lib/new_relic/agent/sql_sampler.rb +251 -0
  84. data/lib/new_relic/agent/stats.rb +149 -0
  85. data/lib/new_relic/agent/stats_engine.rb +30 -0
  86. data/lib/new_relic/agent/stats_engine/gc_profiler.rb +116 -0
  87. data/lib/new_relic/agent/stats_engine/metric_stats.rb +161 -0
  88. data/lib/new_relic/agent/stats_engine/samplers.rb +97 -0
  89. data/lib/new_relic/agent/stats_engine/stats_hash.rb +58 -0
  90. data/lib/new_relic/agent/stats_engine/transactions.rb +145 -0
  91. data/lib/new_relic/agent/thread.rb +32 -0
  92. data/lib/new_relic/agent/thread_profiler.rb +319 -0
  93. data/lib/new_relic/agent/transaction_info.rb +119 -0
  94. data/lib/new_relic/agent/transaction_sample_builder.rb +126 -0
  95. data/lib/new_relic/agent/transaction_sampler.rb +459 -0
  96. data/lib/new_relic/agent/worker_loop.rb +96 -0
  97. data/lib/new_relic/coerce.rb +37 -0
  98. data/lib/new_relic/collection_helper.rb +77 -0
  99. data/lib/new_relic/command.rb +85 -0
  100. data/lib/new_relic/commands/deployments.rb +114 -0
  101. data/lib/new_relic/commands/install.rb +80 -0
  102. data/lib/new_relic/control.rb +44 -0
  103. data/lib/new_relic/control/class_methods.rb +58 -0
  104. data/lib/new_relic/control/frameworks.rb +10 -0
  105. data/lib/new_relic/control/frameworks/external.rb +16 -0
  106. data/lib/new_relic/control/frameworks/merb.rb +25 -0
  107. data/lib/new_relic/control/frameworks/rails.rb +173 -0
  108. data/lib/new_relic/control/frameworks/rails3.rb +71 -0
  109. data/lib/new_relic/control/frameworks/rails4.rb +23 -0
  110. data/lib/new_relic/control/frameworks/ruby.rb +21 -0
  111. data/lib/new_relic/control/frameworks/sinatra.rb +20 -0
  112. data/lib/new_relic/control/instance_methods.rb +145 -0
  113. data/lib/new_relic/control/instrumentation.rb +95 -0
  114. data/lib/new_relic/control/profiling.rb +25 -0
  115. data/lib/new_relic/control/server_methods.rb +80 -0
  116. data/lib/new_relic/delayed_job_injection.rb +51 -0
  117. data/lib/new_relic/helper.rb +66 -0
  118. data/lib/new_relic/language_support.rb +92 -0
  119. data/lib/new_relic/latest_changes.rb +31 -0
  120. data/lib/new_relic/local_environment.rb +385 -0
  121. data/lib/new_relic/merbtasks.rb +6 -0
  122. data/lib/new_relic/metric_data.rb +70 -0
  123. data/lib/new_relic/metric_spec.rb +80 -0
  124. data/lib/new_relic/metrics.rb +9 -0
  125. data/lib/new_relic/noticed_error.rb +59 -0
  126. data/lib/new_relic/okjson.rb +599 -0
  127. data/lib/new_relic/rack.rb +4 -0
  128. data/lib/new_relic/rack/agent_hooks.rb +20 -0
  129. data/lib/new_relic/rack/browser_monitoring.rb +85 -0
  130. data/lib/new_relic/rack/developer_mode.rb +271 -0
  131. data/lib/new_relic/rack/error_collector.rb +66 -0
  132. data/lib/new_relic/recipes.rb +99 -0
  133. data/lib/new_relic/timer_lib.rb +27 -0
  134. data/lib/new_relic/transaction_analysis.rb +77 -0
  135. data/lib/new_relic/transaction_analysis/segment_summary.rb +49 -0
  136. data/lib/new_relic/transaction_sample.rb +272 -0
  137. data/lib/new_relic/transaction_sample/composite_segment.rb +27 -0
  138. data/lib/new_relic/transaction_sample/fake_segment.rb +9 -0
  139. data/lib/new_relic/transaction_sample/segment.rb +205 -0
  140. data/lib/new_relic/transaction_sample/summary_segment.rb +21 -0
  141. data/lib/new_relic/url_rule.rb +14 -0
  142. data/lib/new_relic/version.rb +66 -0
  143. data/lib/newrelic_rpm.rb +49 -0
  144. data/lib/tasks/all.rb +4 -0
  145. data/lib/tasks/install.rake +7 -0
  146. data/lib/tasks/tests.rake +17 -0
  147. data/newrelic.yml +227 -0
  148. data/newrelic_rpm.gemspec +50 -0
  149. data/recipes/newrelic.rb +6 -0
  150. data/test/active_record_fixtures.rb +77 -0
  151. data/test/config/newrelic.yml +49 -0
  152. data/test/config/test_control.rb +48 -0
  153. data/test/fixtures/proc_cpuinfo.txt +575 -0
  154. data/test/intentional_fail.rb +10 -0
  155. data/test/multiverse/.gitignore +11 -0
  156. data/test/multiverse/README.md +85 -0
  157. data/test/multiverse/lib/multiverse/color.rb +13 -0
  158. data/test/multiverse/lib/multiverse/envfile.rb +66 -0
  159. data/test/multiverse/lib/multiverse/environment.rb +16 -0
  160. data/test/multiverse/lib/multiverse/output_collector.rb +29 -0
  161. data/test/multiverse/lib/multiverse/runner.rb +44 -0
  162. data/test/multiverse/lib/multiverse/suite.rb +164 -0
  163. data/test/multiverse/script/run_one +3 -0
  164. data/test/multiverse/script/runner +9 -0
  165. data/test/multiverse/suites/active_record/Envfile +13 -0
  166. data/test/multiverse/suites/active_record/ar_method_aliasing.rb +94 -0
  167. data/test/multiverse/suites/active_record/config/newrelic.yml +22 -0
  168. data/test/multiverse/suites/active_record/encoding_test.rb +26 -0
  169. data/test/multiverse/suites/agent_only/Envfile +9 -0
  170. data/test/multiverse/suites/agent_only/audit_log_test.rb +97 -0
  171. data/test/multiverse/suites/agent_only/config/newrelic.yml +23 -0
  172. data/test/multiverse/suites/agent_only/cross_application_tracing_test.rb +56 -0
  173. data/test/multiverse/suites/agent_only/http_response_code_test.rb +53 -0
  174. data/test/multiverse/suites/agent_only/key_transactions_test.rb +66 -0
  175. data/test/multiverse/suites/agent_only/logging_test.rb +163 -0
  176. data/test/multiverse/suites/agent_only/marshaling_test.rb +96 -0
  177. data/test/multiverse/suites/agent_only/method_visibility_test.rb +98 -0
  178. data/test/multiverse/suites/agent_only/no_dns_resolv.rb +17 -0
  179. data/test/multiverse/suites/agent_only/pipe_manager_test.rb +33 -0
  180. data/test/multiverse/suites/agent_only/rename_rule_test.rb +57 -0
  181. data/test/multiverse/suites/agent_only/rum_instrumentation_test.rb +81 -0
  182. data/test/multiverse/suites/agent_only/service_timeout_test.rb +32 -0
  183. data/test/multiverse/suites/agent_only/ssl_test.rb +22 -0
  184. data/test/multiverse/suites/agent_only/start_up_test.rb +21 -0
  185. data/test/multiverse/suites/agent_only/test_trace_method_with_punctuation.rb +30 -0
  186. data/test/multiverse/suites/agent_only/test_trace_transaction_with_punctuation.rb +32 -0
  187. data/test/multiverse/suites/agent_only/testing_app.rb +17 -0
  188. data/test/multiverse/suites/agent_only/thread_profiling_test.rb +92 -0
  189. data/test/multiverse/suites/config_file_loading/Envfile +7 -0
  190. data/test/multiverse/suites/config_file_loading/config_file_loading_test.rb +106 -0
  191. data/test/multiverse/suites/datamapper/Envfile +8 -0
  192. data/test/multiverse/suites/datamapper/config/newrelic.yml +22 -0
  193. data/test/multiverse/suites/datamapper/encoding_test.rb +36 -0
  194. data/test/multiverse/suites/rails/Envfile +18 -0
  195. data/test/multiverse/suites/rails/app.rb +49 -0
  196. data/test/multiverse/suites/rails/app/views/foos/_foo.html.haml +1 -0
  197. data/test/multiverse/suites/rails/app/views/views/_a_partial.html.erb +1 -0
  198. data/test/multiverse/suites/rails/app/views/views/_mid_partial.html.erb +1 -0
  199. data/test/multiverse/suites/rails/app/views/views/_top_partial.html.erb +3 -0
  200. data/test/multiverse/suites/rails/app/views/views/deep_partial.html.erb +3 -0
  201. data/test/multiverse/suites/rails/app/views/views/haml_view.html.haml +6 -0
  202. data/test/multiverse/suites/rails/app/views/views/index.html.erb +4 -0
  203. data/test/multiverse/suites/rails/config/newrelic.yml +32 -0
  204. data/test/multiverse/suites/rails/error_tracing_test.rb +211 -0
  205. data/test/multiverse/suites/rails/gc_instrumentation_test.rb +79 -0
  206. data/test/multiverse/suites/rails/queue_time_test.rb +55 -0
  207. data/test/multiverse/suites/rails/view_instrumentation_test.rb +205 -0
  208. data/test/multiverse/suites/resque/Envfile +24 -0
  209. data/test/multiverse/suites/resque/Rakefile +8 -0
  210. data/test/multiverse/suites/resque/config/newrelic.yml +22 -0
  211. data/test/multiverse/suites/resque/instrumentation_test.rb +151 -0
  212. data/test/multiverse/suites/resque/resque_setup.rb +15 -0
  213. data/test/multiverse/suites/sinatra/Envfile +15 -0
  214. data/test/multiverse/suites/sinatra/config/newrelic.yml +24 -0
  215. data/test/multiverse/suites/sinatra/sinatra_error_tracing_test.rb +38 -0
  216. data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +77 -0
  217. data/test/multiverse/suites/sinatra/sinatra_routes_test.rb +46 -0
  218. data/test/multiverse/suites/sinatra/sinatra_test.rb +139 -0
  219. data/test/multiverse/test/multiverse_test.rb +55 -0
  220. data/test/multiverse/test/suite_examples/one/a/Envfile +3 -0
  221. data/test/multiverse/test/suite_examples/one/a/a_test.rb +11 -0
  222. data/test/multiverse/test/suite_examples/one/a/config/newrelic.yml +24 -0
  223. data/test/multiverse/test/suite_examples/one/b/Envfile +3 -0
  224. data/test/multiverse/test/suite_examples/one/b/b_test.rb +11 -0
  225. data/test/multiverse/test/suite_examples/one/b/config/newrelic.yml +24 -0
  226. data/test/multiverse/test/suite_examples/three/a/Envfile +2 -0
  227. data/test/multiverse/test/suite_examples/three/a/fail_test.rb +6 -0
  228. data/test/multiverse/test/suite_examples/three/b/Envfile +2 -0
  229. data/test/multiverse/test/suite_examples/three/b/win_test.rb +6 -0
  230. data/test/multiverse/test/suite_examples/two/a/Envfile +1 -0
  231. data/test/multiverse/test/suite_examples/two/a/fail_test.rb +6 -0
  232. data/test/new_relic/agent/agent/connect_test.rb +295 -0
  233. data/test/new_relic/agent/agent/start_test.rb +205 -0
  234. data/test/new_relic/agent/agent/start_worker_thread_test.rb +88 -0
  235. data/test/new_relic/agent/agent_logger_test.rb +153 -0
  236. data/test/new_relic/agent/agent_test.rb +301 -0
  237. data/test/new_relic/agent/agent_test_controller.rb +77 -0
  238. data/test/new_relic/agent/agent_test_controller_test.rb +381 -0
  239. data/test/new_relic/agent/apdex_from_server_test.rb +9 -0
  240. data/test/new_relic/agent/audit_logger_test.rb +105 -0
  241. data/test/new_relic/agent/beacon_configuration_test.rb +107 -0
  242. data/test/new_relic/agent/browser_monitoring_test.rb +395 -0
  243. data/test/new_relic/agent/busy_calculator_test.rb +96 -0
  244. data/test/new_relic/agent/configuration/environment_source_test.rb +79 -0
  245. data/test/new_relic/agent/configuration/manager_test.rb +232 -0
  246. data/test/new_relic/agent/configuration/server_source_test.rb +50 -0
  247. data/test/new_relic/agent/configuration/yaml_source_test.rb +85 -0
  248. data/test/new_relic/agent/cross_app_monitor_test.rb +237 -0
  249. data/test/new_relic/agent/database_test.rb +194 -0
  250. data/test/new_relic/agent/error_collector/notice_error_test.rb +268 -0
  251. data/test/new_relic/agent/error_collector_test.rb +246 -0
  252. data/test/new_relic/agent/event_listener_test.rb +67 -0
  253. data/test/new_relic/agent/instrumentation/active_record_instrumentation_test.rb +606 -0
  254. data/test/new_relic/agent/instrumentation/browser_monitoring_timings_test.rb +66 -0
  255. data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +107 -0
  256. data/test/new_relic/agent/instrumentation/instrumentation_test.rb +11 -0
  257. data/test/new_relic/agent/instrumentation/metric_frame/pop_test.rb +171 -0
  258. data/test/new_relic/agent/instrumentation/metric_frame_test.rb +151 -0
  259. data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +461 -0
  260. data/test/new_relic/agent/instrumentation/queue_time_test.rb +97 -0
  261. data/test/new_relic/agent/instrumentation/rack_test.rb +35 -0
  262. data/test/new_relic/agent/instrumentation/sinatra_test.rb +25 -0
  263. data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +182 -0
  264. data/test/new_relic/agent/memcache_instrumentation_test.rb +143 -0
  265. data/test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb +158 -0
  266. data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +222 -0
  267. data/test/new_relic/agent/method_tracer_test.rb +389 -0
  268. data/test/new_relic/agent/mock_scope_listener.rb +26 -0
  269. data/test/new_relic/agent/new_relic_service_test.rb +571 -0
  270. data/test/new_relic/agent/pipe_channel_manager_test.rb +131 -0
  271. data/test/new_relic/agent/pipe_service_test.rb +133 -0
  272. data/test/new_relic/agent/rpm_agent_test.rb +115 -0
  273. data/test/new_relic/agent/rules_engine_test.rb +82 -0
  274. data/test/new_relic/agent/sampler_test.rb +19 -0
  275. data/test/new_relic/agent/shim_agent_test.rb +16 -0
  276. data/test/new_relic/agent/sql_sampler_test.rb +244 -0
  277. data/test/new_relic/agent/stats_engine/gc_profiler_test.rb +85 -0
  278. data/test/new_relic/agent/stats_engine/metric_stats_test.rb +180 -0
  279. data/test/new_relic/agent/stats_engine/samplers_test.rb +99 -0
  280. data/test/new_relic/agent/stats_engine_test.rb +184 -0
  281. data/test/new_relic/agent/stats_hash_test.rb +93 -0
  282. data/test/new_relic/agent/stats_test.rb +197 -0
  283. data/test/new_relic/agent/thread_profiler_test.rb +582 -0
  284. data/test/new_relic/agent/thread_test.rb +89 -0
  285. data/test/new_relic/agent/threaded_test.rb +65 -0
  286. data/test/new_relic/agent/transaction_info_test.rb +106 -0
  287. data/test/new_relic/agent/transaction_sample_builder_test.rb +227 -0
  288. data/test/new_relic/agent/transaction_sampler_test.rb +968 -0
  289. data/test/new_relic/agent/worker_loop_test.rb +84 -0
  290. data/test/new_relic/agent_test.rb +296 -0
  291. data/test/new_relic/coerce_test.rb +65 -0
  292. data/test/new_relic/collection_helper_test.rb +148 -0
  293. data/test/new_relic/command/deployments_test.rb +84 -0
  294. data/test/new_relic/control/class_methods_test.rb +44 -0
  295. data/test/new_relic/control/frameworks/rails_test.rb +26 -0
  296. data/test/new_relic/control_test.rb +194 -0
  297. data/test/new_relic/delayed_job_injection_test.rb +21 -0
  298. data/test/new_relic/dispatcher_test.rb +54 -0
  299. data/test/new_relic/fake_collector.rb +389 -0
  300. data/test/new_relic/framework_test.rb +53 -0
  301. data/test/new_relic/helper_test.rb +24 -0
  302. data/test/new_relic/load_test.rb +13 -0
  303. data/test/new_relic/local_environment_test.rb +85 -0
  304. data/test/new_relic/metric_data_test.rb +183 -0
  305. data/test/new_relic/metric_parser/metric_parser_test.rb +11 -0
  306. data/test/new_relic/metric_spec_test.rb +95 -0
  307. data/test/new_relic/noticed_error_test.rb +32 -0
  308. data/test/new_relic/rack/agent_hooks_test.rb +30 -0
  309. data/test/new_relic/rack/all_test.rb +11 -0
  310. data/test/new_relic/rack/browser_monitoring_test.rb +152 -0
  311. data/test/new_relic/rack/developer_mode_helper_test.rb +141 -0
  312. data/test/new_relic/rack/developer_mode_test.rb +80 -0
  313. data/test/new_relic/rack/error_collector_test.rb +90 -0
  314. data/test/new_relic/transaction_analysis/segment_summary_test.rb +91 -0
  315. data/test/new_relic/transaction_analysis_test.rb +121 -0
  316. data/test/new_relic/transaction_sample/composite_segment_test.rb +35 -0
  317. data/test/new_relic/transaction_sample/fake_segment_test.rb +17 -0
  318. data/test/new_relic/transaction_sample/segment_test.rb +415 -0
  319. data/test/new_relic/transaction_sample/summary_segment_test.rb +31 -0
  320. data/test/new_relic/transaction_sample_subtest_test.rb +56 -0
  321. data/test/new_relic/transaction_sample_test.rb +250 -0
  322. data/test/new_relic/version_number_test.rb +97 -0
  323. data/test/script/build_test_gem.sh +57 -0
  324. data/test/script/ci.sh +168 -0
  325. data/test/script/ci_agent-tests_runner.sh +82 -0
  326. data/test/script/ci_bench.sh +52 -0
  327. data/test/script/ci_multiverse_runner.sh +63 -0
  328. data/test/test_contexts.rb +30 -0
  329. data/test/test_helper.rb +240 -0
  330. data/ui/helpers/developer_mode_helper.rb +367 -0
  331. data/ui/helpers/google_pie_chart.rb +49 -0
  332. data/ui/views/layouts/newrelic_default.rhtml +48 -0
  333. data/ui/views/newrelic/_explain_plans.rhtml +27 -0
  334. data/ui/views/newrelic/_sample.rhtml +20 -0
  335. data/ui/views/newrelic/_segment.rhtml +28 -0
  336. data/ui/views/newrelic/_segment_limit_message.rhtml +1 -0
  337. data/ui/views/newrelic/_segment_row.rhtml +12 -0
  338. data/ui/views/newrelic/_show_sample_detail.rhtml +24 -0
  339. data/ui/views/newrelic/_show_sample_sql.rhtml +24 -0
  340. data/ui/views/newrelic/_show_sample_summary.rhtml +3 -0
  341. data/ui/views/newrelic/_sql_row.rhtml +16 -0
  342. data/ui/views/newrelic/_stack_trace.rhtml +15 -0
  343. data/ui/views/newrelic/_table.rhtml +12 -0
  344. data/ui/views/newrelic/explain_sql.rhtml +43 -0
  345. data/ui/views/newrelic/file/images/arrow-close.png +0 -0
  346. data/ui/views/newrelic/file/images/arrow-open.png +0 -0
  347. data/ui/views/newrelic/file/images/blue_bar.gif +0 -0
  348. data/ui/views/newrelic/file/images/file_icon.png +0 -0
  349. data/ui/views/newrelic/file/images/gray_bar.gif +0 -0
  350. data/ui/views/newrelic/file/images/new-relic-rpm-desktop.gif +0 -0
  351. data/ui/views/newrelic/file/images/new_relic_rpm_desktop.gif +0 -0
  352. data/ui/views/newrelic/file/images/textmate.png +0 -0
  353. data/ui/views/newrelic/file/javascript/jquery-1.4.2.js +6240 -0
  354. data/ui/views/newrelic/file/javascript/transaction_sample.js +120 -0
  355. data/ui/views/newrelic/file/stylesheets/style.css +490 -0
  356. data/ui/views/newrelic/index.rhtml +71 -0
  357. data/ui/views/newrelic/sample_not_found.rhtml +2 -0
  358. data/ui/views/newrelic/show_sample.rhtml +80 -0
  359. data/ui/views/newrelic/show_source.rhtml +3 -0
  360. data/ui/views/newrelic/threads.rhtml +45 -0
  361. data/vendor/gems/dependency_detection-0.0.1.build/LICENSE +5 -0
  362. data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection.rb +67 -0
  363. data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection/version.rb +3 -0
  364. data/vendor/gems/metric_parser-0.1.0.pre1/.specification +116 -0
  365. data/vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb +1 -0
  366. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser.rb +64 -0
  367. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/action_mailer.rb +14 -0
  368. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_merchant.rb +31 -0
  369. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_record.rb +33 -0
  370. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/apdex.rb +89 -0
  371. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/background_transaction.rb +7 -0
  372. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/client.rb +46 -0
  373. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller.rb +67 -0
  374. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_cpu.rb +43 -0
  375. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_ext.rb +17 -0
  376. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database.rb +48 -0
  377. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database_pool.rb +24 -0
  378. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net.rb +28 -0
  379. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net_parser.rb +17 -0
  380. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/errors.rb +11 -0
  381. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/external.rb +55 -0
  382. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/frontend.rb +40 -0
  383. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/gc.rb +20 -0
  384. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/hibernate_session.rb +7 -0
  385. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java.rb +31 -0
  386. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java_parser.rb +17 -0
  387. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp.rb +34 -0
  388. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp_tag.rb +7 -0
  389. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/mem_cache.rb +55 -0
  390. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/metric_parser.rb +135 -0
  391. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/orm.rb +27 -0
  392. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/other_transaction.rb +40 -0
  393. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet.rb +7 -0
  394. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_context_listener.rb +7 -0
  395. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_filter.rb +7 -0
  396. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_init.rb +7 -0
  397. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr.rb +27 -0
  398. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr_request_handler.rb +15 -0
  399. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring.rb +54 -0
  400. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_controller.rb +6 -0
  401. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_view.rb +6 -0
  402. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_action.rb +20 -0
  403. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_result.rb +20 -0
  404. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/version.rb +5 -0
  405. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/view.rb +70 -0
  406. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_frontend.rb +18 -0
  407. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_service.rb +14 -0
  408. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_transaction.rb +133 -0
  409. metadata +494 -0
@@ -0,0 +1,43 @@
1
+ module NewRelic::Agent
2
+ # Basic mechanism for the agent instance to provide agent-wide eventing.
3
+ # It is intended to keep different pieces of the app decoupled from each other.
4
+ #
5
+ # While an EventListener could be used elsewhere, it's strongly expected
6
+ # your eventing needs should be met by the agent's instance.
7
+ class EventListener
8
+
9
+ attr_accessor :runaway_threshold
10
+
11
+ def initialize
12
+ @events = {}
13
+ @runaway_threshold = 100
14
+ end
15
+
16
+ def subscribe(event, &handler)
17
+ @events[event] ||= []
18
+ @events[event] << handler
19
+ check_for_runaway_subscriptions(event)
20
+ end
21
+
22
+ def check_for_runaway_subscriptions(event)
23
+ count = @events[event].size
24
+ NewRelic::Agent.logger.debug("Run-away event subscription on #{event}? Subscribed #{count}") if count > @runaway_threshold
25
+ end
26
+
27
+ def clear
28
+ @events.clear
29
+ end
30
+
31
+ def notify(event, *args)
32
+ return unless @events.has_key?(event)
33
+
34
+ @events[event].each do |handler|
35
+ begin
36
+ handler.call(*args)
37
+ rescue => err
38
+ NewRelic::Agent.logger.debug("Failure during notify for #{@event}", err)
39
+ end
40
+ end
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,9 @@
1
+ require 'new_relic/agent'
2
+ module NewRelic
3
+ module Agent
4
+ # stub module that contains instrumentation defined in the
5
+ # instrumentation directory
6
+ module Instrumentation
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,29 @@
1
+ DependencyDetection.defer do
2
+ @name = :active_merchant
3
+
4
+ depends_on do
5
+ defined?(ActiveMerchant) && defined?(ActiveMerchant::Billing) &&
6
+ defined?(ActiveMerchant::Billing::Gateway) &&
7
+ ActiveMerchant::Billing::Gateway.respond_to?(:implementations)
8
+ end
9
+
10
+ executes do
11
+ ::NewRelic::Agent.logger.info 'Installing ActiveMerchant instrumentation'
12
+ end
13
+
14
+ executes do
15
+ ActiveMerchant::Billing::Gateway.implementations.each do |gateway|
16
+ gateway.class_eval do
17
+ implemented_methods = public_instance_methods(false)
18
+ gateway_name = self.name.split('::').last
19
+ [:authorize, :purchase, :credit, :void, :capture, :recurring].each do |operation|
20
+ if implemented_methods.include?(operation.to_s)
21
+ add_method_tracer operation, "ActiveMerchant/gateway/#{gateway_name}/#{operation}", :scoped_metric_only => true
22
+ add_method_tracer operation, "ActiveMerchant/gateway/#{gateway_name}", :push_scope => false
23
+ add_method_tracer operation, "ActiveMerchant/operation/#{operation}", :push_scope => false
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,134 @@
1
+ module NewRelic
2
+ module Agent
3
+ module Instrumentation
4
+ module ActiveRecord
5
+ def self.included(instrumented_class)
6
+ instrumented_class.class_eval do
7
+ unless instrumented_class.method_defined?(:log_without_newrelic_instrumentation)
8
+ alias_method :log_without_newrelic_instrumentation, :log
9
+ alias_method :log, :log_with_newrelic_instrumentation
10
+ protected :log
11
+ end
12
+ end
13
+ end
14
+
15
+ def log_with_newrelic_instrumentation(*args, &block)
16
+ if !NewRelic::Agent.is_execution_traced?
17
+ return log_without_newrelic_instrumentation(*args, &block)
18
+ end
19
+
20
+ sql, name, binds = args
21
+ metric = metric_for_name(NewRelic::Helper.correctly_encoded(name)) ||
22
+ metric_for_sql(NewRelic::Helper.correctly_encoded(sql))
23
+
24
+ if !metric
25
+ log_without_newrelic_instrumentation(*args, &block)
26
+ else
27
+ metrics = [metric, remote_service_metric].compact
28
+ metrics += rollup_metrics_for(metric)
29
+ self.class.trace_execution_scoped(metrics) do
30
+ t0 = Time.now
31
+ begin
32
+ log_without_newrelic_instrumentation(*args, &block)
33
+ ensure
34
+ elapsed_time = (Time.now - t0).to_f
35
+ NewRelic::Agent.instance.transaction_sampler.notice_sql(sql,
36
+ @config, elapsed_time)
37
+ NewRelic::Agent.instance.sql_sampler.notice_sql(sql, metric,
38
+ @config, elapsed_time)
39
+ end
40
+ end
41
+ end
42
+ end
43
+
44
+ def remote_service_metric
45
+ if @config && @config[:adapter]
46
+ type = @config[:adapter].sub(/\d*/, '')
47
+ host = @config[:host] || 'localhost'
48
+ "RemoteService/sql/#{type}/#{host}"
49
+ end
50
+ end
51
+
52
+ def metric_for_name(name)
53
+ if name && (parts = name.split " ") && parts.size == 2
54
+ model = parts.first
55
+ operation = parts.last.downcase
56
+ op_name = case operation
57
+ when 'load', 'count', 'exists' then 'find'
58
+ when 'indexes', 'columns' then nil # fall back to DirectSQL
59
+ when 'destroy', 'find', 'save', 'create' then operation
60
+ when 'update' then 'save'
61
+ else
62
+ if model == 'Join'
63
+ operation
64
+ end
65
+ end
66
+ "ActiveRecord/#{model}/#{op_name}" if op_name
67
+ end
68
+ end
69
+
70
+ def metric_for_sql(sql)
71
+ metric = NewRelic::Agent::Instrumentation::MetricFrame.database_metric_name
72
+ if metric.nil?
73
+ if sql =~ /^(select|update|insert|delete|show)/i
74
+ # Could not determine the model/operation so let's find a better
75
+ # metric. If it doesn't match the regex, it's probably a show
76
+ # command or some DDL which we'll ignore.
77
+ metric = "Database/SQL/#{$1.downcase}"
78
+ else
79
+ metric = "Database/SQL/other"
80
+ end
81
+ end
82
+ metric
83
+ end
84
+
85
+ def rollup_metrics_for(metric)
86
+ metrics = ["ActiveRecord/all"]
87
+ metrics << "ActiveRecord/#{$1}" if metric =~ /ActiveRecord\/\w+\/(\w+)/
88
+ metrics
89
+ end
90
+ end
91
+ end
92
+ end
93
+ end
94
+
95
+ DependencyDetection.defer do
96
+ @name = :active_record
97
+
98
+ depends_on do
99
+ defined?(ActiveRecord) && defined?(ActiveRecord::Base)
100
+ end
101
+
102
+ depends_on do
103
+ !NewRelic::Agent.config[:disable_activerecord_instrumentation]
104
+ end
105
+
106
+ executes do
107
+ ::NewRelic::Agent.logger.info 'Installing ActiveRecord instrumentation'
108
+ end
109
+
110
+ executes do
111
+ if defined?(::Rails) && ::Rails::VERSION::MAJOR.to_i == 3
112
+ Rails.configuration.after_initialize do
113
+ insert_instrumentation
114
+ end
115
+ else
116
+ insert_instrumentation
117
+ end
118
+ end
119
+
120
+ def insert_instrumentation
121
+ ActiveRecord::ConnectionAdapters::AbstractAdapter.module_eval do
122
+ include ::NewRelic::Agent::Instrumentation::ActiveRecord
123
+ end
124
+
125
+ ActiveRecord::Base.class_eval do
126
+ class << self
127
+ add_method_tracer(:find_by_sql, 'ActiveRecord/#{self.name}/find_by_sql',
128
+ :metric => false)
129
+ add_method_tracer(:transaction, 'ActiveRecord/#{self.name}/transaction',
130
+ :metric => false)
131
+ end
132
+ end
133
+ end
134
+ end
@@ -0,0 +1,68 @@
1
+ module NewRelic
2
+ module Instrumentation
3
+ module ActsAsSolrInstrumentation
4
+ module ParserMethodsInstrumentation
5
+ def parse_query_with_newrelic(*args)
6
+ self.class.trace_execution_scoped(["SolrClient/ActsAsSolr/query"]) do
7
+ t0 = Time.now
8
+ begin
9
+ parse_query_without_newrelic(*args)
10
+ ensure
11
+ NewRelic::Agent.instance.transaction_sampler.notice_nosql(args.first.inspect, (Time.now - t0).to_f) rescue nil
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
19
+
20
+ DependencyDetection.defer do
21
+ @name = :acts_as_solr
22
+
23
+ depends_on do
24
+ defined?(ActsAsSolr)
25
+ end
26
+
27
+ depends_on do
28
+ defined?(ActsAsSolr::ParserMethods)
29
+ end
30
+
31
+ depends_on do
32
+ defined?(ActsAsSolr::ClassMethods)
33
+ end
34
+
35
+ depends_on do
36
+ defined?(ActsAsSolr::CommonMethods)
37
+ end
38
+
39
+ executes do
40
+ ::NewRelic::Agent.logger.info 'Installing ActsAsSolr instrumentation'
41
+ end
42
+
43
+ executes do
44
+ ActsAsSolr::ParserMethods.module_eval do
45
+ include NewRelic::Instrumentation::ActsAsSolrInstrumentation::ParserMethodsInstrumentation
46
+ alias :parse_query_without_newrelic :parse_query
47
+ alias :parse_query :parse_query_with_newrelic
48
+ end
49
+ end
50
+
51
+ executes do
52
+ ActsAsSolr::ClassMethods.module_eval do
53
+ %w[find_by_solr find_id_by_solr multi_solr_search count_by_solr].each do |method|
54
+ add_method_tracer method, 'SolrClient/ActsAsSolr/query'
55
+ end
56
+ add_method_tracer :rebuild_solr_index, 'SolrClient/ActsAsSolr/index'
57
+ end
58
+ end
59
+
60
+ executes do
61
+ ActsAsSolr::CommonMethods.module_eval do
62
+ add_method_tracer :solr_add, 'SolrClient/ActsAsSolr/add'
63
+ add_method_tracer :solr_delete, 'SolrClient/ActsAsSolr/delete'
64
+ add_method_tracer :solr_commit, 'SolrClient/ActsAsSolr/commit'
65
+ add_method_tracer :solr_optimize, 'SolrClient/ActsAsSolr/optimize'
66
+ end
67
+ end
68
+ end
@@ -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.info '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,51 @@
1
+ module NewRelic
2
+ module Agent
3
+ module Instrumentation
4
+ class BrowserMonitoringTimings
5
+
6
+ def initialize(queue_time_in_seconds, transaction)
7
+ @now = Time.now.to_i
8
+ if transaction.nil?
9
+ @start_time_in_seconds = 0.0
10
+ else
11
+ @transaction_name = transaction.transaction_name
12
+ @start_time_in_seconds = transaction.start_time.to_i
13
+ end
14
+
15
+ @queue_time_in_seconds = clamp_to_positive(queue_time_in_seconds)
16
+ end
17
+
18
+ attr_reader :transaction_name,
19
+ :start_time_in_seconds, :queue_time_in_seconds
20
+
21
+ def start_time_in_millis
22
+ convert_to_milliseconds(@start_time_in_seconds)
23
+ end
24
+
25
+ def queue_time_in_millis
26
+ convert_to_milliseconds(queue_time_in_seconds)
27
+ end
28
+
29
+ def app_time_in_millis
30
+ convert_to_milliseconds(app_time_in_seconds)
31
+ end
32
+
33
+ def app_time_in_seconds
34
+ @now - @start_time_in_seconds
35
+ end
36
+
37
+ private
38
+
39
+ def convert_to_milliseconds(value_in_seconds)
40
+ clamp_to_positive((value_in_seconds.to_f * 1000.0).round)
41
+ end
42
+
43
+ def clamp_to_positive(value)
44
+ return 0.0 if value.nil? || value < 0
45
+ value
46
+ end
47
+
48
+ end
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,485 @@
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
+ def newrelic_ignore_enduser(*args); end
30
+ end
31
+
32
+ module Shim # :nodoc:
33
+ def self.included(clazz)
34
+ clazz.extend(ClassMethodsShim)
35
+ end
36
+ def newrelic_notice_error(*args); end
37
+ def new_relic_trace_controller_action(*args); yield; end
38
+ def newrelic_metric_path; end
39
+ def perform_action_with_newrelic_trace(*args); yield; end
40
+ end
41
+
42
+ module ClassMethods
43
+ # Have NewRelic ignore actions in this controller. Specify the actions as hash options
44
+ # using :except and :only. If no actions are specified, all actions are ignored.
45
+ def newrelic_ignore(specifiers={})
46
+ newrelic_ignore_aspect('do_not_trace', specifiers)
47
+ end
48
+ # Have NewRelic omit apdex measurements on the given actions. Typically used for
49
+ # actions that are not user facing or that skew your overall apdex measurement.
50
+ # Accepts :except and :only options, as with #newrelic_ignore.
51
+ def newrelic_ignore_apdex(specifiers={})
52
+ newrelic_ignore_aspect('ignore_apdex', specifiers)
53
+ end
54
+
55
+ def newrelic_ignore_enduser(specifiers={})
56
+ newrelic_ignore_aspect('ignore_enduser', specifiers)
57
+ end
58
+
59
+ def newrelic_ignore_aspect(property, specifiers={}) # :nodoc:
60
+ if specifiers.empty?
61
+ self.newrelic_write_attr property, true
62
+ elsif ! (Hash === specifiers)
63
+ ::NewRelic::Agent.logger.error "newrelic_#{property} takes an optional hash with :only and :except lists of actions (illegal argument type '#{specifiers.class}')"
64
+ else
65
+ self.newrelic_write_attr property, specifiers
66
+ end
67
+ end
68
+
69
+ # Should be monkey patched into the controller class implemented
70
+ # with the inheritable attribute mechanism.
71
+ def newrelic_write_attr(attr_name, value) # :nodoc:
72
+ instance_variable_set "@#{attr_name}", value
73
+ end
74
+ def newrelic_read_attr(attr_name) # :nodoc:
75
+ instance_variable_get "@#{attr_name}"
76
+ end
77
+
78
+ # Add transaction tracing to the given method. This will treat
79
+ # the given method as a main entrypoint for instrumentation, just
80
+ # like controller actions are treated by default. Useful especially
81
+ # for background tasks.
82
+ #
83
+ # Example for background job:
84
+ # class Job
85
+ # include NewRelic::Agent::Instrumentation::ControllerInstrumentation
86
+ # def run(task)
87
+ # ...
88
+ # end
89
+ # # Instrument run so tasks show up under task.name. Note single
90
+ # # quoting to defer eval to runtime.
91
+ # add_transaction_tracer :run, :name => '#{args[0].name}'
92
+ # end
93
+ #
94
+ # Here's an example of a controller that uses a dispatcher
95
+ # action to invoke operations which you want treated as top
96
+ # level actions, so they aren't all lumped into the invoker
97
+ # action.
98
+ #
99
+ # MyController < ActionController::Base
100
+ # include NewRelic::Agent::Instrumentation::ControllerInstrumentation
101
+ # # dispatch the given op to the method given by the service parameter.
102
+ # def invoke_operation
103
+ # op = params['operation']
104
+ # send op
105
+ # end
106
+ # # Ignore the invoker to avoid double counting
107
+ # newrelic_ignore :only => 'invoke_operation'
108
+ # # Instrument the operations:
109
+ # add_transaction_tracer :print
110
+ # add_transaction_tracer :show
111
+ # add_transaction_tracer :forward
112
+ # end
113
+ #
114
+ # Here's an example of how to pass contextual information into the transaction
115
+ # so it will appear in transaction traces:
116
+ #
117
+ # class Job
118
+ # include NewRelic::Agent::Instrumentation::ControllerInstrumentation
119
+ # def process(account)
120
+ # ...
121
+ # end
122
+ # # Include the account name in the transaction details. Note the single
123
+ # # quotes to defer eval until call time.
124
+ # add_transaction_tracer :process, :params => '{ :account_name => args[0].name }'
125
+ # end
126
+ #
127
+ # See NewRelic::Agent::Instrumentation::ControllerInstrumentation#perform_action_with_newrelic_trace
128
+ # for the full list of available options.
129
+ #
130
+ def add_transaction_tracer(method, options={})
131
+ # The metric path:
132
+ options[:name] ||= method.to_s
133
+ # create the argument list:
134
+ options_arg = []
135
+ options.each do |key, value|
136
+ valuestr = case
137
+ when value.is_a?(Symbol)
138
+ value.inspect
139
+ when key == :params
140
+ value.to_s
141
+ else
142
+ %Q["#{value.to_s}"]
143
+ end
144
+ options_arg << %Q[:#{key} => #{valuestr}]
145
+ end
146
+ traced_method, punctuation = method.to_s.sub(/([?!=])$/, ''), $1
147
+ visibility = NewRelic::Helper.instance_method_visibility self, method
148
+
149
+ class_eval <<-EOC
150
+ def #{traced_method.to_s}_with_newrelic_transaction_trace#{punctuation}(*args, &block)
151
+ perform_action_with_newrelic_trace(#{options_arg.join(',')}) do
152
+ #{traced_method.to_s}_without_newrelic_transaction_trace#{punctuation}(*args, &block)
153
+ end
154
+ end
155
+ EOC
156
+ without_method_name = "#{traced_method.to_s}_without_newrelic_transaction_trace#{punctuation}"
157
+ with_method_name = "#{traced_method.to_s}_with_newrelic_transaction_trace#{punctuation}"
158
+ alias_method without_method_name, method.to_s
159
+ alias_method method.to_s, with_method_name
160
+ send visibility, method
161
+ send visibility, with_method_name
162
+ ::NewRelic::Agent.logger.debug("Traced transaction: class = #{self.name}, method = #{method.to_s}, options = #{options.inspect}")
163
+ end
164
+ end
165
+
166
+ # Must be implemented in the controller class:
167
+ # Determine the path that is used in the metric name for
168
+ # the called controller action. Of the form controller_path/action_name
169
+ #
170
+ def newrelic_metric_path(action_name_override = nil) # :nodoc:
171
+ raise "Not implemented!"
172
+ end
173
+
174
+ # Yield to the given block with NewRelic tracing. Used by
175
+ # default instrumentation on controller actions in Rails and Merb.
176
+ # But it can also be used in custom instrumentation of controller
177
+ # methods and background tasks.
178
+ #
179
+ # This is the method invoked by instrumentation added by the
180
+ # <tt>ClassMethods#add_transaction_tracer</tt>.
181
+ #
182
+ # Here's a more verbose version of the example shown in
183
+ # <tt>ClassMethods#add_transaction_tracer</tt> using this method instead of
184
+ # #add_transaction_tracer.
185
+ #
186
+ # Below is a controller with an +invoke_operation+ action which
187
+ # dispatches to more specific operation methods based on a
188
+ # parameter (very dangerous, btw!). With this instrumentation,
189
+ # the +invoke_operation+ action is ignored but the operation
190
+ # methods show up in New Relic as if they were first class controller
191
+ # actions
192
+ #
193
+ # MyController < ActionController::Base
194
+ # include NewRelic::Agent::Instrumentation::ControllerInstrumentation
195
+ # # dispatch the given op to the method given by the service parameter.
196
+ # def invoke_operation
197
+ # op = params['operation']
198
+ # perform_action_with_newrelic_trace(:name => op) do
199
+ # send op, params['message']
200
+ # end
201
+ # end
202
+ # # Ignore the invoker to avoid double counting
203
+ # newrelic_ignore :only => 'invoke_operation'
204
+ # end
205
+ #
206
+ #
207
+ # When invoking this method explicitly as in the example above, pass in a
208
+ # block to measure with some combination of options:
209
+ #
210
+ # * <tt>:category => :controller</tt> indicates that this is a
211
+ # controller action and will appear with all the other actions. This
212
+ # is the default.
213
+ # * <tt>:category => :task</tt> indicates that this is a
214
+ # background task and will show up in New Relic with other background
215
+ # tasks instead of in the controllers list
216
+ # * <tt>:category => :rack</tt> if you are instrumenting a rack
217
+ # middleware call. The <tt>:name</tt> is optional, useful if you
218
+ # have more than one potential transaction in the #call.
219
+ # * <tt>:category => :uri</tt> indicates that this is a
220
+ # web transaction whose name is a normalized URI, where 'normalized'
221
+ # means the URI does not have any elements with data in them such
222
+ # as in many REST URIs.
223
+ # * <tt>:name => action_name</tt> is used to specify the action
224
+ # name used as part of the metric name
225
+ # * <tt>:params => {...}</tt> to provide information about the context
226
+ # of the call, used in transaction trace display, for example:
227
+ # <tt>:params => { :account => @account.name, :file => file.name }</tt>
228
+ # These are treated similarly to request parameters in web transactions.
229
+ #
230
+ # Seldomly used options:
231
+ #
232
+ # * <tt>:force => true</tt> indicates you should capture all
233
+ # metrics even if the #newrelic_ignore directive was specified
234
+ # * <tt>:class_name => aClass.name</tt> is used to override the name
235
+ # of the class when used inside the metric name. Default is the
236
+ # current class.
237
+ # * <tt>:path => metric_path</tt> is *deprecated* in the public API. It
238
+ # allows you to set the entire metric after the category part. Overrides
239
+ # all the other options.
240
+ # * <tt>:request => Rack::Request#new(env)</tt> is used to pass in a
241
+ # request object that may respond to uri and referer.
242
+ #
243
+ # If a single argument is passed in, it is treated as a metric
244
+ # path. This form is deprecated.
245
+ def perform_action_with_newrelic_trace(*args, &block)
246
+ request = newrelic_request(args)
247
+ NewRelic::Agent::TransactionInfo.reset(request)
248
+
249
+ # Skip instrumentation based on the value of 'do_not_trace' and if
250
+ # we aren't calling directly with a block.
251
+ if !block_given? && do_not_trace?
252
+ # Also ignore all instrumentation in the call sequence
253
+ NewRelic::Agent.disable_all_tracing do
254
+ return perform_action_without_newrelic_trace(*args)
255
+ end
256
+ end
257
+
258
+ control = NewRelic::Control.instance
259
+ return perform_action_with_newrelic_profile(args, &block) if control.profiling?
260
+
261
+ frame_data = _push_metric_frame(block_given? ? args : [])
262
+ begin
263
+ NewRelic::Agent.trace_execution_scoped frame_data.recorded_metrics, :force => frame_data.force_flag do
264
+ frame_data.start_transaction
265
+ begin
266
+ NewRelic::Agent::BusyCalculator.dispatcher_start frame_data.start
267
+ result = if block_given?
268
+ yield
269
+ else
270
+ perform_action_without_newrelic_trace(*args)
271
+ end
272
+ if defined?(request) && request && defined?(response) && response
273
+ if !Agent.config[:disable_mobile_headers]
274
+ NewRelic::Agent::BrowserMonitoring.insert_mobile_response_header(request, response)
275
+ end
276
+ end
277
+ result
278
+ rescue => e
279
+ frame_data.notice_error(e)
280
+ raise
281
+ end
282
+ end
283
+ ensure
284
+ NewRelic::Agent::BusyCalculator.dispatcher_finish
285
+ # Look for a metric frame in the thread local and process it.
286
+ # Clear the thread local when finished to ensure it only gets called once.
287
+ frame_data.record_apdex unless ignore_apdex?
288
+ frame_data.pop
289
+
290
+ NewRelic::Agent::TransactionInfo.get.ignore_end_user = true if ignore_enduser?
291
+ end
292
+ end
293
+
294
+ protected
295
+
296
+ def newrelic_request(args)
297
+ opts = args.first
298
+ # passed as a parameter to add_transaction_tracer
299
+ if opts.respond_to?(:keys) && opts.respond_to?(:[]) && opts[:request]
300
+ opts[:request]
301
+ # in a Rack app
302
+ elsif opts.respond_to?(:keys) && opts.respond_to?(:[]) &&
303
+ opts['rack.version']
304
+ Rack::Request.new(args)
305
+ # in a Rails app
306
+ elsif self.respond_to?(:request)
307
+ self.request
308
+ end
309
+ end
310
+
311
+ # Should be implemented in the dispatcher class
312
+ def newrelic_response_code; end
313
+
314
+ def newrelic_request_headers
315
+ self.respond_to?(:request) && self.request.respond_to?(:headers) && self.request.headers
316
+ end
317
+
318
+ # overrideable method to determine whether to trace an action
319
+ # or not - you may override this in your controller and supply
320
+ # your own logic for ignoring transactions.
321
+ def do_not_trace?
322
+ _is_filtered?('do_not_trace')
323
+ end
324
+
325
+ # overrideable method to determine whether to trace an action
326
+ # for purposes of apdex measurement - you can use this to
327
+ # ignore things like api calls or other fast non-user-facing
328
+ # actions
329
+ def ignore_apdex?
330
+ _is_filtered?('ignore_apdex')
331
+ end
332
+
333
+ def ignore_enduser?
334
+ _is_filtered?('ignore_enduser')
335
+ end
336
+
337
+ private
338
+
339
+ # Profile the instrumented call. Dev mode only. Experimental
340
+ # - should definitely not be used on production applications
341
+ def perform_action_with_newrelic_profile(args)
342
+ frame_data = _push_metric_frame(block_given? ? args : [])
343
+ val = nil
344
+ NewRelic::Agent.trace_execution_scoped frame_data.metric_name do
345
+ MetricFrame.current(true).start_transaction
346
+ NewRelic::Agent.disable_all_tracing do
347
+ # turn on profiling
348
+ profile = RubyProf.profile do
349
+ if block_given?
350
+ val = yield
351
+ else
352
+ val = perform_action_without_newrelic_trace(*args)
353
+ end
354
+ end
355
+ NewRelic::Agent.instance.transaction_sampler.notice_profile profile
356
+ end
357
+ end
358
+ return val
359
+ ensure
360
+ frame_data.pop
361
+ end
362
+
363
+ def transaction_name(options={})
364
+ name = "#{category_name(options)}/#{path_name(options)}"
365
+ NewRelic::Agent.instance.transaction_rules.rename(name)
366
+ end
367
+
368
+ def category_name(options)
369
+ case options[:category]
370
+ when :controller, nil then 'Controller'
371
+ when :task then 'OtherTransaction/Background' # 'Task'
372
+ when :rack then 'Controller/Rack' #'WebTransaction/Rack'
373
+ when :uri then 'Controller' #'WebTransaction/Uri'
374
+ when :sinatra then 'Controller/Sinatra' #'WebTransaction/Uri'
375
+ # for internal use only
376
+ else options[:category].to_s
377
+ end
378
+ end
379
+
380
+ def path_name(options)
381
+ if options.any?
382
+ options[:path] || path_class_and_action(options)
383
+ else
384
+ newrelic_metric_path
385
+ end
386
+ end
387
+
388
+ def path_class_and_action(options)
389
+ metric_class = options[:class_name]
390
+
391
+ if !metric_class
392
+ if (self.is_a?(Class) || self.is_a?(Module))
393
+ metric_class = self.name
394
+ else
395
+ metric_class = self.class.name
396
+ end
397
+ end
398
+
399
+ [ metric_class, options[:name] ].compact.join('/')
400
+ end
401
+
402
+ # Write a metric frame onto a thread local if there isn't already one there.
403
+ # If there is one, just update it.
404
+ def _push_metric_frame(args) # :nodoc:
405
+ frame_data = NewRelic::Agent::Instrumentation::MetricFrame.current(true)
406
+
407
+ frame_data.apdex_start ||= _detect_upstream_wait(frame_data.start)
408
+ _record_queue_length
409
+
410
+ # If a block was passed in, then the arguments represent options for the instrumentation,
411
+ # not app method arguments.
412
+ options = {}
413
+ if args.any?
414
+ if args.last.is_a?(Hash)
415
+ options = args.pop
416
+ frame_data.force_flag = options[:force]
417
+ frame_data.request = options[:request] if options[:request]
418
+ end
419
+ available_params = options[:params] || {}
420
+ options[:name] ||= args.first
421
+ else
422
+ available_params = self.respond_to?(:params) ? self.params : {}
423
+ end
424
+ frame_data.request ||= self.request if self.respond_to? :request
425
+
426
+ txn_name = transaction_name(options || {})
427
+
428
+ frame_data.push(txn_name)
429
+ NewRelic::Agent::TransactionInfo.get.transaction_name = txn_name
430
+ frame_data.filtered_params = (respond_to? :filter_parameters) ? filter_parameters(available_params) : available_params
431
+ frame_data
432
+ end
433
+
434
+ # Filter out a request if it matches one of our parameters for
435
+ # ignoring it - the key is either 'do_not_trace' or 'ignore_apdex'
436
+ def _is_filtered?(key)
437
+ ignore_actions = self.class.newrelic_read_attr(key) if self.class.respond_to? :newrelic_read_attr
438
+ case ignore_actions
439
+ when nil; false
440
+ when Hash
441
+ only_actions = Array(ignore_actions[:only])
442
+ except_actions = Array(ignore_actions[:except])
443
+ only_actions.include?(action_name.to_sym) || (except_actions.any? && !except_actions.include?(action_name.to_sym))
444
+ else
445
+ true
446
+ end
447
+ end
448
+ # Take a guess at a measure representing the number of requests waiting in mongrel
449
+ # or heroku.
450
+ def _record_queue_length
451
+ if newrelic_request_headers
452
+ if queue_depth = newrelic_request_headers['HTTP_X_HEROKU_QUEUE_DEPTH']
453
+ queue_depth = queue_depth.to_i rescue nil
454
+ elsif mongrel = NewRelic::Control.instance.local_env.mongrel
455
+ # Always subtrace 1 for the active mongrel
456
+ queue_depth = [mongrel.workers.list.length.to_i - 1, 0].max rescue nil
457
+ end
458
+ NewRelic::Agent.agent.stats_engine.get_stats_no_scope('Mongrel/Queue Length').trace_call(queue_depth) if queue_depth
459
+ end
460
+ end
461
+
462
+ # Return a Time instance representing the upstream start time.
463
+ # now is a Time instance to fall back on if no other candidate
464
+ # for the start time is found.
465
+ def _detect_upstream_wait(now)
466
+ if newrelic_request_headers
467
+ queue_start = QueueTime.parse_frontend_timestamp(newrelic_request_headers, now)
468
+ QueueTime.record_frontend_metrics(queue_start, now) if queue_start
469
+ end
470
+ queue_start || now
471
+ rescue => e
472
+ ::NewRelic::Agent.logger.error("Error detecting upstream wait time:", e)
473
+ now
474
+ end
475
+
476
+ # returns the NewRelic::Agent::Stats object associated
477
+ # with the dispatcher time measurement
478
+ def _dispatch_stat
479
+ NewRelic::Agent.agent.stats_engine.get_stats_no_scope 'HttpDispatcher'
480
+ end
481
+
482
+ end
483
+ end
484
+ end
485
+ end