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,5 @@
1
+ # This config is used when setting up a basic rails environment for running the
2
+ # unit tests.
3
+ test:
4
+ database: ':memory:'
5
+ adapter: 'sqlite3'
@@ -0,0 +1,20 @@
1
+ -----BEGIN CERTIFICATE-----
2
+ MIIDODCCAiCgAwIBAgIBADANBgkqhkiG9w0BAQUFADBCMREwDwYDVQQDDAhzZWN1
3
+ cml0eTEYMBYGCgmSJomT8ixkARkWCG5ld3JlbGljMRMwEQYKCZImiZPyLGQBGRYD
4
+ Y29tMB4XDTEzMDIxMjE5MDcwN1oXDTE0MDIxMjE5MDcwN1owQjERMA8GA1UEAwwI
5
+ c2VjdXJpdHkxGDAWBgoJkiaJk/IsZAEZFghuZXdyZWxpYzETMBEGCgmSJomT8ixk
6
+ ARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJyYRvlk1XUo
7
+ 8JhWQcE/v6RmpK//JbeKvTKnmWVUKz5oTDSOg/LKEhzChpJJVSOMJHCxd4OoxkIN
8
+ pjQF5U2af1m5ONeN1j4p4MujbwNeqxsJmixGLK/BZ9xTnbpYAa6xCRN1UfEcu3O9
9
+ jjLHX3c63ghldwRBn/c2ZD6anMtDeq3C5MLiycFs9h7JXOa3cTTHLZknkYIoHMKN
10
+ EFri5zlks50lbeaVvFRm4IMrYWRsEwzLZWaMOy68BVZe0UlBBKSMnzJfWkbdRRcm
11
+ xqu7viu4hrrCGjUmdHKnl6tf7BY7wqQyKjj+O5DhayKmKRuQcEX8QVnsM+ayqiVU
12
+ EtMiwNScUnsCAwEAAaM5MDcwCQYDVR0TBAIwADAdBgNVHQ4EFgQUOauaMsU0Elp6
13
+ hiUisj4l63ZunSUwCwYDVR0PBAQDAgSwMA0GCSqGSIb3DQEBBQUAA4IBAQAuwrHh
14
+ jOjIfAQoEbGakiwHTeImqmC1EjBEWb1+U+rC2OcsSQ3+2Q0mGq2u3lAphAeLa6i5
15
+ WXb5OdQqZY2aI7NgMxRG98/+TcIlAT8tDR0e6/+QBlBuDXP3YI5Nuhp5U4LEvghr
16
+ jEPaEo0AFPc1JpSO/zKmktU+e9VRAE+q55gLthP8fe0uZvtGUn0KgDbXJyOuGlHF
17
+ J93N937OcyA2rD8gR1qkr3/0/we1dwLZnL6kN4p8nGzPgXZgOHsmTdYZ2ryYowtb
18
+ Kc9+v+QxnbZYpu2IaPXOvm3T8G4O6qZvhnLh/Uien++Dj8eFBecTPoM8pVjK3ph5
19
+ n/EwuZCcE6ghtCCM
20
+ -----END CERTIFICATE-----
data/init.rb ADDED
@@ -0,0 +1,31 @@
1
+ # This is the initialization for the New Relic Ruby Agent when used as
2
+ # a plugin
3
+ require 'new_relic/control'
4
+
5
+ # If you are having problems seeing data, be sure and check the
6
+ # newrelic_agent.log files in the log diretory of your application
7
+ #
8
+ # If you can't find any log files and you don't see anything in your
9
+ # application log files, try uncommenting the two lines at the
10
+ # bottom of this file to verify the plugin is being loaded,
11
+ # then send the output to support@newrelic.com if you are unable to
12
+ # resolve the issue.
13
+
14
+ # Initializer for the NewRelic Ruby Agent
15
+
16
+ # After verison 2.0 of Rails we can access the configuration directly.
17
+ # We need it to add dev mode routes after initialization finished.
18
+
19
+ begin
20
+
21
+ current_config = if defined?(config)
22
+ config
23
+ elsif defined?(Rails.configuration)
24
+ Rails.configuration
25
+ end
26
+
27
+ NewRelic::Control.instance.init_plugin :config => current_config
28
+
29
+ rescue => e
30
+ ::NewRelic::Agent.logger.error "Error initializing New Relic plugin. Agent is disabled.", e
31
+ end
data/install.rb ADDED
@@ -0,0 +1,9 @@
1
+ if __FILE__ == $0 || $0 =~ /script\/plugin/
2
+ $LOAD_PATH << File.expand_path(File.join(File.dirname(__FILE__), 'lib'))
3
+ require 'new_relic/command'
4
+ begin
5
+ NewRelic::Command::Install.new(:quiet => true, :app_name => 'My Application').run
6
+ rescue NewRelic::Command::CommandFailure => e
7
+ $stderr.puts e.message
8
+ end
9
+ end
@@ -0,0 +1,3 @@
1
+ path = File.expand_path('../vendor/gems/dependency_detection-0.0.1.build/lib', File.dirname(__FILE__))
2
+ $LOAD_PATH << path unless $LOAD_PATH.include?(path)
3
+ require 'dependency_detection'
@@ -0,0 +1,5 @@
1
+ unless defined?(NewRelic) && defined?(NewRelic::MetricParser)
2
+ vendored_metric_parser = File.expand_path('../../vendor/gems/metric_parser-0.1.0.pre1/lib/', __FILE__)
3
+ $:.unshift vendored_metric_parser unless $:.include?(vendored_metric_parser)
4
+ require 'metric_parser'
5
+ end
@@ -0,0 +1,488 @@
1
+ require 'forwardable'
2
+ require 'new_relic/control'
3
+
4
+ # = New Relic Ruby Agent
5
+ #
6
+ # New Relic is a performance monitoring application for applications
7
+ # running in production. For more information on New Relic please visit
8
+ # http://www.newrelic.com.
9
+ #
10
+ # The New Relic Ruby Agent can be installed in Rails applications to
11
+ # gather runtime performance metrics, traces, and errors for display
12
+ # in a Developer Mode middleware (mapped to /newrelic in your application
13
+ # server) or for monitoring and analysis at http://rpm.newrelic.com
14
+ # with just about any Ruby application.
15
+ #
16
+ # == Getting Started
17
+ # For instructions on installation and setup, see
18
+ # the README[link:./files/README_rdoc.html] file.
19
+ #
20
+ # == Using with Rack/Metal
21
+ #
22
+ # To instrument Rack middlwares or Metal apps, refer to the docs in
23
+ # NewRelic::Agent::Instrumentation::Rack.
24
+ #
25
+ # == Ruby Agent API
26
+ #
27
+ # For details on the Ruby Agent API, refer to NewRelic::Agent.
28
+ #
29
+ # == Customizing the Ruby Agent
30
+ #
31
+ # For detailed information on customizing the Ruby Agent
32
+ # please visit our {support and documentation site}[http://support.newrelic.com].
33
+ #
34
+ module NewRelic
35
+ # == Ruby Agent APIs
36
+ # This module contains the public API methods for the Ruby Agent.
37
+ #
38
+ # For adding custom instrumentation to method invocations, refer to
39
+ # the docs in the class NewRelic::Agent::MethodTracer.
40
+ #
41
+ # For information on how to customize the controller
42
+ # instrumentation, or to instrument something other than Rails so
43
+ # that high level dispatcher actions or background tasks show up as
44
+ # first class operations in New Relic, refer to
45
+ # NewRelic::Agent::Instrumentation::ControllerInstrumentation and
46
+ # NewRelic::Agent::Instrumentation::ControllerInstrumentation::ClassMethods.
47
+ #
48
+ # Methods in this module as well as documented methods in
49
+ # NewRelic::Agent::MethodTracer and
50
+ # NewRelic::Agent::Instrumentation::ControllerInstrumentation are
51
+ # available to applications. When the agent is not enabled the
52
+ # method implementations are stubbed into no-ops to reduce overhead.
53
+ #
54
+ # Methods and classes in other parts of the agent are not guaranteed
55
+ # to be available between releases.
56
+ #
57
+ # Refer to the online docs at support.newrelic.com to see how to
58
+ # access the data collected by custom instrumentation, or e-mail
59
+ # support at New Relic for help.
60
+ module Agent
61
+ extend self
62
+ extend Forwardable
63
+
64
+ require 'new_relic/version'
65
+ require 'new_relic/local_environment'
66
+ require 'new_relic/metrics'
67
+ require 'new_relic/metric_spec'
68
+ require 'new_relic/metric_data'
69
+ require 'new_relic/collection_helper'
70
+ require 'new_relic/transaction_analysis'
71
+ require 'new_relic/transaction_sample'
72
+ require 'new_relic/url_rule'
73
+ require 'new_relic/noticed_error'
74
+ require 'new_relic/timer_lib'
75
+
76
+ require 'new_relic/agent'
77
+ require 'new_relic/agent/stats'
78
+ require 'new_relic/agent/chained_call'
79
+ require 'new_relic/agent/browser_monitoring'
80
+ require 'new_relic/agent/cross_app_monitor'
81
+ require 'new_relic/agent/agent'
82
+ require 'new_relic/agent/shim_agent'
83
+ require 'new_relic/agent/method_tracer'
84
+ require 'new_relic/agent/worker_loop'
85
+ require 'new_relic/agent/stats_engine'
86
+ require 'new_relic/agent/transaction_sampler'
87
+ require 'new_relic/agent/sql_sampler'
88
+ require 'new_relic/agent/thread_profiler'
89
+ require 'new_relic/agent/error_collector'
90
+ require 'new_relic/agent/busy_calculator'
91
+ require 'new_relic/agent/sampler'
92
+ require 'new_relic/agent/database'
93
+ require 'new_relic/agent/pipe_channel_manager'
94
+ require 'new_relic/agent/transaction_info'
95
+ require 'new_relic/agent/configuration'
96
+ require 'new_relic/agent/rules_engine'
97
+
98
+ require 'new_relic/agent/instrumentation/controller_instrumentation'
99
+
100
+ require 'new_relic/agent/samplers/cpu_sampler'
101
+ require 'new_relic/agent/samplers/memory_sampler'
102
+ require 'new_relic/agent/samplers/object_sampler'
103
+ require 'new_relic/agent/samplers/delayed_job_sampler'
104
+ require 'set'
105
+ require 'thread'
106
+ require 'resolv'
107
+
108
+ extend NewRelic::Agent::Configuration::Instance
109
+
110
+ # An exception that is thrown by the server if the agent license is invalid.
111
+ class LicenseException < StandardError; end
112
+
113
+ # An exception that forces an agent to stop reporting until its mongrel is restarted.
114
+ class ForceDisconnectException < StandardError; end
115
+
116
+ # An exception that forces an agent to restart.
117
+ class ForceRestartException < StandardError; end
118
+
119
+ # Used to blow out of a periodic task without logging a an error, such as for routine
120
+ # failures.
121
+ class ServerConnectionException < StandardError; end
122
+
123
+ # When a post is either too large or poorly formatted we should
124
+ # drop it and not try to resend
125
+ class UnrecoverableServerException < ServerConnectionException; end
126
+
127
+ # An unrecoverable client-side error that prevents the agent from continuing
128
+ class UnrecoverableAgentException < ServerConnectionException; end
129
+
130
+ # Reserved for future use. Meant to represent a problem on the server side.
131
+ class ServerError < StandardError; end
132
+
133
+ class BackgroundLoadingError < StandardError; end
134
+
135
+ @agent = nil
136
+
137
+ # The singleton Agent instance. Used internally.
138
+ def agent #:nodoc:
139
+ @agent || raise("Plugin not initialized!")
140
+ end
141
+
142
+ def agent=(new_instance)#:nodoc:
143
+ @agent = new_instance
144
+ end
145
+
146
+ alias instance agent #:nodoc:
147
+
148
+ # Primary interface to logging is fronted by this accessor
149
+ # Access via ::NewRelic::Agent.logger
150
+ def logger
151
+ @logger || StartupLogger.instance
152
+ end
153
+
154
+ def logger=(log)
155
+ @logger = log
156
+ end
157
+
158
+ # Record a value for the given metric name.
159
+ #
160
+ # This method should be used to record event-based metrics such as method
161
+ # calls that are associated with a specific duration or magnitude.
162
+ #
163
+ # +metric_name+ should follow a slash separated path convention. Application
164
+ # specific metrics should begin with "Custom/".
165
+ #
166
+ # +value+ should be either a single Numeric value representing the duration/
167
+ # magnitude of the event being recorded, or a Hash containing :count,
168
+ # :total, :min, :max, and :sum_of_squares keys. The latter form is useful
169
+ # for recording pre-aggregated metrics collected externally.
170
+ #
171
+ # This method is safe to use from any thread.
172
+ #
173
+ # @api public
174
+ def record_metric(metric_name, value)
175
+ if value.is_a?(Hash)
176
+ stats = NewRelic::Agent::Stats.new
177
+ stats.call_count = value[:count]
178
+ stats.total_call_time = value[:total]
179
+ stats.total_exclusive_time = value[:total]
180
+ stats.min_call_time = value[:min]
181
+ stats.max_call_time = value[:max]
182
+ stats.sum_of_squares = value[:sum_of_squares]
183
+ value = stats
184
+ end
185
+ agent.stats_engine.record_metric(metric_name, value)
186
+ end
187
+
188
+ # Increment a simple counter metric.
189
+ #
190
+ # +metric_name+ should follow a slash separated path convention. Application
191
+ # specific metrics should begin with "Custom/".
192
+ #
193
+ # This method is safe to use from any thread.
194
+ #
195
+ # @api public
196
+ def increment_metric(metric_name, amount=1)
197
+ agent.stats_engine.record_metric(metric_name) do |stats|
198
+ stats.increment_count(amount)
199
+ end
200
+ end
201
+
202
+ # Get or create a statistics gatherer that will aggregate numerical data
203
+ # under a metric name.
204
+ #
205
+ # +metric_name+ should follow a slash separated path convention. Application
206
+ # specific metrics should begin with "Custom/".
207
+ #
208
+ # Return a NewRelic::Agent::Stats that accepts data
209
+ # via calls to add_data_point(value).
210
+ #
211
+ # @deprecated
212
+ def get_stats(metric_name, use_scope=false)
213
+ agent.stats_engine.get_stats(metric_name, use_scope)
214
+ end
215
+
216
+ alias get_stats_no_scope get_stats
217
+
218
+ # Call this to manually start the Agent in situations where the Agent does
219
+ # not auto-start.
220
+ #
221
+ # When the app environment loads, so does the Agent. However, the
222
+ # Agent will only connect to the service if a web front-end is found. If
223
+ # you want to selectively monitor ruby processes that don't use
224
+ # web plugins, then call this method in your code and the Agent
225
+ # will fire up and start reporting to the service.
226
+ #
227
+ # Options are passed in as overrides for values in the
228
+ # newrelic.yml, such as app_name. In addition, the option +log+
229
+ # will take a logger that will be used instead of the standard
230
+ # file logger. The setting for the newrelic.yml section to use
231
+ # (ie, RAILS_ENV) can be overridden with an :env argument.
232
+ #
233
+ def manual_start(options={})
234
+ raise "Options must be a hash" unless Hash === options
235
+ if options[:start_channel_listener]
236
+ NewRelic::Agent::PipeChannelManager.listener.start
237
+ end
238
+ NewRelic::Control.instance.init_plugin({ :agent_enabled => true, :sync_startup => true }.merge(options))
239
+ end
240
+
241
+ # Register this method as a callback for processes that fork
242
+ # jobs.
243
+ #
244
+ # If the master/parent connects to the agent prior to forking the
245
+ # agent in the forked process will use that agent_run. Otherwise
246
+ # the forked process will establish a new connection with the
247
+ # server.
248
+ #
249
+ # Use this especially when you fork the process to run background
250
+ # jobs or other work. If you are doing this with a web dispatcher
251
+ # that forks worker processes then you will need to force the
252
+ # agent to reconnect, which it won't do by default. Passenger and
253
+ # Unicorn are already handled, nothing special needed for them.
254
+ #
255
+ # Options:
256
+ # * <tt>:force_reconnect => true</tt> to force the spawned process to
257
+ # establish a new connection, such as when forking a long running process.
258
+ # The default is false--it will only connect to the server if the parent
259
+ # had not connected.
260
+ # * <tt>:keep_retrying => false</tt> if we try to initiate a new
261
+ # connection, this tells me to only try it once so this method returns
262
+ # quickly if there is some kind of latency with the server.
263
+ def after_fork(options={})
264
+ agent.after_fork(options)
265
+ end
266
+
267
+ # Clear out any unsent metric data. See NewRelic::Agent::Agent#reset_stats
268
+ def reset_stats
269
+ agent.reset_stats
270
+ end
271
+
272
+ # Shutdown the agent. Call this before exiting. Sends any queued data
273
+ # and kills the background thread.
274
+ def shutdown(options={})
275
+ agent.shutdown(options)
276
+ end
277
+
278
+ # Add instrumentation files to the agent. The argument should be
279
+ # a glob matching ruby scripts which will be executed at the time
280
+ # instrumentation is loaded. Since instrumentation is not loaded
281
+ # when the agent is not running it's better to use this method to
282
+ # register instrumentation than just loading the files directly,
283
+ # although that probably also works.
284
+ def add_instrumentation(file_pattern)
285
+ NewRelic::Control.instance.add_instrumentation file_pattern
286
+ end
287
+
288
+ # This method sets the block sent to this method as a sql
289
+ # obfuscator. The block will be called with a single String SQL
290
+ # statement to obfuscate. The method must return the obfuscated
291
+ # String SQL. If chaining of obfuscators is required, use type =
292
+ # :before or :after
293
+ #
294
+ # type = :before, :replace, :after
295
+ #
296
+ # Example:
297
+ #
298
+ # NewRelic::Agent.set_sql_obfuscator(:replace) do |sql|
299
+ # my_obfuscator(sql)
300
+ # end
301
+ #
302
+ def set_sql_obfuscator(type = :replace, &block)
303
+ NewRelic::Agent::Database.set_sql_obfuscator(type, &block)
304
+ end
305
+
306
+
307
+ # This method sets the state of sql recording in the transaction
308
+ # sampler feature. Within the given block, no sql will be recorded
309
+ #
310
+ # usage:
311
+ #
312
+ # NewRelic::Agent.disable_sql_recording do
313
+ # ...
314
+ # end
315
+ #
316
+ def disable_sql_recording
317
+ state = agent.set_record_sql(false)
318
+ begin
319
+ yield
320
+ ensure
321
+ agent.set_record_sql(state)
322
+ end
323
+ end
324
+
325
+ # This method disables the recording of transaction traces in the given
326
+ # block. See also #disable_all_tracing
327
+ def disable_transaction_tracing
328
+ state = agent.set_record_tt(false)
329
+ begin
330
+ yield
331
+ ensure
332
+ agent.set_record_tt(state)
333
+ end
334
+ end
335
+
336
+ # Cancel the collection of the current transaction in progress, if
337
+ # any. Only affects the transaction started on this thread once
338
+ # it has started and before it has completed.
339
+ def abort_transaction!
340
+ NewRelic::Agent::Instrumentation::MetricFrame.abort_transaction!
341
+ end
342
+
343
+ # Yield to the block without collecting any metrics or traces in
344
+ # any of the subsequent calls. If executed recursively, will keep
345
+ # track of the first entry point and turn on tracing again after
346
+ # leaving that block. This uses the thread local
347
+ # +newrelic_untrace+
348
+ def disable_all_tracing
349
+ agent.push_trace_execution_flag(false)
350
+ yield
351
+ ensure
352
+ agent.pop_trace_execution_flag
353
+ end
354
+
355
+ # Check to see if we are capturing metrics currently on this thread.
356
+ def is_execution_traced?
357
+ untraced = Thread.current[:newrelic_untraced]
358
+ untraced.nil? || untraced.last != false
359
+ end
360
+
361
+ # helper method to check the thread local to determine whether the
362
+ # transaction in progress is traced or not
363
+ def is_transaction_traced?
364
+ Thread::current[:record_tt] != false
365
+ end
366
+
367
+ # helper method to check the thread local to determine whether sql
368
+ # is being recorded or not
369
+ def is_sql_recorded?
370
+ Thread::current[:record_sql] != false
371
+ end
372
+
373
+ # Set a filter to be applied to errors that the Ruby Agent will
374
+ # track. The block should evalute to the exception to track
375
+ # (which could be different from the original exception) or nil to
376
+ # ignore this exception.
377
+ #
378
+ # The block is yielded to with the exception to filter.
379
+ #
380
+ # Return the new block or the existing filter Proc if no block is passed.
381
+ #
382
+ def ignore_error_filter(&block)
383
+ agent.error_collector.ignore_error_filter(&block)
384
+ end
385
+
386
+ # Record the given error. It will be passed through the
387
+ # #ignore_error_filter if there is one.
388
+ #
389
+ # * <tt>exception</tt> is the exception which will be recorded. May also be
390
+ # an error message.
391
+ # Options:
392
+ # * <tt>:uri</tt> => The request path, minus any request params or query string.
393
+ # * <tt>:referer</tt> => The URI of the referer
394
+ # * <tt>:metric</tt> => The metric name associated with the transaction
395
+ # * <tt>:request_params</tt> => Request parameters, already filtered if necessary
396
+ # * <tt>:custom_params</tt> => Custom parameters
397
+ #
398
+ # Anything left over is treated as custom params.
399
+ #
400
+ def notice_error(exception, options={})
401
+ NewRelic::Agent::Instrumentation::MetricFrame.notice_error(exception, options)
402
+ end
403
+
404
+ # Add parameters to the current transaction trace (and traced error if any)
405
+ # on the call stack.
406
+ #
407
+ def add_custom_parameters(params)
408
+ NewRelic::Agent::Instrumentation::MetricFrame.add_custom_parameters(params)
409
+ end
410
+
411
+ # Set attributes about the user making this request. These attributes will be automatically
412
+ # appended to any Transaction Trace or Error that is collected. These attributes
413
+ # will also be collected for RUM requests.
414
+ #
415
+ # Attributes (hash)
416
+ # * <tt>:user</tt> => user name or ID
417
+ # * <tt>:account</tt> => account name or ID
418
+ # * <tt>:product</tt> => product name or level
419
+ #
420
+ def set_user_attributes(attributes)
421
+ NewRelic::Agent::Instrumentation::MetricFrame.set_user_attributes(attributes)
422
+ end
423
+
424
+ # The #add_request_parameters method is aliased to #add_custom_parameters
425
+ # and is now deprecated.
426
+ alias add_request_parameters add_custom_parameters #:nodoc:
427
+
428
+ # Yield to a block that is run with a database metric name
429
+ # context. This means the Database instrumentation will use this
430
+ # for the metric name if it does not otherwise know about a model.
431
+ # This is re-entrant.
432
+ #
433
+ # * <tt>model</tt> is the DB model class
434
+ # * <tt>method</tt> is the name of the finder method or other
435
+ # method to identify the operation with.
436
+ def with_database_metric_name(model, method, &block)
437
+ if frame = NewRelic::Agent::Instrumentation::MetricFrame.current
438
+ frame.with_database_metric_name(model, method, &block)
439
+ else
440
+ yield
441
+ end
442
+ end
443
+
444
+ # Record a web transaction from an external source. This will
445
+ # process the response time, error, and score an apdex value.
446
+ #
447
+ # First argument is a float value, time in seconds. Option
448
+ # keys are strings.
449
+ #
450
+ # == Identifying the transaction
451
+ # * <tt>'uri' => uri</tt> to record the value for a given web request.
452
+ # If not provided, just record the aggregate dispatcher and apdex scores.
453
+ # * <tt>'metric' => metric_name</tt> to record with a general metric name
454
+ # like +OtherTransaction/Background/Class/method+. Ignored if +uri+ is
455
+ # provided.
456
+ #
457
+ # == Error options
458
+ # Provide one of the following:
459
+ # * <tt>'is_error' => true</tt> if an unknown error occurred
460
+ # * <tt>'error_message' => msg</tt> if an error message is available
461
+ # * <tt>'exception' => exception</tt> if a ruby exception is recorded
462
+ #
463
+ # == Misc options
464
+ # Additional information captured in errors
465
+ # * <tt>'referer' => referer_url</tt>
466
+ # * <tt>'request_params' => hash</tt> to record a set of name/value pairs as the
467
+ # request parameters.
468
+ # * <tt>'custom_params' => hash</tt> to record extra information in traced errors
469
+ #
470
+ def record_transaction(response_sec, options = {})
471
+ agent.record_transaction(response_sec, options)
472
+ end
473
+
474
+ # Returns a Javascript string which should be injected into the very top of the response body
475
+ #
476
+ def browser_timing_header
477
+ agent.browser_timing_header
478
+ end
479
+
480
+ # Returns a Javascript string which should be injected into the very bottom of the response body
481
+ #
482
+ def browser_timing_footer
483
+ agent.browser_timing_footer
484
+ end
485
+
486
+ def_delegator :'NewRelic::Agent::PipeChannelManager', :register_report_channel
487
+ end
488
+ end