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,119 @@
1
+ require 'erb'
2
+
3
+ module NewRelic
4
+ module Agent
5
+ class TransactionInfo
6
+ DEFAULT_TRANSACTION_NAME = '(unknown)'
7
+
8
+ attr_accessor :token, :capture_deep_tt
9
+ attr_writer :transaction_name
10
+ attr_reader :start_time
11
+
12
+ def initialize
13
+ @guid = ""
14
+ @transaction_name = nil
15
+ @start_time = Time.now
16
+ @ignore_end_user = false
17
+ end
18
+
19
+ def transaction_name_set?
20
+ !@transaction_name.nil?
21
+ end
22
+
23
+ def transaction_name
24
+ @transaction_name || DEFAULT_TRANSACTION_NAME
25
+ end
26
+
27
+ def force_persist_sample?(sample)
28
+ token && sample.duration > Agent.config[:apdex_t]
29
+ end
30
+
31
+ def include_guid?
32
+ token && duration > Agent.config[:apdex_t]
33
+ end
34
+
35
+ def guid
36
+ @guid
37
+ end
38
+
39
+ def guid=(value)
40
+ @guid = value
41
+ end
42
+
43
+ def duration
44
+ Time.now - start_time
45
+ end
46
+
47
+ def ignore_end_user?
48
+ @ignore_end_user
49
+ end
50
+
51
+ def ignore_end_user=(value)
52
+ @ignore_end_user = value
53
+ end
54
+
55
+ def apdex_t
56
+ (Agent.config[:web_transactions_apdex] &&
57
+ Agent.config[:web_transactions_apdex][@transaction_name]) ||
58
+ Agent.config[:apdex_t]
59
+ end
60
+
61
+ def transaction_trace_threshold
62
+ key = :'transaction_tracer.transaction_threshold'
63
+ if Agent.config.source(key).class == Configuration::DefaultSource
64
+ apdex_t * 4
65
+ else
66
+ Agent.config[key]
67
+ end
68
+ end
69
+
70
+ def self.get()
71
+ Thread.current[:newrelic_transaction_info] ||= TransactionInfo.new
72
+ end
73
+
74
+ def self.set(instance)
75
+ Thread.current[:newrelic_transaction_info] = instance
76
+ end
77
+
78
+ def self.clear
79
+ Thread.current[:newrelic_transaction_info] = nil
80
+ end
81
+
82
+ # clears any existing transaction info object and initializes a new one.
83
+ # This starts the timer for the transaction.
84
+ def self.reset(request=nil)
85
+ clear
86
+ instance = get
87
+ instance.token = get_token(request)
88
+ end
89
+
90
+ def self.get_token(request)
91
+ return nil unless request
92
+
93
+ agent_flag = request.cookies['NRAGENT']
94
+ if agent_flag and agent_flag.instance_of? String
95
+ s = agent_flag.split("=")
96
+ if s.length == 2
97
+ if s[0] == "tk" && s[1]
98
+ ERB::Util.h(sanitize_token(s[1]))
99
+ end
100
+ end
101
+ else
102
+ nil
103
+ end
104
+ end
105
+
106
+ # Run through a collection of unsafe characters ( in the context of the token )
107
+ # and set the token to an empty string if any of them are found in the token so that
108
+ # potential XSS attacks via the token are avoided
109
+ def self.sanitize_token(token)
110
+
111
+ if ( /[<>'"]/ =~ token )
112
+ token.replace("")
113
+ end
114
+ token
115
+ end
116
+ end
117
+ end
118
+ end
119
+
@@ -0,0 +1,126 @@
1
+ require 'new_relic/collection_helper'
2
+ require 'new_relic/transaction_sample'
3
+ require 'new_relic/control'
4
+ require 'new_relic/agent/instrumentation/metric_frame'
5
+ module NewRelic
6
+ module Agent
7
+ # a builder is created with every sampled transaction, to dynamically
8
+ # generate the sampled data. It is a thread-local object, and is not
9
+ # accessed by any other thread so no need for synchronization.
10
+ class TransactionSampleBuilder
11
+ attr_reader :current_segment, :sample
12
+
13
+ include NewRelic::CollectionHelper
14
+
15
+ def initialize(time=Time.now)
16
+ @sample = NewRelic::TransactionSample.new(time.to_f)
17
+ @sample_start = time.to_f
18
+ @current_segment = @sample.root_segment
19
+ end
20
+
21
+ def sample_id
22
+ @sample.sample_id
23
+ end
24
+
25
+ def ignored?
26
+ @ignore || @sample.params[:path].nil?
27
+ end
28
+
29
+ def ignore_transaction
30
+ @ignore = true
31
+ end
32
+
33
+ def segment_limit
34
+ Agent.config[:'transaction_tracer.limit_segments']
35
+ end
36
+
37
+ def trace_entry(metric_name, time)
38
+ if @sample.count_segments < segment_limit()
39
+ segment = @sample.create_segment(time.to_f - @sample_start, metric_name)
40
+ @current_segment.add_called_segment(segment)
41
+ @current_segment = segment
42
+ if @sample.count_segments == segment_limit()
43
+ ::NewRelic::Agent.logger.debug("Segment limit of #{segment_limit} reached, ceasing collection.")
44
+ end
45
+ @current_segment
46
+ end
47
+ end
48
+
49
+ def trace_exit(metric_name, time)
50
+ return unless @sample.count_segments < segment_limit()
51
+ if metric_name != @current_segment.metric_name
52
+ fail "unbalanced entry/exit: #{metric_name} != #{@current_segment.metric_name}"
53
+ end
54
+ @current_segment.end_trace(time.to_f - @sample_start)
55
+ @current_segment = @current_segment.parent_segment
56
+ end
57
+
58
+ def finish_trace(time=Time.now.to_f)
59
+ # This should never get called twice, but in a rare case that we can't reproduce in house it does.
60
+ # log forensics and return gracefully
61
+ if @sample.frozen?
62
+ ::NewRelic::Agent.logger.error "Unexpected double-freeze of Transaction Trace Object: \n#{@sample.to_s}"
63
+ return
64
+ end
65
+ @sample.root_segment.end_trace(time.to_f - @sample_start)
66
+ @sample.params[:custom_params] ||= {}
67
+ @sample.params[:custom_params].merge!(normalize_params(NewRelic::Agent::Instrumentation::MetricFrame.custom_parameters))
68
+
69
+ txn_info = NewRelic::Agent::TransactionInfo.get
70
+ @sample.force_persist = txn_info.force_persist_sample?(sample)
71
+ @sample.threshold = txn_info.transaction_trace_threshold
72
+ @sample.freeze
73
+ @current_segment = nil
74
+ end
75
+
76
+ def scope_depth
77
+ depth = -1 # have to account for the root
78
+ current = @current_segment
79
+
80
+ while(current)
81
+ depth += 1
82
+ current = current.parent_segment
83
+ end
84
+
85
+ depth
86
+ end
87
+
88
+ def freeze
89
+ @sample.freeze unless sample.frozen?
90
+ end
91
+
92
+ def set_profile(profile)
93
+ @sample.profile = profile
94
+ end
95
+
96
+ def set_transaction_info(path, uri, params)
97
+ @sample.params[:path] = path
98
+
99
+ if Agent.config[:capture_params]
100
+ params = normalize_params params
101
+
102
+ @sample.params[:request_params].merge!(params)
103
+ @sample.params[:request_params].delete :controller
104
+ @sample.params[:request_params].delete :action
105
+ end
106
+ @sample.params[:uri] ||= uri || params[:uri]
107
+ end
108
+
109
+ def set_transaction_cpu_time(cpu_time)
110
+ @sample.params[:custom_params] ||= {}
111
+ @sample.params[:custom_params][:cpu_time] = cpu_time
112
+ end
113
+
114
+ # Set the metric name of the current segment to +new_name+ if
115
+ def rename_current_segment( new_name )
116
+ return unless @sample.count_segments < segment_limit()
117
+ @current_segment.metric_name = new_name
118
+ end
119
+
120
+ def sample
121
+ @sample
122
+ end
123
+
124
+ end
125
+ end
126
+ end
@@ -0,0 +1,459 @@
1
+ require 'new_relic/agent'
2
+ require 'new_relic/control'
3
+ require 'new_relic/agent/transaction_sample_builder'
4
+
5
+ module NewRelic
6
+ module Agent
7
+
8
+ # This class contains the logic of sampling a transaction -
9
+ # creation and modification of transaction samples
10
+ class TransactionSampler
11
+
12
+ # Module defining methods stubbed out when the agent is disabled
13
+ module Shim #:nodoc:
14
+ def notice_first_scope_push(*args); end
15
+ def notice_push_scope(*args); end
16
+ def notice_pop_scope(*args); end
17
+ def notice_scope_empty(*args); end
18
+ end
19
+
20
+ BUILDER_KEY = :transaction_sample_builder
21
+
22
+ attr_accessor :random_sampling, :sampling_rate
23
+ attr_accessor :slow_capture_threshold
24
+ attr_reader :samples, :last_sample, :disabled
25
+
26
+ def initialize
27
+
28
+ # @samples is an array of recent samples up to @max_samples in
29
+ # size - it's only used by developer mode
30
+ @samples = []
31
+ @force_persist = []
32
+ @max_samples = 100
33
+
34
+ # @harvest_count is a count of harvests used for random
35
+ # sampling - we pull 1 @random_sample in every @sampling_rate harvests
36
+ @harvest_count = 0
37
+ @random_sample = nil
38
+ @sampling_rate = Agent.config[:sample_rate]
39
+
40
+ # This lock is used to synchronize access to the @last_sample
41
+ # and related variables. It can become necessary on JRuby or
42
+ # any 'honest-to-god'-multithreaded system
43
+ @samples_lock = Mutex.new
44
+
45
+ Agent.config.register_callback(:'transaction_tracer.enabled') do |enabled|
46
+ if enabled
47
+ threshold = Agent.config[:'transaction_tracer.transaction_threshold']
48
+ ::NewRelic::Agent.logger.debug "Transaction tracing threshold is #{threshold} seconds."
49
+ else
50
+ ::NewRelic::Agent.logger.debug "Transaction traces will not be sent to the New Relic service."
51
+ end
52
+ end
53
+
54
+ Agent.config.register_callback(:'transaction_tracer.record_sql') do |config|
55
+ if config == 'raw'
56
+ ::NewRelic::Agent.logger.warn("Agent is configured to send raw SQL to the service")
57
+ end
58
+ end
59
+ end
60
+
61
+ # Returns the current sample id, delegated from `builder`
62
+ def current_sample_id
63
+ b=builder
64
+ b and b.sample_id
65
+ end
66
+
67
+ def enabled?
68
+ Agent.config[:'transaction_tracer.enabled'] || Agent.config[:developer_mode]
69
+ end
70
+
71
+ # Set with an integer value n, this takes one in every n
72
+ # harvested samples. It also resets the harvest count to a
73
+ # random integer between 0 and (n-1)
74
+ def sampling_rate=(val)
75
+ @sampling_rate = val.to_i
76
+ @harvest_count = rand(val.to_i).to_i
77
+ end
78
+
79
+
80
+ # Creates a new transaction sample builder, unless the
81
+ # transaction sampler is disabled. Takes a time parameter for
82
+ # the start of the transaction sample
83
+ def notice_first_scope_push(time)
84
+ start_builder(time.to_f) if enabled?
85
+ end
86
+
87
+ # This delegates to the builder to create a new open transaction
88
+ # segment for the specified scope, beginning at the optionally
89
+ # specified time.
90
+ #
91
+ # Note that in developer mode, this captures a stacktrace for
92
+ # the beginning of each segment, which can be fairly slow
93
+ def notice_push_scope(scope, time=Time.now)
94
+ return unless builder
95
+
96
+ builder.trace_entry(scope, time.to_f)
97
+
98
+ capture_segment_trace if Agent.config[:developer_mode]
99
+ end
100
+
101
+ # in developer mode, capture the stack trace with the segment.
102
+ # this is cpu and memory expensive and therefore should not be
103
+ # turned on in production mode
104
+ def capture_segment_trace
105
+ return unless Agent.config[:developer_mode]
106
+ segment = builder.current_segment
107
+ if segment
108
+ # Strip stack frames off the top that match /new_relic/agent/
109
+ trace = caller
110
+ while trace.first =~/\/lib\/new_relic\/agent\//
111
+ trace.shift
112
+ end
113
+
114
+ trace = trace[0..39] if trace.length > 40
115
+ segment[:backtrace] = trace
116
+ end
117
+ end
118
+
119
+ # Rename the latest scope's segment in the builder to +new_name+.
120
+ def rename_scope_segment( new_name )
121
+ return unless builder
122
+ builder.rename_current_segment( new_name )
123
+ end
124
+
125
+ # Defaults to zero, otherwise delegated to the transaction
126
+ # sample builder
127
+ def scope_depth
128
+ return 0 unless builder
129
+
130
+ builder.scope_depth
131
+ end
132
+
133
+ # Informs the transaction sample builder about the end of a
134
+ # traced scope
135
+ def notice_pop_scope(scope, time = Time.now)
136
+ return unless builder
137
+ raise "frozen already???" if builder.sample.frozen?
138
+ builder.trace_exit(scope, time.to_f)
139
+ end
140
+
141
+ # This is called when we are done with the transaction. We've
142
+ # unwound the stack to the top level. It also clears the
143
+ # transaction sample builder so that it won't continue to have
144
+ # scopes appended to it.
145
+ #
146
+ # It sets various instance variables to the finished sample,
147
+ # depending on which settings are active. See `store_sample`
148
+ def notice_scope_empty(time=Time.now)
149
+ last_builder = builder
150
+ return unless last_builder
151
+
152
+ last_builder.finish_trace(time.to_f)
153
+ clear_builder
154
+ return if last_builder.ignored?
155
+
156
+ @samples_lock.synchronize do
157
+ # NB this instance variable may be used elsewhere, it's not
158
+ # just a side effect
159
+ @last_sample = last_builder.sample
160
+ store_sample(@last_sample)
161
+ end
162
+ end
163
+
164
+ # Samples can be stored in three places: the random sample
165
+ # variable, when random sampling is active, the developer mode
166
+ # @samples array, and the @slowest_sample variable if it is
167
+ # slower than the current occupant of that slot
168
+ def store_sample(sample)
169
+ sampler_methods = [ :store_slowest_sample ]
170
+ if Agent.config[:developer_mode]
171
+ sampler_methods << :store_sample_for_developer_mode
172
+ end
173
+ if Agent.config[:'transaction_tracer.random_sample']
174
+ sampler_methods << :store_random_sample
175
+ end
176
+
177
+ sampler_methods.each{|sym| send(sym, sample) }
178
+
179
+ if NewRelic::Agent::TransactionInfo.get.force_persist_sample?(sample)
180
+ store_force_persist(sample)
181
+ end
182
+ end
183
+
184
+ # Only active when random sampling is true - this is very rarely
185
+ # used. Always store the most recent sample so that random
186
+ # sampling can pick a few of the samples to store, upon harvest
187
+ def store_random_sample(sample)
188
+ @random_sample = sample if Agent.config[:'transaction_tracer.random_sample']
189
+ end
190
+
191
+ def store_force_persist(sample)
192
+ @force_persist << sample
193
+
194
+ # WARNING - this clamp should be configurable
195
+ if @force_persist.length > 15
196
+ @force_persist.sort! {|a,b| b.duration <=> a.duration}
197
+ @force_persist = @force_persist[0..14]
198
+ end
199
+ end
200
+
201
+ # Samples take up a ton of memory, so we only store a lot of
202
+ # them in developer mode - we truncate to @max_samples
203
+ def store_sample_for_developer_mode(sample)
204
+ return unless Agent.config[:developer_mode]
205
+ @samples = [] unless @samples
206
+ @samples << sample
207
+ truncate_samples
208
+ end
209
+
210
+ # Sets @slowest_sample to the passed in sample if it is slower
211
+ # than the current sample in @slowest_sample
212
+ def store_slowest_sample(sample)
213
+ if slowest_sample?(@slowest_sample, sample) && sample.threshold &&
214
+ sample.duration >= sample.threshold
215
+ @slowest_sample = sample
216
+ end
217
+ end
218
+
219
+ # Checks to see if the old sample exists, or if its duration is
220
+ # less than the new sample
221
+ def slowest_sample?(old_sample, new_sample)
222
+ old_sample.nil? || (new_sample.duration > old_sample.duration)
223
+ end
224
+
225
+ # Smashes the @samples array down to the length of @max_samples
226
+ # by taking the last @max_samples elements of the array
227
+ def truncate_samples
228
+ if @samples.length > @max_samples
229
+ @samples = @samples[-@max_samples..-1]
230
+ end
231
+ end
232
+
233
+ # Delegates to the builder to store the path, uri, and
234
+ # parameters if the sampler is active
235
+ def notice_transaction(path, uri=nil, params={})
236
+ builder.set_transaction_info(path, uri, params) if enabled? && builder
237
+ end
238
+
239
+ # Tells the builder to ignore a transaction, if we are currently
240
+ # creating one. Only causes the sample to be ignored upon end of
241
+ # the transaction, and does not change the metrics gathered
242
+ # outside of the sampler
243
+ def ignore_transaction
244
+ builder.ignore_transaction if builder
245
+ end
246
+
247
+ # For developer mode profiling support - delegates to the builder
248
+ def notice_profile(profile)
249
+ builder.set_profile(profile) if builder
250
+ end
251
+
252
+ # Sets the CPU time used by a transaction, delegates to the builder
253
+ def notice_transaction_cpu_time(cpu_time)
254
+ builder.set_transaction_cpu_time(cpu_time) if builder
255
+ end
256
+
257
+ MAX_DATA_LENGTH = 16384
258
+ # This method is used to record metadata into the currently
259
+ # active segment like a sql query, memcache key, or Net::HTTP uri
260
+ #
261
+ # duration is seconds, float value.
262
+ def notice_extra_data(message, duration, key, config=nil, config_key=nil)
263
+ return unless builder
264
+ segment = builder.current_segment
265
+ if segment
266
+ new_message = self.class.truncate_message(append_new_message(segment[key],
267
+ message))
268
+ if key == :sql && config.respond_to?(:has_key?) && config.has_key?(:adapter)
269
+ segment[key] = Database::Statement.new(new_message)
270
+ segment[key].adapter = config[:adapter]
271
+ else
272
+ segment[key] = new_message
273
+ end
274
+ segment[config_key] = config if config_key
275
+ append_backtrace(segment, duration)
276
+ end
277
+ end
278
+
279
+ private :notice_extra_data
280
+
281
+ # Truncates the message to `MAX_DATA_LENGTH` if needed, and
282
+ # appends an ellipsis because it makes the trucation clearer in
283
+ # the UI
284
+ def self.truncate_message(message)
285
+ if message.length > (MAX_DATA_LENGTH - 4)
286
+ message[0..MAX_DATA_LENGTH - 4] + '...'
287
+ else
288
+ message
289
+ end
290
+ end
291
+
292
+ # Allows the addition of multiple pieces of metadata to one
293
+ # segment - i.e. traced method calls multiple sql queries
294
+ def append_new_message(old_message, message)
295
+ if old_message
296
+ old_message + ";\n" + message
297
+ else
298
+ message
299
+ end
300
+ end
301
+
302
+ # Appends a backtrace to a segment if that segment took longer
303
+ # than the specified duration
304
+ def append_backtrace(segment, duration)
305
+ if (duration >= Agent.config[:'transaction_tracer.stack_trace_threshold'] ||
306
+ Thread.current[:capture_deep_tt])
307
+ segment[:backtrace] = caller.join("\n")
308
+ end
309
+ end
310
+
311
+ # some statements (particularly INSERTS with large BLOBS
312
+ # may be very large; we should trim them to a maximum usable length
313
+ # config is the driver configuration for the connection
314
+ # duration is seconds, float value.
315
+ def notice_sql(sql, config, duration)
316
+ if NewRelic::Agent.is_sql_recorded?
317
+ notice_extra_data(sql, duration, :sql, config, :connection_config)
318
+ end
319
+ end
320
+
321
+ # Adds non-sql metadata to a segment - generally the memcached
322
+ # key
323
+ #
324
+ # duration is seconds, float value.
325
+ def notice_nosql(key, duration)
326
+ notice_extra_data(key, duration, :key)
327
+ end
328
+
329
+ # Set parameters on the current segment.
330
+ def add_segment_parameters( params )
331
+ return unless builder
332
+ builder.current_segment.params.merge!( params )
333
+ end
334
+
335
+ # Every 1/n harvests, adds the most recent sample to the harvest
336
+ # array if it exists. Makes sure that the random sample is not
337
+ # also the slowest sample for this harvest by `uniq!`ing the
338
+ # result array
339
+ #
340
+ # random sampling is very, very seldom used
341
+ def add_random_sample_to(result)
342
+ return unless @random_sample &&
343
+ Agent.config[:sample_rate] && Agent.config[:sample_rate].to_i > 0
344
+ @harvest_count += 1
345
+ if (@harvest_count.to_i % Agent.config[:sample_rate].to_i) == 0
346
+ result << @random_sample if @random_sample
347
+ @harvest_count = 0
348
+ end
349
+ nil # don't assume this method returns anything
350
+ end
351
+
352
+ def add_force_persist_to(result)
353
+ result.concat(@force_persist)
354
+ @force_persist = []
355
+ end
356
+
357
+ # Returns an array of slow samples, with either one or two
358
+ # elements - one element unless random sampling is enabled. The
359
+ # sample returned will be the slowest sample among those
360
+ # available during this harvest
361
+ def add_samples_to(result)
362
+ # pull out force persist
363
+ force_persist = result.select {|sample| sample.force_persist} || []
364
+ result.reject! {|sample| sample.force_persist}
365
+
366
+ force_persist.each {|sample| store_force_persist(sample)}
367
+
368
+ result << @slowest_sample if @slowest_sample
369
+
370
+ result.compact!
371
+ result = result.sort_by { |x| x.duration }
372
+ result = result[-1..-1] || [] # take the slowest sample
373
+
374
+ add_random_sample_to(result)
375
+ add_force_persist_to(result)
376
+
377
+ result.uniq
378
+ end
379
+
380
+ # get the set of collected samples, merging into previous samples,
381
+ # and clear the collected sample list. Truncates samples to a
382
+ # specified segment_limit to save memory and bandwith
383
+ # transmitting samples to the server.
384
+ def harvest(previous=[])
385
+ return [] if !enabled?
386
+ result = Array(previous)
387
+
388
+ @samples_lock.synchronize do
389
+ result = add_samples_to(result)
390
+
391
+ # clear previous transaction samples
392
+ @slowest_sample = nil
393
+ @random_sample = nil
394
+ @last_sample = nil
395
+ end
396
+
397
+ # Clamp the number of TTs we'll keep in memory and send
398
+ #
399
+ result = clamp_number_tts(result, 20) if result.length > 20
400
+
401
+ # Truncate the samples at 2100 segments. The UI will clamp them at 2000 segments anyway.
402
+ # This will save us memory and bandwidth.
403
+ result.each { |sample| sample.truncate(Agent.config[:'transaction_tracer.limit_segments']) }
404
+ result
405
+ end
406
+
407
+ # JON - THIS CODE NEEDS A UNIT TEST
408
+ def clamp_number_tts(tts, limit)
409
+ tts.sort! do |a,b|
410
+ if a.force_persist && b.force_persist
411
+ b.duration <=> a.duration
412
+ elsif a.force_persist
413
+ -1
414
+ elsif b.force_persist
415
+ 1
416
+ else
417
+ b.duration <=> a.duration
418
+ end
419
+ end
420
+
421
+ tts[0..(limit-1)]
422
+ end
423
+
424
+ # reset samples without rebooting the web server
425
+ def reset!
426
+ @samples = []
427
+ @last_sample = nil
428
+ @random_sample = nil
429
+ @slowest_sample = nil
430
+ end
431
+
432
+ # Checks to see if the transaction sampler is disabled, if
433
+ # transaction trace recording is disabled by a thread local, or
434
+ # if execution is untraced - if so it clears the transaction
435
+ # sample builder from the thread local, otherwise it generates a
436
+ # new transaction sample builder with the stated time as a
437
+ # starting point and saves it in the thread local variable
438
+ def start_builder(time=nil)
439
+ if !enabled? || !NewRelic::Agent.is_transaction_traced? || !NewRelic::Agent.is_execution_traced?
440
+ clear_builder
441
+ else
442
+ Thread::current[BUILDER_KEY] ||= TransactionSampleBuilder.new(time)
443
+ end
444
+ end
445
+
446
+ # The current thread-local transaction sample builder
447
+ def builder
448
+ Thread::current[BUILDER_KEY]
449
+ end
450
+
451
+ # Sets the thread local variable storing the transaction sample
452
+ # builder to nil to clear it
453
+ def clear_builder
454
+ Thread::current[BUILDER_KEY] = nil
455
+ end
456
+
457
+ end
458
+ end
459
+ end