newrelic_rpm 4.0.0.332 → 6.13.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1193) hide show
  1. checksums.yaml +5 -5
  2. data/.github/ISSUE_TEMPLATE/bug_report.md +31 -0
  3. data/.github/ISSUE_TEMPLATE/config.yml +5 -0
  4. data/.github/ISSUE_TEMPLATE/feature_request.md +24 -0
  5. data/.github/actions/annotate/README.md +79 -0
  6. data/.github/actions/annotate/action.yml +6 -0
  7. data/.github/actions/annotate/dist/index.js +433 -0
  8. data/.github/actions/annotate/index.js +25 -0
  9. data/.github/actions/annotate/package-lock.json +172 -0
  10. data/.github/actions/annotate/package.json +30 -0
  11. data/.github/actions/annotate/pre-commit +5 -0
  12. data/.github/actions/build-ruby/README.md +79 -0
  13. data/.github/actions/build-ruby/action.yml +15 -0
  14. data/.github/actions/build-ruby/dist/index.js +52683 -0
  15. data/.github/actions/build-ruby/index.js +514 -0
  16. data/.github/actions/build-ruby/package-lock.json +581 -0
  17. data/.github/actions/build-ruby/package.json +32 -0
  18. data/.github/actions/build-ruby/pre-commit +5 -0
  19. data/.github/pull_request_template.md +16 -0
  20. data/.github/workflows/ci.yml +212 -0
  21. data/.github/workflows/pr_review_checklist.yml +22 -0
  22. data/.github/workflows/release.yml +78 -0
  23. data/.github/workflows/scripts/rubygems-authenticate.py +13 -0
  24. data/.github/workflows/scripts/rubygems-publish.rb +32 -0
  25. data/.github/workflows/snyk.yml +27 -0
  26. data/.github/workflows/stale.yml +21 -0
  27. data/.gitignore +9 -0
  28. data/.yardopts +7 -2
  29. data/CHANGELOG.md +1130 -0
  30. data/CONTRIBUTING.md +106 -19
  31. data/Gemfile +6 -2
  32. data/Guardfile +18 -1
  33. data/LICENSE +208 -64
  34. data/README.md +75 -135
  35. data/ROADMAP.md +24 -0
  36. data/Rakefile +2 -0
  37. data/THIRD_PARTY_NOTICES.md +213 -0
  38. data/bin/nrdebug +1 -1
  39. data/config.dot +3 -12
  40. data/init.rb +1 -1
  41. data/install.rb +1 -1
  42. data/lib/new_relic/agent.rb +189 -35
  43. data/lib/new_relic/agent/adaptive_sampler.rb +104 -0
  44. data/lib/new_relic/agent/agent.rb +204 -186
  45. data/lib/new_relic/agent/agent_logger.rb +5 -1
  46. data/lib/new_relic/agent/attribute_filter.rb +85 -28
  47. data/lib/new_relic/agent/attribute_processing.rb +1 -1
  48. data/lib/new_relic/agent/attributes.rb +152 -0
  49. data/lib/new_relic/agent/audit_logger.rb +1 -1
  50. data/lib/new_relic/agent/autostart.rb +20 -15
  51. data/lib/new_relic/agent/chained_call.rb +1 -1
  52. data/lib/new_relic/agent/commands/agent_command.rb +1 -1
  53. data/lib/new_relic/agent/commands/agent_command_router.rb +3 -22
  54. data/lib/new_relic/agent/commands/thread_profiler_session.rb +1 -1
  55. data/lib/new_relic/agent/configuration.rb +1 -1
  56. data/lib/new_relic/agent/configuration/default_source.rb +436 -96
  57. data/lib/new_relic/agent/configuration/dotted_hash.rb +1 -1
  58. data/lib/new_relic/agent/configuration/environment_source.rb +5 -3
  59. data/lib/new_relic/agent/configuration/event_harvest_config.rb +45 -0
  60. data/lib/new_relic/agent/configuration/high_security_source.rb +2 -3
  61. data/lib/new_relic/agent/configuration/manager.rb +54 -43
  62. data/lib/new_relic/agent/configuration/manual_source.rb +1 -1
  63. data/lib/new_relic/agent/configuration/mask_defaults.rb +1 -1
  64. data/lib/new_relic/agent/configuration/security_policy_source.rb +238 -0
  65. data/lib/new_relic/agent/configuration/server_source.rb +46 -5
  66. data/lib/new_relic/agent/configuration/yaml_source.rb +20 -17
  67. data/lib/new_relic/agent/connect/request_builder.rb +61 -0
  68. data/lib/new_relic/agent/connect/response_handler.rb +61 -0
  69. data/lib/new_relic/agent/custom_event_aggregator.rb +17 -6
  70. data/lib/new_relic/agent/database.rb +32 -7
  71. data/lib/new_relic/agent/database/explain_plan_helpers.rb +12 -1
  72. data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
  73. data/lib/new_relic/agent/database/obfuscator.rb +1 -1
  74. data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +1 -1
  75. data/lib/new_relic/agent/datastores.rb +32 -15
  76. data/lib/new_relic/agent/datastores/metric_helper.rb +2 -3
  77. data/lib/new_relic/agent/datastores/mongo.rb +2 -2
  78. data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +3 -3
  79. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +1 -1
  80. data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +9 -9
  81. data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +1 -1
  82. data/lib/new_relic/agent/datastores/redis.rb +1 -1
  83. data/lib/new_relic/agent/deprecator.rb +1 -1
  84. data/lib/new_relic/agent/distributed_tracing.rb +216 -0
  85. data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +44 -0
  86. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +248 -0
  87. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +84 -0
  88. data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +75 -0
  89. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +165 -0
  90. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +39 -0
  91. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +246 -0
  92. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +126 -0
  93. data/lib/new_relic/agent/encoding_normalizer.rb +1 -1
  94. data/lib/new_relic/agent/error_collector.rb +55 -24
  95. data/lib/new_relic/agent/error_event_aggregator.rb +14 -7
  96. data/lib/new_relic/agent/error_trace_aggregator.rb +2 -1
  97. data/lib/new_relic/agent/event_aggregator.rb +34 -15
  98. data/lib/new_relic/agent/event_buffer.rb +1 -1
  99. data/lib/new_relic/agent/event_listener.rb +1 -1
  100. data/lib/new_relic/agent/event_loop.rb +1 -1
  101. data/lib/new_relic/agent/external.rb +143 -0
  102. data/lib/new_relic/agent/guid_generator.rb +28 -0
  103. data/lib/new_relic/agent/harvester.rb +1 -1
  104. data/lib/new_relic/agent/heap.rb +140 -0
  105. data/lib/new_relic/agent/hostname.rb +16 -2
  106. data/lib/new_relic/agent/http_clients/abstract.rb +82 -0
  107. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +26 -19
  108. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +31 -12
  109. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +20 -22
  110. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +13 -12
  111. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +23 -7
  112. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +8 -8
  113. data/lib/new_relic/agent/http_clients/uri_util.rb +23 -17
  114. data/lib/new_relic/agent/instrumentation.rb +1 -1
  115. data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +26 -43
  116. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +56 -75
  117. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +82 -56
  118. data/lib/new_relic/agent/instrumentation/active_job.rb +21 -15
  119. data/lib/new_relic/agent/instrumentation/active_merchant.rb +1 -1
  120. data/lib/new_relic/agent/instrumentation/active_record.rb +94 -33
  121. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +87 -25
  122. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +168 -0
  123. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +132 -0
  124. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +70 -58
  125. data/lib/new_relic/agent/instrumentation/active_storage.rb +23 -0
  126. data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +63 -0
  127. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +26 -8
  128. data/lib/new_relic/agent/instrumentation/authlogic.rb +1 -1
  129. data/lib/new_relic/agent/instrumentation/bunny.rb +219 -0
  130. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +27 -16
  131. data/lib/new_relic/agent/instrumentation/curb.rb +126 -37
  132. data/lib/new_relic/agent/instrumentation/data_mapper.rb +16 -7
  133. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +61 -25
  134. data/lib/new_relic/agent/instrumentation/excon.rb +2 -2
  135. data/lib/new_relic/agent/instrumentation/excon/connection.rb +13 -7
  136. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +9 -5
  137. data/lib/new_relic/agent/instrumentation/grape.rb +46 -35
  138. data/lib/new_relic/agent/instrumentation/http.rb +12 -6
  139. data/lib/new_relic/agent/instrumentation/httpclient.rb +12 -7
  140. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
  141. data/lib/new_relic/agent/instrumentation/memcache.rb +9 -4
  142. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +15 -8
  143. data/lib/new_relic/agent/instrumentation/merb/controller.rb +1 -1
  144. data/lib/new_relic/agent/instrumentation/merb/errors.rb +1 -1
  145. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +13 -5
  146. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +20 -11
  147. data/lib/new_relic/agent/instrumentation/mongo.rb +21 -10
  148. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +43 -6
  149. data/lib/new_relic/agent/instrumentation/net.rb +60 -20
  150. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +100 -0
  151. data/lib/new_relic/agent/instrumentation/padrino.rb +40 -16
  152. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +1 -1
  153. data/lib/new_relic/agent/instrumentation/queue_time.rb +1 -1
  154. data/lib/new_relic/agent/instrumentation/rack.rb +36 -13
  155. data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +2 -2
  156. data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +1 -1
  157. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +6 -4
  158. data/lib/new_relic/agent/instrumentation/rails_middleware.rb +2 -2
  159. data/lib/new_relic/agent/instrumentation/{rails5 → rails_notifications}/action_cable.rb +11 -5
  160. data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +33 -0
  161. data/lib/new_relic/agent/instrumentation/{rails4 → rails_notifications}/action_view.rb +6 -4
  162. data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +1 -1
  163. data/lib/new_relic/agent/instrumentation/rake.rb +58 -22
  164. data/lib/new_relic/agent/instrumentation/redis.rb +141 -41
  165. data/lib/new_relic/agent/instrumentation/resque.rb +21 -37
  166. data/lib/new_relic/agent/instrumentation/sequel.rb +2 -3
  167. data/lib/new_relic/agent/instrumentation/sequel_helper.rb +1 -1
  168. data/lib/new_relic/agent/instrumentation/sidekiq.rb +48 -24
  169. data/lib/new_relic/agent/instrumentation/sinatra.rb +62 -23
  170. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
  171. data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +1 -1
  172. data/lib/new_relic/agent/instrumentation/sunspot.rb +1 -1
  173. data/lib/new_relic/agent/instrumentation/typhoeus.rb +67 -26
  174. data/lib/new_relic/agent/internal_agent_error.rb +1 -1
  175. data/lib/new_relic/agent/javascript_instrumentor.rb +19 -16
  176. data/lib/new_relic/agent/log_once.rb +1 -1
  177. data/lib/new_relic/agent/logging.rb +139 -0
  178. data/lib/new_relic/agent/memory_logger.rb +1 -1
  179. data/lib/new_relic/agent/messaging.rb +372 -0
  180. data/lib/new_relic/agent/method_tracer.rb +45 -24
  181. data/lib/new_relic/agent/method_tracer_helpers.rb +10 -63
  182. data/lib/new_relic/agent/monitors.rb +27 -0
  183. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +110 -0
  184. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +27 -0
  185. data/lib/new_relic/agent/{inbound_request_monitor.rb → monitors/inbound_request_monitor.rb} +4 -4
  186. data/lib/new_relic/agent/monitors/synthetics_monitor.rb +56 -0
  187. data/lib/new_relic/agent/new_relic_service.rb +174 -63
  188. data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
  189. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +1 -2
  190. data/lib/new_relic/agent/new_relic_service/marshaller.rb +6 -27
  191. data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +61 -0
  192. data/lib/new_relic/agent/noticible_error.rb +22 -0
  193. data/lib/new_relic/agent/null_logger.rb +1 -1
  194. data/lib/new_relic/agent/obfuscator.rb +1 -1
  195. data/lib/new_relic/agent/parameter_filtering.rb +19 -6
  196. data/lib/new_relic/agent/payload_metric_mapping.rb +1 -1
  197. data/lib/new_relic/agent/pipe_channel_manager.rb +1 -1
  198. data/lib/new_relic/agent/pipe_service.rb +5 -1
  199. data/lib/new_relic/agent/prepend_supportability.rb +16 -0
  200. data/lib/new_relic/agent/priority_sampled_buffer.rb +95 -0
  201. data/lib/new_relic/agent/range_extensions.rb +47 -0
  202. data/lib/new_relic/agent/rules_engine.rb +1 -1
  203. data/lib/new_relic/agent/rules_engine/replacement_rule.rb +1 -1
  204. data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +1 -1
  205. data/lib/new_relic/agent/sampler.rb +1 -1
  206. data/lib/new_relic/agent/sampler_collection.rb +1 -1
  207. data/lib/new_relic/agent/samplers/cpu_sampler.rb +4 -3
  208. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +1 -1
  209. data/lib/new_relic/agent/samplers/memory_sampler.rb +1 -1
  210. data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
  211. data/lib/new_relic/agent/samplers/vm_sampler.rb +1 -1
  212. data/lib/new_relic/agent/span_event_aggregator.rb +49 -0
  213. data/lib/new_relic/agent/span_event_primitive.rb +206 -0
  214. data/lib/new_relic/agent/sql_sampler.rb +25 -9
  215. data/lib/new_relic/agent/stats.rb +1 -15
  216. data/lib/new_relic/agent/stats_engine.rb +172 -4
  217. data/lib/new_relic/agent/stats_engine/gc_profiler.rb +1 -1
  218. data/lib/new_relic/agent/stats_engine/stats_hash.rb +1 -1
  219. data/lib/new_relic/agent/supported_versions.rb +15 -14
  220. data/lib/new_relic/agent/synthetics_event_aggregator.rb +6 -13
  221. data/lib/new_relic/agent/system_info.rb +52 -8
  222. data/lib/new_relic/agent/threading/agent_thread.rb +6 -4
  223. data/lib/new_relic/agent/threading/backtrace_node.rb +1 -1
  224. data/lib/new_relic/agent/threading/backtrace_service.rb +4 -4
  225. data/lib/new_relic/agent/threading/thread_profile.rb +10 -24
  226. data/lib/new_relic/agent/timestamp_sampled_buffer.rb +19 -0
  227. data/lib/new_relic/agent/tracer.rb +509 -0
  228. data/lib/new_relic/agent/transaction.rb +270 -295
  229. data/lib/new_relic/agent/transaction/abstract_segment.rb +204 -20
  230. data/lib/new_relic/agent/transaction/datastore_segment.rb +55 -26
  231. data/lib/new_relic/agent/transaction/distributed_tracer.rb +171 -0
  232. data/lib/new_relic/agent/transaction/distributed_tracing.rb +173 -0
  233. data/lib/new_relic/agent/transaction/external_request_segment.rb +159 -36
  234. data/lib/new_relic/agent/transaction/message_broker_segment.rb +103 -0
  235. data/lib/new_relic/agent/transaction/request_attributes.rb +6 -14
  236. data/lib/new_relic/agent/transaction/segment.rb +67 -5
  237. data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +1 -1
  238. data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
  239. data/lib/new_relic/agent/transaction/trace.rb +35 -34
  240. data/lib/new_relic/agent/transaction/trace_builder.rb +56 -0
  241. data/lib/new_relic/agent/transaction/trace_context.rb +168 -0
  242. data/lib/new_relic/agent/transaction/trace_node.rb +39 -43
  243. data/lib/new_relic/agent/transaction/tracing.rb +42 -45
  244. data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
  245. data/lib/new_relic/agent/transaction_error_primitive.rb +15 -4
  246. data/lib/new_relic/agent/transaction_event_aggregator.rb +9 -4
  247. data/lib/new_relic/agent/transaction_event_primitive.rb +32 -29
  248. data/lib/new_relic/agent/transaction_event_recorder.rb +7 -7
  249. data/lib/new_relic/agent/transaction_metrics.rb +1 -1
  250. data/lib/new_relic/agent/transaction_sampler.rb +16 -196
  251. data/lib/new_relic/agent/transaction_time_aggregator.rb +155 -0
  252. data/lib/new_relic/agent/utilization/aws.rb +18 -0
  253. data/lib/new_relic/agent/utilization/azure.rb +17 -0
  254. data/lib/new_relic/agent/utilization/gcp.rb +35 -0
  255. data/lib/new_relic/agent/utilization/pcf.rb +32 -0
  256. data/lib/new_relic/agent/utilization/vendor.rb +144 -0
  257. data/lib/new_relic/agent/utilization_data.rb +65 -11
  258. data/lib/new_relic/agent/vm.rb +1 -1
  259. data/lib/new_relic/agent/vm/jruby_vm.rb +1 -1
  260. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
  261. data/lib/new_relic/agent/vm/mri_vm.rb +1 -1
  262. data/lib/new_relic/agent/vm/snapshot.rb +1 -1
  263. data/lib/new_relic/agent/worker_loop.rb +1 -1
  264. data/lib/new_relic/cli/command.rb +1 -1
  265. data/lib/new_relic/cli/commands/deployments.rb +2 -2
  266. data/lib/new_relic/cli/commands/install.rb +4 -3
  267. data/lib/new_relic/coerce.rb +32 -7
  268. data/lib/new_relic/collection_helper.rb +1 -19
  269. data/lib/new_relic/constants.rb +38 -0
  270. data/lib/new_relic/control.rb +1 -1
  271. data/lib/new_relic/control/class_methods.rb +8 -2
  272. data/lib/new_relic/control/frameworks.rb +1 -1
  273. data/lib/new_relic/control/frameworks/external.rb +1 -1
  274. data/lib/new_relic/control/frameworks/merb.rb +1 -1
  275. data/lib/new_relic/control/frameworks/rails.rb +2 -22
  276. data/lib/new_relic/control/frameworks/rails3.rb +2 -2
  277. data/lib/new_relic/control/frameworks/rails4.rb +1 -1
  278. data/lib/new_relic/control/frameworks/{rails5.rb → rails_notifications.rb} +2 -2
  279. data/lib/new_relic/control/frameworks/ruby.rb +3 -3
  280. data/lib/new_relic/control/frameworks/sinatra.rb +1 -1
  281. data/lib/new_relic/control/instance_methods.rb +30 -4
  282. data/lib/new_relic/control/instrumentation.rb +1 -1
  283. data/lib/new_relic/control/server_methods.rb +1 -1
  284. data/lib/new_relic/delayed_job_injection.rb +1 -1
  285. data/lib/new_relic/dependency_detection.rb +5 -5
  286. data/lib/new_relic/environment_report.rb +6 -2
  287. data/lib/new_relic/helper.rb +1 -1
  288. data/lib/new_relic/language_support.rb +1 -1
  289. data/lib/new_relic/latest_changes.rb +4 -4
  290. data/lib/new_relic/local_environment.rb +1 -1
  291. data/lib/new_relic/metric_data.rb +1 -1
  292. data/lib/new_relic/metric_spec.rb +1 -1
  293. data/lib/new_relic/noticed_error.rb +63 -30
  294. data/lib/new_relic/rack.rb +1 -1
  295. data/lib/new_relic/rack/agent_hooks.rb +1 -1
  296. data/lib/new_relic/rack/agent_middleware.rb +2 -2
  297. data/lib/new_relic/rack/browser_monitoring.rb +16 -9
  298. data/lib/new_relic/recipes.rb +1 -1
  299. data/lib/new_relic/recipes/capistrano3.rb +6 -3
  300. data/lib/new_relic/recipes/capistrano_legacy.rb +1 -1
  301. data/lib/new_relic/supportability_helper.rb +82 -0
  302. data/lib/new_relic/version.rb +4 -4
  303. data/lib/newrelic_rpm.rb +2 -2
  304. data/lib/sequel/extensions/newrelic_instrumentation.rb +27 -12
  305. data/lib/sequel/plugins/newrelic_instrumentation.rb +7 -3
  306. data/lib/tasks/all.rb +1 -1
  307. data/lib/tasks/config.rake +1 -2
  308. data/lib/tasks/multiverse.rb +35 -1
  309. data/lib/tasks/newrelic.rb +1 -1
  310. data/lib/tasks/tests.rake +6 -1
  311. data/newrelic.yml +1 -5
  312. data/newrelic_rpm.gemspec +23 -17
  313. data/recipes/newrelic.rb +1 -1
  314. data/test/agent_helper.rb +395 -83
  315. metadata +169 -910
  316. data/.travis.yml +0 -149
  317. data/lib/conditional_vendored_metric_parser.rb +0 -9
  318. data/lib/new_relic/agent/aws_info.rb +0 -90
  319. data/lib/new_relic/agent/busy_calculator.rb +0 -117
  320. data/lib/new_relic/agent/commands/xray_session.rb +0 -55
  321. data/lib/new_relic/agent/commands/xray_session_collection.rb +0 -161
  322. data/lib/new_relic/agent/cross_app_monitor.rb +0 -179
  323. data/lib/new_relic/agent/cross_app_tracing.rb +0 -106
  324. data/lib/new_relic/agent/instrumentation/active_record_4.rb +0 -32
  325. data/lib/new_relic/agent/instrumentation/active_record_5.rb +0 -89
  326. data/lib/new_relic/agent/instrumentation/evented_subscriber.rb +0 -104
  327. data/lib/new_relic/agent/instrumentation/rails4/action_controller.rb +0 -29
  328. data/lib/new_relic/agent/instrumentation/rails5/action_controller.rb +0 -30
  329. data/lib/new_relic/agent/instrumentation/rails5/action_view.rb +0 -25
  330. data/lib/new_relic/agent/instrumentation/rubyprof.rb +0 -26
  331. data/lib/new_relic/agent/sampled_buffer.rb +0 -68
  332. data/lib/new_relic/agent/sized_buffer.rb +0 -23
  333. data/lib/new_relic/agent/stats_engine/metric_stats.rb +0 -188
  334. data/lib/new_relic/agent/synthetics_event_buffer.rb +0 -40
  335. data/lib/new_relic/agent/synthetics_monitor.rb +0 -50
  336. data/lib/new_relic/agent/traced_method_stack.rb +0 -109
  337. data/lib/new_relic/agent/transaction/attributes.rb +0 -155
  338. data/lib/new_relic/agent/transaction/developer_mode_sample_buffer.rb +0 -62
  339. data/lib/new_relic/agent/transaction/xray_sample_buffer.rb +0 -64
  340. data/lib/new_relic/agent/transaction_sample_builder.rb +0 -141
  341. data/lib/new_relic/agent/transaction_state.rb +0 -155
  342. data/lib/new_relic/agent/transaction_timings.rb +0 -57
  343. data/lib/new_relic/merbtasks.rb +0 -10
  344. data/lib/new_relic/metrics.rb +0 -13
  345. data/lib/new_relic/rack/developer_mode.rb +0 -321
  346. data/lib/new_relic/rack/developer_mode/segment_summary.rb +0 -56
  347. data/lib/tasks/versions.html.erb +0 -28
  348. data/lib/tasks/versions.postface.html +0 -8
  349. data/lib/tasks/versions.preface.html +0 -9
  350. data/lib/tasks/versions.rake +0 -65
  351. data/lib/tasks/versions.txt.erb +0 -14
  352. data/test/config/newrelic.yml +0 -46
  353. data/test/config/test.cert.crt +0 -18
  354. data/test/config/test.cert.key +0 -15
  355. data/test/config/test_control.rb +0 -54
  356. data/test/environments/.gitignore +0 -16
  357. data/test/environments/lib/environments/runner.rb +0 -111
  358. data/test/environments/norails/Gemfile +0 -19
  359. data/test/environments/norails/Rakefile +0 -9
  360. data/test/environments/rails21/Gemfile +0 -23
  361. data/test/environments/rails21/Rakefile +0 -16
  362. data/test/environments/rails21/app/controllers/application.rb +0 -20
  363. data/test/environments/rails21/config/boot.rb +0 -113
  364. data/test/environments/rails21/config/database.yml +0 -26
  365. data/test/environments/rails21/config/environment.rb +0 -26
  366. data/test/environments/rails21/config/environments/development.rb +0 -10
  367. data/test/environments/rails21/config/environments/production.rb +0 -8
  368. data/test/environments/rails21/config/environments/test.rb +0 -10
  369. data/test/environments/rails21/config/routes.rb +0 -5
  370. data/test/environments/rails21/db/schema.rb +0 -5
  371. data/test/environments/rails22/Gemfile +0 -24
  372. data/test/environments/rails22/Rakefile +0 -16
  373. data/test/environments/rails22/app/controllers/application.rb +0 -20
  374. data/test/environments/rails22/config/boot.rb +0 -113
  375. data/test/environments/rails22/config/database.yml +0 -26
  376. data/test/environments/rails22/config/environment.rb +0 -25
  377. data/test/environments/rails22/config/environments/development.rb +0 -10
  378. data/test/environments/rails22/config/environments/production.rb +0 -8
  379. data/test/environments/rails22/config/environments/test.rb +0 -10
  380. data/test/environments/rails22/config/routes.rb +0 -5
  381. data/test/environments/rails22/db/schema.rb +0 -5
  382. data/test/environments/rails23/Gemfile +0 -24
  383. data/test/environments/rails23/Rakefile +0 -16
  384. data/test/environments/rails23/app/controllers/application.rb +0 -20
  385. data/test/environments/rails23/config/boot.rb +0 -127
  386. data/test/environments/rails23/config/database.yml +0 -26
  387. data/test/environments/rails23/config/environment.rb +0 -16
  388. data/test/environments/rails23/config/environments/production.rb +0 -8
  389. data/test/environments/rails23/config/environments/test.rb +0 -10
  390. data/test/environments/rails23/config/preinitializer.rb +0 -25
  391. data/test/environments/rails23/config/routes.rb +0 -5
  392. data/test/environments/rails23/db/schema.rb +0 -5
  393. data/test/environments/rails30/Gemfile +0 -23
  394. data/test/environments/rails30/Rakefile +0 -11
  395. data/test/environments/rails30/config/application.rb +0 -17
  396. data/test/environments/rails30/config/boot.rb +0 -10
  397. data/test/environments/rails30/config/database.yml +0 -26
  398. data/test/environments/rails30/config/environment.rb +0 -6
  399. data/test/environments/rails30/config/initializers/new_rails_defaults.rb +0 -11
  400. data/test/environments/rails30/db/schema.rb +0 -5
  401. data/test/environments/rails31/Gemfile +0 -24
  402. data/test/environments/rails31/Rakefile +0 -11
  403. data/test/environments/rails31/config/application.rb +0 -18
  404. data/test/environments/rails31/config/boot.rb +0 -10
  405. data/test/environments/rails31/config/database.yml +0 -26
  406. data/test/environments/rails31/config/environment.rb +0 -6
  407. data/test/environments/rails31/config/initializers/new_rails_defaults.rb +0 -21
  408. data/test/environments/rails31/db/schema.rb +0 -5
  409. data/test/environments/rails32/Gemfile +0 -26
  410. data/test/environments/rails32/Rakefile +0 -12
  411. data/test/environments/rails32/config/application.rb +0 -19
  412. data/test/environments/rails32/config/boot.rb +0 -10
  413. data/test/environments/rails32/config/database.yml +0 -26
  414. data/test/environments/rails32/config/environment.rb +0 -6
  415. data/test/environments/rails32/db/schema.rb +0 -5
  416. data/test/environments/rails40/Gemfile +0 -26
  417. data/test/environments/rails40/Rakefile +0 -11
  418. data/test/environments/rails40/config/application.rb +0 -18
  419. data/test/environments/rails40/config/boot.rb +0 -10
  420. data/test/environments/rails40/config/database.yml +0 -26
  421. data/test/environments/rails40/config/environment.rb +0 -6
  422. data/test/environments/rails40/db/schema.rb +0 -5
  423. data/test/environments/rails41/Gemfile +0 -26
  424. data/test/environments/rails41/Rakefile +0 -11
  425. data/test/environments/rails41/config/application.rb +0 -18
  426. data/test/environments/rails41/config/boot.rb +0 -10
  427. data/test/environments/rails41/config/database.yml +0 -26
  428. data/test/environments/rails41/config/environment.rb +0 -6
  429. data/test/environments/rails41/db/schema.rb +0 -5
  430. data/test/environments/rails42/Gemfile +0 -27
  431. data/test/environments/rails42/Rakefile +0 -11
  432. data/test/environments/rails42/config/application.rb +0 -18
  433. data/test/environments/rails42/config/boot.rb +0 -10
  434. data/test/environments/rails42/config/database.yml +0 -26
  435. data/test/environments/rails42/config/environment.rb +0 -6
  436. data/test/environments/rails42/db/schema.rb +0 -5
  437. data/test/environments/rails50/Gemfile +0 -23
  438. data/test/environments/rails50/Rakefile +0 -11
  439. data/test/environments/rails50/config/application.rb +0 -18
  440. data/test/environments/rails50/config/boot.rb +0 -10
  441. data/test/environments/rails50/config/database.yml +0 -26
  442. data/test/environments/rails50/config/environment.rb +0 -6
  443. data/test/environments/rails50/db/schema.rb +0 -5
  444. data/test/fixtures/cross_agent_tests/README.md +0 -34
  445. data/test/fixtures/cross_agent_tests/attribute_configuration.json +0 -384
  446. data/test/fixtures/cross_agent_tests/aws.json +0 -312
  447. data/test/fixtures/cross_agent_tests/cat/README.md +0 -28
  448. data/test/fixtures/cross_agent_tests/cat/cat_map.json +0 -595
  449. data/test/fixtures/cross_agent_tests/cat/path_hashing.json +0 -51
  450. data/test/fixtures/cross_agent_tests/cat_map.json +0 -597
  451. data/test/fixtures/cross_agent_tests/data_transport/data_transport.json +0 -1441
  452. data/test/fixtures/cross_agent_tests/data_transport/data_transport.md +0 -35
  453. data/test/fixtures/cross_agent_tests/datastores/README.md +0 -16
  454. data/test/fixtures/cross_agent_tests/datastores/datastore_api.json +0 -443
  455. data/test/fixtures/cross_agent_tests/datastores/datastore_instances.json +0 -73
  456. data/test/fixtures/cross_agent_tests/docker_container_id/README.md +0 -6
  457. data/test/fixtures/cross_agent_tests/docker_container_id/cases.json +0 -75
  458. data/test/fixtures/cross_agent_tests/docker_container_id/docker-0.9.1.txt +0 -10
  459. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.0.0.txt +0 -10
  460. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-lxc-driver.txt +0 -10
  461. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-native-driver-fs.txt +0 -10
  462. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-native-driver-systemd.txt +0 -10
  463. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.3.txt +0 -9
  464. data/test/fixtures/cross_agent_tests/docker_container_id/empty.txt +0 -0
  465. data/test/fixtures/cross_agent_tests/docker_container_id/heroku.txt +0 -1
  466. data/test/fixtures/cross_agent_tests/docker_container_id/invalid-characters.txt +0 -9
  467. data/test/fixtures/cross_agent_tests/docker_container_id/invalid-length.txt +0 -9
  468. data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.04-lxc-container.txt +0 -10
  469. data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.04-no-container.txt +0 -10
  470. data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.10-no-container.txt +0 -10
  471. data/test/fixtures/cross_agent_tests/labels.json +0 -195
  472. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/README.md +0 -16
  473. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.colon_obfuscated.txt +0 -3
  474. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.explain.txt +0 -3
  475. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.obfuscated.txt +0 -3
  476. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.query.txt +0 -1
  477. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.colon_obfuscated.txt +0 -2
  478. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.explain.txt +0 -2
  479. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.obfuscated.txt +0 -2
  480. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.query.txt +0 -1
  481. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.colon_obfuscated.txt +0 -2
  482. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.explain.txt +0 -2
  483. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.obfuscated.txt +0 -2
  484. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.query.txt +0 -1
  485. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.colon_obfuscated.txt +0 -2
  486. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.explain.txt +0 -3
  487. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.obfuscated.txt +0 -2
  488. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.query.txt +0 -1
  489. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.colon_obfuscated.txt +0 -2
  490. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.explain.txt +0 -2
  491. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.obfuscated.txt +0 -2
  492. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.query.txt +0 -1
  493. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.colon_obfuscated.txt +0 -2
  494. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.explain.txt +0 -2
  495. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.obfuscated.txt +0 -2
  496. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.query.txt +0 -1
  497. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.colon_obfuscated.txt +0 -5
  498. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.explain.txt +0 -5
  499. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.obfuscated.txt +0 -5
  500. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.query.txt +0 -1
  501. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.colon_obfuscated.txt +0 -2
  502. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.explain.txt +0 -2
  503. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.obfuscated.txt +0 -2
  504. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.query.txt +0 -1
  505. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.colon_obfuscated.txt +0 -5
  506. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.explain.txt +0 -5
  507. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.obfuscated.txt +0 -5
  508. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.query.txt +0 -1
  509. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.colon_obfuscated.txt +0 -2
  510. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.explain.txt +0 -2
  511. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.obfuscated.txt +0 -2
  512. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.query.txt +0 -1
  513. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.colon_obfuscated.txt +0 -2
  514. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.explain.txt +0 -2
  515. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.obfuscated.txt +0 -2
  516. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.query.txt +0 -1
  517. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.colon_obfuscated.txt +0 -3
  518. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.explain.txt +0 -3
  519. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.obfuscated.txt +0 -3
  520. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.query.txt +0 -1
  521. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.colon_obfuscated.txt +0 -2
  522. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.explain.txt +0 -2
  523. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.obfuscated.txt +0 -2
  524. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.query.txt +0 -1
  525. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.colon_obfuscated.txt +0 -2
  526. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.explain.txt +0 -3
  527. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.obfuscated.txt +0 -2
  528. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.query.txt +0 -1
  529. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.colon_obfuscated.txt +0 -2
  530. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.explain.txt +0 -2
  531. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.obfuscated.txt +0 -2
  532. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.query.txt +0 -1
  533. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.colon_obfuscated.txt +0 -2
  534. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.explain.txt +0 -2
  535. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.obfuscated.txt +0 -2
  536. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.query.txt +0 -1
  537. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.colon_obfuscated.txt +0 -2
  538. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.explain.txt +0 -2
  539. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.obfuscated.txt +0 -2
  540. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.query.txt +0 -1
  541. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.colon_obfuscated.txt +0 -2
  542. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.explain.txt +0 -2
  543. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.obfuscated.txt +0 -2
  544. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.query.txt +0 -1
  545. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.colon_obfuscated.txt +0 -2
  546. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.explain.txt +0 -2
  547. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.obfuscated.txt +0 -2
  548. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.query.txt +0 -1
  549. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.colon_obfuscated.txt +0 -2
  550. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.explain.txt +0 -2
  551. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.obfuscated.txt +0 -2
  552. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.query.txt +0 -1
  553. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.colon_obfuscated.txt +0 -2
  554. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.explain.txt +0 -2
  555. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.obfuscated.txt +0 -2
  556. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.query.txt +0 -1
  557. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_1logical.txt +0 -3
  558. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_2logical.txt +0 -14
  559. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_2core_2logical.txt +0 -14
  560. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_4core_4logical.txt +0 -28
  561. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_12core_24logical.txt +0 -575
  562. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_20core_40logical.txt +0 -999
  563. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_2logical.txt +0 -51
  564. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_4logical.txt +0 -28
  565. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_4core_4logical.txt +0 -28
  566. data/test/fixtures/cross_agent_tests/proc_cpuinfo/4pack_4core_4logical.txt +0 -103
  567. data/test/fixtures/cross_agent_tests/proc_cpuinfo/8pack_8core_8logical.txt +0 -199
  568. data/test/fixtures/cross_agent_tests/proc_cpuinfo/README.md +0 -28
  569. data/test/fixtures/cross_agent_tests/proc_cpuinfo/Xpack_Xcore_2logical.txt +0 -43
  570. data/test/fixtures/cross_agent_tests/proc_cpuinfo/malformed_file.txt +0 -3
  571. data/test/fixtures/cross_agent_tests/proc_meminfo/README.md +0 -7
  572. data/test/fixtures/cross_agent_tests/proc_meminfo/meminfo_4096MB.txt +0 -47
  573. data/test/fixtures/cross_agent_tests/rules.json +0 -165
  574. data/test/fixtures/cross_agent_tests/rum_client_config.json +0 -91
  575. data/test/fixtures/cross_agent_tests/rum_footer_insertion_location/close-body-in-comment.html +0 -10
  576. data/test/fixtures/cross_agent_tests/rum_footer_insertion_location/dynamic-iframe.html +0 -19
  577. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/basic.html +0 -10
  578. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/body_with_attributes.html +0 -3
  579. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag.html +0 -11
  580. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_after_x_ua_tag.html +0 -11
  581. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_before_x_ua_tag.html +0 -11
  582. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_with_spaces.html +0 -11
  583. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments1.html +0 -24
  584. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments2.html +0 -24
  585. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag.html +0 -11
  586. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_after_x_ua_tag.html +0 -11
  587. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_before_x_ua_tag.html +0 -11
  588. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/empty_head +0 -4
  589. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes1.html +0 -27
  590. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes2.html +0 -24
  591. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes_mismatch.html +0 -24
  592. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes1.html +0 -25
  593. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes_mismatch.html +0 -25
  594. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/head_with_attributes.html +0 -10
  595. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/incomplete_non_meta_tags.html +0 -10
  596. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_end_header.html +0 -6
  597. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_header.html +0 -7
  598. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_html_and_no_header.html +0 -3
  599. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_start_header.html +0 -9
  600. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/script1.html +0 -19
  601. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/script2.html +0 -17
  602. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag.html +0 -10
  603. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiline.html +0 -11
  604. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiple_tags.html +0 -12
  605. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_spaces_around_equals.html +0 -10
  606. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_others.html +0 -11
  607. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_spaces.html +0 -10
  608. data/test/fixtures/cross_agent_tests/sql_obfuscation/README.md +0 -36
  609. data/test/fixtures/cross_agent_tests/sql_obfuscation/sql_obfuscation.json +0 -619
  610. data/test/fixtures/cross_agent_tests/sql_parsing.json +0 -55
  611. data/test/fixtures/cross_agent_tests/synthetics/README.md +0 -65
  612. data/test/fixtures/cross_agent_tests/synthetics/synthetics.json +0 -317
  613. data/test/fixtures/cross_agent_tests/transaction_segment_terms.json +0 -389
  614. data/test/fixtures/cross_agent_tests/url_clean.json +0 -15
  615. data/test/fixtures/cross_agent_tests/url_domain_extraction.json +0 -35
  616. data/test/fixtures/cross_agent_tests/utilization/README.md +0 -13
  617. data/test/fixtures/cross_agent_tests/utilization/utilization_json.json +0 -132
  618. data/test/helpers/exceptions.rb +0 -16
  619. data/test/helpers/file_searching.rb +0 -28
  620. data/test/helpers/logging.rb +0 -37
  621. data/test/helpers/minitest.rb +0 -50
  622. data/test/helpers/misc.rb +0 -87
  623. data/test/helpers/mongo_metric_builder.rb +0 -34
  624. data/test/helpers/transaction_sample.rb +0 -44
  625. data/test/intentional_fail.rb +0 -13
  626. data/test/multiverse/.gitignore +0 -13
  627. data/test/multiverse/README.md +0 -85
  628. data/test/multiverse/lib/multiverse.rb +0 -32
  629. data/test/multiverse/lib/multiverse/color.rb +0 -23
  630. data/test/multiverse/lib/multiverse/envfile.rb +0 -66
  631. data/test/multiverse/lib/multiverse/output_collector.rb +0 -82
  632. data/test/multiverse/lib/multiverse/runner.rb +0 -118
  633. data/test/multiverse/lib/multiverse/shell_utils.rb +0 -27
  634. data/test/multiverse/lib/multiverse/suite.rb +0 -536
  635. data/test/multiverse/script/runner +0 -5
  636. data/test/multiverse/suites/active_record/.gitignore +0 -1
  637. data/test/multiverse/suites/active_record/Envfile +0 -60
  638. data/test/multiverse/suites/active_record/Rakefile +0 -9
  639. data/test/multiverse/suites/active_record/active_record_test.rb +0 -618
  640. data/test/multiverse/suites/active_record/app/models/models.rb +0 -34
  641. data/test/multiverse/suites/active_record/ar_method_aliasing.rb +0 -43
  642. data/test/multiverse/suites/active_record/before_suite.rb +0 -23
  643. data/test/multiverse/suites/active_record/config/database.rb +0 -79
  644. data/test/multiverse/suites/active_record/config/database.yml +0 -20
  645. data/test/multiverse/suites/active_record/config/newrelic.yml +0 -18
  646. data/test/multiverse/suites/active_record/db/migrate/20141105131800_create_users_and_aliases.rb +0 -21
  647. data/test/multiverse/suites/active_record/db/migrate/20141106082200_create_orders_and_shipments.rb +0 -25
  648. data/test/multiverse/suites/active_record/db/migrate/20150413011200_add_timestamps_to_orders.rb +0 -16
  649. data/test/multiverse/suites/active_record/db/migrate/20150414084400_create_groups.rb +0 -21
  650. data/test/multiverse/suites/activemerchant/Envfile +0 -26
  651. data/test/multiverse/suites/activemerchant/activemerchant_test.rb +0 -62
  652. data/test/multiverse/suites/agent_only/Envfile +0 -5
  653. data/test/multiverse/suites/agent_only/agent_attributes_test.rb +0 -351
  654. data/test/multiverse/suites/agent_only/agent_run_id_handling_test.rb +0 -39
  655. data/test/multiverse/suites/agent_only/audit_log_test.rb +0 -57
  656. data/test/multiverse/suites/agent_only/collector_exception_handling_test.rb +0 -87
  657. data/test/multiverse/suites/agent_only/config/newrelic.yml +0 -27
  658. data/test/multiverse/suites/agent_only/cross_application_tracing_test.rb +0 -94
  659. data/test/multiverse/suites/agent_only/custom_analytics_events_test.rb +0 -82
  660. data/test/multiverse/suites/agent_only/custom_queue_time_test.rb +0 -60
  661. data/test/multiverse/suites/agent_only/encoding_handling_test.rb +0 -122
  662. data/test/multiverse/suites/agent_only/error_events_test.rb +0 -98
  663. data/test/multiverse/suites/agent_only/exclusive_time_test.rb +0 -176
  664. data/test/multiverse/suites/agent_only/harvest_timestamps_test.rb +0 -61
  665. data/test/multiverse/suites/agent_only/http_response_code_test.rb +0 -38
  666. data/test/multiverse/suites/agent_only/keepalive_test.rb +0 -24
  667. data/test/multiverse/suites/agent_only/key_transactions_test.rb +0 -118
  668. data/test/multiverse/suites/agent_only/labels_test.rb +0 -83
  669. data/test/multiverse/suites/agent_only/logging_test.rb +0 -162
  670. data/test/multiverse/suites/agent_only/marshaling_test.rb +0 -89
  671. data/test/multiverse/suites/agent_only/pipe_manager_test.rb +0 -41
  672. data/test/multiverse/suites/agent_only/rename_rule_test.rb +0 -91
  673. data/test/multiverse/suites/agent_only/rum_instrumentation_test.rb +0 -97
  674. data/test/multiverse/suites/agent_only/script/env_change.rb +0 -10
  675. data/test/multiverse/suites/agent_only/script/loading.rb +0 -20
  676. data/test/multiverse/suites/agent_only/script/public_api_when_disabled.rb +0 -57
  677. data/test/multiverse/suites/agent_only/script/symbol_env.rb +0 -10
  678. data/test/multiverse/suites/agent_only/script/warnings.rb +0 -15
  679. data/test/multiverse/suites/agent_only/service_timeout_test.rb +0 -39
  680. data/test/multiverse/suites/agent_only/set_transaction_name_test.rb +0 -118
  681. data/test/multiverse/suites/agent_only/ssl_test.rb +0 -21
  682. data/test/multiverse/suites/agent_only/start_up_test.rb +0 -107
  683. data/test/multiverse/suites/agent_only/synthetics_test.rb +0 -131
  684. data/test/multiverse/suites/agent_only/testing_app.rb +0 -58
  685. data/test/multiverse/suites/agent_only/thread_profiling_test.rb +0 -137
  686. data/test/multiverse/suites/agent_only/transaction_events_test.rb +0 -31
  687. data/test/multiverse/suites/agent_only/transaction_ignoring_test.rb +0 -42
  688. data/test/multiverse/suites/agent_only/utilization_data_collection_test.rb +0 -105
  689. data/test/multiverse/suites/agent_only/xray_sessions_test.rb +0 -196
  690. data/test/multiverse/suites/bare/Envfile +0 -3
  691. data/test/multiverse/suites/bare/standalone_instrumentation_test.rb +0 -43
  692. data/test/multiverse/suites/capistrano/Capfile +0 -26
  693. data/test/multiverse/suites/capistrano/Envfile +0 -23
  694. data/test/multiverse/suites/capistrano/config/deploy.rb +0 -14
  695. data/test/multiverse/suites/capistrano/config/deploy/production.rb +0 -9
  696. data/test/multiverse/suites/capistrano/config/newrelic.yml +0 -21
  697. data/test/multiverse/suites/capistrano/deployment_test.rb +0 -51
  698. data/test/multiverse/suites/capistrano2/Capfile +0 -4
  699. data/test/multiverse/suites/capistrano2/Envfile +0 -8
  700. data/test/multiverse/suites/capistrano2/config/deploy.rb +0 -19
  701. data/test/multiverse/suites/capistrano2/config/newrelic.yml +0 -21
  702. data/test/multiverse/suites/capistrano2/deployment_test.rb +0 -37
  703. data/test/multiverse/suites/config_file_loading/Envfile +0 -13
  704. data/test/multiverse/suites/config_file_loading/config_file_loading_test.rb +0 -213
  705. data/test/multiverse/suites/curb/Envfile +0 -27
  706. data/test/multiverse/suites/curb/config/newrelic.yml +0 -18
  707. data/test/multiverse/suites/curb/curb_test.rb +0 -212
  708. data/test/multiverse/suites/datamapper/Envfile +0 -36
  709. data/test/multiverse/suites/datamapper/config/newrelic.yml +0 -20
  710. data/test/multiverse/suites/datamapper/datamapper_test.rb +0 -429
  711. data/test/multiverse/suites/deferred_instrumentation/Envfile +0 -15
  712. data/test/multiverse/suites/deferred_instrumentation/config/newrelic.yml +0 -20
  713. data/test/multiverse/suites/deferred_instrumentation/sinatra_test.rb +0 -110
  714. data/test/multiverse/suites/delayed_job/Envfile +0 -101
  715. data/test/multiverse/suites/delayed_job/before_suite.rb +0 -43
  716. data/test/multiverse/suites/delayed_job/config/newrelic.yml +0 -18
  717. data/test/multiverse/suites/delayed_job/delayed_job_instrumentation_test.rb +0 -106
  718. data/test/multiverse/suites/delayed_job/delayed_job_sampler_test.rb +0 -128
  719. data/test/multiverse/suites/delayed_job/unsupported_backend_test.rb +0 -21
  720. data/test/multiverse/suites/excon/Envfile +0 -18
  721. data/test/multiverse/suites/excon/config/newrelic.yml +0 -18
  722. data/test/multiverse/suites/excon/excon_test.rb +0 -81
  723. data/test/multiverse/suites/grape/Envfile +0 -9
  724. data/test/multiverse/suites/grape/config/newrelic.yml +0 -19
  725. data/test/multiverse/suites/grape/grape_test.rb +0 -219
  726. data/test/multiverse/suites/grape/grape_test_api.rb +0 -64
  727. data/test/multiverse/suites/grape/grape_versioning_test.rb +0 -118
  728. data/test/multiverse/suites/grape/grape_versioning_test_api.rb +0 -130
  729. data/test/multiverse/suites/grape/unsupported_version_test.rb +0 -28
  730. data/test/multiverse/suites/high_security/Envfile +0 -3
  731. data/test/multiverse/suites/high_security/config/newrelic.yml +0 -70
  732. data/test/multiverse/suites/high_security/high_security_test.rb +0 -214
  733. data/test/multiverse/suites/httpclient/Envfile +0 -15
  734. data/test/multiverse/suites/httpclient/config/newrelic.yml +0 -18
  735. data/test/multiverse/suites/httpclient/httpclient_test.rb +0 -75
  736. data/test/multiverse/suites/httprb/Envfile +0 -21
  737. data/test/multiverse/suites/httprb/config/newrelic.yml +0 -18
  738. data/test/multiverse/suites/httprb/httprb_test.rb +0 -78
  739. data/test/multiverse/suites/json/Envfile +0 -22
  740. data/test/multiverse/suites/json/config/newrelic.yml +0 -22
  741. data/test/multiverse/suites/json/json_test.rb +0 -16
  742. data/test/multiverse/suites/marshalling/Envfile +0 -3
  743. data/test/multiverse/suites/marshalling/config/newrelic.yml +0 -20
  744. data/test/multiverse/suites/marshalling/marshalling_test.rb +0 -16
  745. data/test/multiverse/suites/memcached/Envfile +0 -36
  746. data/test/multiverse/suites/memcached/dalli_test.rb +0 -163
  747. data/test/multiverse/suites/memcached/memcache_client_test.rb +0 -25
  748. data/test/multiverse/suites/memcached/memcache_test_cases.rb +0 -315
  749. data/test/multiverse/suites/memcached/memcached_test.rb +0 -179
  750. data/test/multiverse/suites/mongo/Envfile +0 -74
  751. data/test/multiverse/suites/mongo/config/newrelic.yml +0 -18
  752. data/test/multiverse/suites/mongo/helpers/mongo_operation_tests.rb +0 -551
  753. data/test/multiverse/suites/mongo/helpers/mongo_replica_set.rb +0 -97
  754. data/test/multiverse/suites/mongo/helpers/mongo_replica_set_test.rb +0 -82
  755. data/test/multiverse/suites/mongo/helpers/mongo_server.rb +0 -241
  756. data/test/multiverse/suites/mongo/helpers/mongo_server_test.rb +0 -176
  757. data/test/multiverse/suites/mongo/mongo2_instrumentation_test.rb +0 -493
  758. data/test/multiverse/suites/mongo/mongo_connection_test.rb +0 -40
  759. data/test/multiverse/suites/mongo/mongo_instrumentation_test.rb +0 -58
  760. data/test/multiverse/suites/mongo/mongo_unsupported_version_test.rb +0 -72
  761. data/test/multiverse/suites/net_http/Envfile +0 -6
  762. data/test/multiverse/suites/net_http/config/newrelic.yml +0 -18
  763. data/test/multiverse/suites/net_http/net_http_test.rb +0 -115
  764. data/test/multiverse/suites/padrino/Envfile +0 -19
  765. data/test/multiverse/suites/padrino/config/newrelic.yml +0 -22
  766. data/test/multiverse/suites/padrino/padrino_test.rb +0 -52
  767. data/test/multiverse/suites/rack/Envfile +0 -64
  768. data/test/multiverse/suites/rack/before_suite.rb +0 -12
  769. data/test/multiverse/suites/rack/builder_map_test.rb +0 -128
  770. data/test/multiverse/suites/rack/config/newrelic.yml +0 -18
  771. data/test/multiverse/suites/rack/example_app.rb +0 -119
  772. data/test/multiverse/suites/rack/http_response_code_test.rb +0 -49
  773. data/test/multiverse/suites/rack/nested_non_rack_app_test.rb +0 -66
  774. data/test/multiverse/suites/rack/puma_rack_builder_test.rb +0 -84
  775. data/test/multiverse/suites/rack/rack_auto_instrumentation_test.rb +0 -151
  776. data/test/multiverse/suites/rack/rack_cascade_test.rb +0 -44
  777. data/test/multiverse/suites/rack/rack_env_mutation_test.rb +0 -52
  778. data/test/multiverse/suites/rack/rack_parameter_filtering_test.rb +0 -49
  779. data/test/multiverse/suites/rack/rack_unsupported_version_test.rb +0 -43
  780. data/test/multiverse/suites/rack/response_content_type_test.rb +0 -49
  781. data/test/multiverse/suites/rack/url_map_test.rb +0 -155
  782. data/test/multiverse/suites/rails/Envfile +0 -61
  783. data/test/multiverse/suites/rails/action_cable_test.rb +0 -81
  784. data/test/multiverse/suites/rails/action_controller_live_rum_test.rb +0 -39
  785. data/test/multiverse/suites/rails/activejob_test.rb +0 -151
  786. data/test/multiverse/suites/rails/app.rb +0 -44
  787. data/test/multiverse/suites/rails/app/views/foos/_foo.html.haml +0 -1
  788. data/test/multiverse/suites/rails/app/views/views/_a_partial.html.erb +0 -2
  789. data/test/multiverse/suites/rails/app/views/views/_mid_partial.html.erb +0 -1
  790. data/test/multiverse/suites/rails/app/views/views/_top_partial.html.erb +0 -3
  791. data/test/multiverse/suites/rails/app/views/views/deep_partial.html.erb +0 -3
  792. data/test/multiverse/suites/rails/app/views/views/haml_view.html.haml +0 -6
  793. data/test/multiverse/suites/rails/app/views/views/index.html.erb +0 -4
  794. data/test/multiverse/suites/rails/bad_instrumentation_test.rb +0 -29
  795. data/test/multiverse/suites/rails/config/newrelic.yml +0 -30
  796. data/test/multiverse/suites/rails/dummy.txt +0 -1
  797. data/test/multiverse/suites/rails/error_tracing_test.rb +0 -346
  798. data/test/multiverse/suites/rails/gc_instrumentation_test.rb +0 -73
  799. data/test/multiverse/suites/rails/ignore_test.rb +0 -79
  800. data/test/multiverse/suites/rails/middleware_instrumentation_test.rb +0 -41
  801. data/test/multiverse/suites/rails/middlewares.rb +0 -19
  802. data/test/multiverse/suites/rails/parameter_capture_test.rb +0 -328
  803. data/test/multiverse/suites/rails/queue_time_test.rb +0 -89
  804. data/test/multiverse/suites/rails/rails2_app/app/controllers/application.rb +0 -7
  805. data/test/multiverse/suites/rails/rails2_app/config/boot.rb +0 -127
  806. data/test/multiverse/suites/rails/rails2_app/config/database.yml +0 -18
  807. data/test/multiverse/suites/rails/rails2_app/config/environment.rb +0 -16
  808. data/test/multiverse/suites/rails/rails2_app/config/environments/development.rb +0 -10
  809. data/test/multiverse/suites/rails/rails2_app/config/initializers/load_newrelic_rpm.rb +0 -9
  810. data/test/multiverse/suites/rails/rails2_app/config/preinitializer.rb +0 -25
  811. data/test/multiverse/suites/rails/rails2_app/config/routes.rb +0 -19
  812. data/test/multiverse/suites/rails/rails2_app/db/schema.rb +0 -5
  813. data/test/multiverse/suites/rails/rails3_app/app_rails3_plus.rb +0 -99
  814. data/test/multiverse/suites/rails/request_statistics_test.rb +0 -192
  815. data/test/multiverse/suites/rails/transaction_ignoring_test.rb +0 -41
  816. data/test/multiverse/suites/rails/view_instrumentation_test.rb +0 -254
  817. data/test/multiverse/suites/rake/Envfile +0 -43
  818. data/test/multiverse/suites/rake/Rakefile +0 -54
  819. data/test/multiverse/suites/rake/config/newrelic.yml +0 -18
  820. data/test/multiverse/suites/rake/multitask_test.rb +0 -40
  821. data/test/multiverse/suites/rake/rake_test.rb +0 -209
  822. data/test/multiverse/suites/rake/rake_test_helper.rb +0 -66
  823. data/test/multiverse/suites/rake/unsupported_rake_test.rb +0 -19
  824. data/test/multiverse/suites/redis/Envfile +0 -23
  825. data/test/multiverse/suites/redis/config/newrelic.yml +0 -19
  826. data/test/multiverse/suites/redis/redis_instrumentation_test.rb +0 -331
  827. data/test/multiverse/suites/redis/redis_unsupported_version_test.rb +0 -20
  828. data/test/multiverse/suites/resque/Envfile +0 -9
  829. data/test/multiverse/suites/resque/Rakefile +0 -3
  830. data/test/multiverse/suites/resque/config/newrelic.yml +0 -19
  831. data/test/multiverse/suites/resque/instrumentation_test.rb +0 -159
  832. data/test/multiverse/suites/resque/resque_marshalling_test.rb +0 -61
  833. data/test/multiverse/suites/sequel/Envfile +0 -41
  834. data/test/multiverse/suites/sequel/config/newrelic.yml +0 -18
  835. data/test/multiverse/suites/sequel/database.rb +0 -54
  836. data/test/multiverse/suites/sequel/sequel_extension_test.rb +0 -142
  837. data/test/multiverse/suites/sequel/sequel_helpers.rb +0 -62
  838. data/test/multiverse/suites/sequel/sequel_plugin_test.rb +0 -230
  839. data/test/multiverse/suites/sequel/sequel_safety_test.rb +0 -30
  840. data/test/multiverse/suites/sidekiq/Envfile +0 -43
  841. data/test/multiverse/suites/sidekiq/after_suite.rb +0 -16
  842. data/test/multiverse/suites/sidekiq/config/newrelic.yml +0 -20
  843. data/test/multiverse/suites/sidekiq/log/.gitkeep +0 -0
  844. data/test/multiverse/suites/sidekiq/sidekiq_instrumentation_test.rb +0 -220
  845. data/test/multiverse/suites/sidekiq/sidekiq_server.rb +0 -35
  846. data/test/multiverse/suites/sidekiq/test_model.rb +0 -12
  847. data/test/multiverse/suites/sidekiq/test_worker.rb +0 -71
  848. data/test/multiverse/suites/sinatra/Envfile +0 -27
  849. data/test/multiverse/suites/sinatra/config/newrelic.yml +0 -21
  850. data/test/multiverse/suites/sinatra/ignoring_test.rb +0 -226
  851. data/test/multiverse/suites/sinatra/nested_middleware_test.rb +0 -47
  852. data/test/multiverse/suites/sinatra/sinatra_classic_test.rb +0 -103
  853. data/test/multiverse/suites/sinatra/sinatra_error_tracing_test.rb +0 -48
  854. data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +0 -102
  855. data/test/multiverse/suites/sinatra/sinatra_modular_test.rb +0 -93
  856. data/test/multiverse/suites/sinatra/sinatra_parameter_capture_test.rb +0 -82
  857. data/test/multiverse/suites/sinatra/sinatra_routes_test.rb +0 -49
  858. data/test/multiverse/suites/sinatra/sinatra_test_cases.rb +0 -226
  859. data/test/multiverse/suites/typhoeus/Envfile +0 -68
  860. data/test/multiverse/suites/typhoeus/config/newrelic.yml +0 -18
  861. data/test/multiverse/suites/typhoeus/typhoeus_test.rb +0 -145
  862. data/test/multiverse/suites/yajl/Envfile +0 -20
  863. data/test/multiverse/suites/yajl/config/newrelic.yml +0 -21
  864. data/test/multiverse/suites/yajl/yajl_test.rb +0 -16
  865. data/test/multiverse/test/multiverse_test.rb +0 -59
  866. data/test/multiverse/test/suite_examples/one/a/Envfile +0 -3
  867. data/test/multiverse/test/suite_examples/one/a/a_test.rb +0 -14
  868. data/test/multiverse/test/suite_examples/one/a/config/newrelic.yml +0 -22
  869. data/test/multiverse/test/suite_examples/one/b/Envfile +0 -3
  870. data/test/multiverse/test/suite_examples/one/b/b_test.rb +0 -14
  871. data/test/multiverse/test/suite_examples/one/b/config/newrelic.yml +0 -22
  872. data/test/multiverse/test/suite_examples/three/a/Envfile +0 -2
  873. data/test/multiverse/test/suite_examples/three/a/fail_test.rb +0 -10
  874. data/test/multiverse/test/suite_examples/three/b/Envfile +0 -2
  875. data/test/multiverse/test/suite_examples/three/b/win_test.rb +0 -10
  876. data/test/multiverse/test/suite_examples/two/a/Envfile +0 -1
  877. data/test/multiverse/test/suite_examples/two/a/fail_test.rb +0 -10
  878. data/test/new_relic/FAKECHANGELOG +0 -21
  879. data/test/new_relic/agent/agent/connect_test.rb +0 -308
  880. data/test/new_relic/agent/agent/start_test.rb +0 -186
  881. data/test/new_relic/agent/agent/start_worker_thread_test.rb +0 -74
  882. data/test/new_relic/agent/agent_logger_test.rb +0 -389
  883. data/test/new_relic/agent/agent_test.rb +0 -710
  884. data/test/new_relic/agent/agent_test_controller.rb +0 -84
  885. data/test/new_relic/agent/apdex_from_server_test.rb +0 -13
  886. data/test/new_relic/agent/api_tests/datastore_api_test.rb +0 -64
  887. data/test/new_relic/agent/attribute_filter_test.rb +0 -218
  888. data/test/new_relic/agent/attribute_processing_test.rb +0 -164
  889. data/test/new_relic/agent/audit_logger_test.rb +0 -208
  890. data/test/new_relic/agent/autostart_test.rb +0 -79
  891. data/test/new_relic/agent/aws_info_test.rb +0 -76
  892. data/test/new_relic/agent/busy_calculator_test.rb +0 -96
  893. data/test/new_relic/agent/commands/agent_command_router_test.rb +0 -256
  894. data/test/new_relic/agent/commands/agent_command_test.rb +0 -37
  895. data/test/new_relic/agent/commands/thread_profiler_session_test.rb +0 -216
  896. data/test/new_relic/agent/commands/xray_session_collection_test.rb +0 -332
  897. data/test/new_relic/agent/commands/xray_session_test.rb +0 -42
  898. data/test/new_relic/agent/configuration/default_source_test.rb +0 -229
  899. data/test/new_relic/agent/configuration/dotted_hash_test.rb +0 -53
  900. data/test/new_relic/agent/configuration/environment_source_test.rb +0 -201
  901. data/test/new_relic/agent/configuration/high_security_source_test.rb +0 -92
  902. data/test/new_relic/agent/configuration/manager_test.rb +0 -455
  903. data/test/new_relic/agent/configuration/manual_source_test.rb +0 -18
  904. data/test/new_relic/agent/configuration/orphan_configuration_test.rb +0 -91
  905. data/test/new_relic/agent/configuration/server_source_test.rb +0 -202
  906. data/test/new_relic/agent/configuration/yaml_source_test.rb +0 -117
  907. data/test/new_relic/agent/cross_app_monitor_test.rb +0 -248
  908. data/test/new_relic/agent/custom_event_aggregator_test.rb +0 -127
  909. data/test/new_relic/agent/database/postgres_explain_obfuscator_test.rb +0 -34
  910. data/test/new_relic/agent/database/sql_obfuscation_test.rb +0 -52
  911. data/test/new_relic/agent/database_test.rb +0 -482
  912. data/test/new_relic/agent/datastores/metric_helper_test.rb +0 -203
  913. data/test/new_relic/agent/datastores/mongo/event_formatter_test.rb +0 -175
  914. data/test/new_relic/agent/datastores/mongo/metric_translator_test.rb +0 -270
  915. data/test/new_relic/agent/datastores/mongo/obfuscator_test.rb +0 -99
  916. data/test/new_relic/agent/datastores/mongo/statement_formatter_test.rb +0 -72
  917. data/test/new_relic/agent/datastores/redis_test.rb +0 -126
  918. data/test/new_relic/agent/datastores_test.rb +0 -202
  919. data/test/new_relic/agent/deprecator_test.rb +0 -52
  920. data/test/new_relic/agent/encoding_normalizer_test.rb +0 -69
  921. data/test/new_relic/agent/error_collector_test.rb +0 -407
  922. data/test/new_relic/agent/error_event_aggregator_test.rb +0 -237
  923. data/test/new_relic/agent/error_trace_aggregator_test.rb +0 -298
  924. data/test/new_relic/agent/event_aggregator_test.rb +0 -178
  925. data/test/new_relic/agent/event_buffer_test_cases.rb +0 -168
  926. data/test/new_relic/agent/event_listener_test.rb +0 -70
  927. data/test/new_relic/agent/event_loop_test.rb +0 -202
  928. data/test/new_relic/agent/harvester_test.rb +0 -79
  929. data/test/new_relic/agent/hostname_test.rb +0 -121
  930. data/test/new_relic/agent/http_clients/uri_util_test.rb +0 -64
  931. data/test/new_relic/agent/inbound_request_monitor_test.rb +0 -49
  932. data/test/new_relic/agent/instrumentation/action_cable_subscriber_test.rb +0 -124
  933. data/test/new_relic/agent/instrumentation/action_controller_subscriber_test.rb +0 -299
  934. data/test/new_relic/agent/instrumentation/action_view_subscriber_test.rb +0 -249
  935. data/test/new_relic/agent/instrumentation/active_job_test.rb +0 -20
  936. data/test/new_relic/agent/instrumentation/active_record_helper_test.rb +0 -66
  937. data/test/new_relic/agent/instrumentation/active_record_subscriber_test.rb +0 -210
  938. data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +0 -328
  939. data/test/new_relic/agent/instrumentation/delayed_job_instrumentation_test.rb +0 -23
  940. data/test/new_relic/agent/instrumentation/instance_identification_test.rb +0 -169
  941. data/test/new_relic/agent/instrumentation/instrumentation_test.rb +0 -14
  942. data/test/new_relic/agent/instrumentation/middleware_proxy_test.rb +0 -256
  943. data/test/new_relic/agent/instrumentation/middleware_tracing_test.rb +0 -49
  944. data/test/new_relic/agent/instrumentation/mongodb_command_subscriber_test.rb +0 -112
  945. data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +0 -41
  946. data/test/new_relic/agent/instrumentation/queue_time_test.rb +0 -103
  947. data/test/new_relic/agent/instrumentation/rack_test.rb +0 -44
  948. data/test/new_relic/agent/instrumentation/sequel_helper_test.rb +0 -36
  949. data/test/new_relic/agent/instrumentation/sinatra/transaction_namer_test.rb +0 -62
  950. data/test/new_relic/agent/instrumentation/sinatra_test.rb +0 -80
  951. data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +0 -186
  952. data/test/new_relic/agent/javascript_instrumentor_test.rb +0 -340
  953. data/test/new_relic/agent/memory_logger_test.rb +0 -85
  954. data/test/new_relic/agent/method_interrobang_test.rb +0 -31
  955. data/test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb +0 -112
  956. data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +0 -215
  957. data/test/new_relic/agent/method_tracer_test.rb +0 -480
  958. data/test/new_relic/agent/method_visibility_test.rb +0 -90
  959. data/test/new_relic/agent/mock_scope_listener.rb +0 -30
  960. data/test/new_relic/agent/new_relic_service/json_marshaller_test.rb +0 -27
  961. data/test/new_relic/agent/new_relic_service_test.rb +0 -972
  962. data/test/new_relic/agent/obfuscator_test.rb +0 -77
  963. data/test/new_relic/agent/parameter_filtering_test.rb +0 -39
  964. data/test/new_relic/agent/payload_metric_mapping_test.rb +0 -74
  965. data/test/new_relic/agent/pipe_channel_manager_test.rb +0 -316
  966. data/test/new_relic/agent/pipe_service_test.rb +0 -151
  967. data/test/new_relic/agent/rpm_agent_test.rb +0 -91
  968. data/test/new_relic/agent/rules_engine_test.rb +0 -136
  969. data/test/new_relic/agent/sampled_buffer_test.rb +0 -142
  970. data/test/new_relic/agent/sampler_collection_test.rb +0 -90
  971. data/test/new_relic/agent/sampler_test.rb +0 -66
  972. data/test/new_relic/agent/samplers/cpu_sampler_test.rb +0 -79
  973. data/test/new_relic/agent/samplers/memory_sampler_test.rb +0 -66
  974. data/test/new_relic/agent/samplers/vm_sampler_test.rb +0 -349
  975. data/test/new_relic/agent/sized_buffer_test.rb +0 -29
  976. data/test/new_relic/agent/sql_sampler_test.rb +0 -463
  977. data/test/new_relic/agent/stats_engine/gc_profiler_test.rb +0 -176
  978. data/test/new_relic/agent/stats_engine/metric_stats_test.rb +0 -328
  979. data/test/new_relic/agent/stats_engine/stats_hash_test.rb +0 -195
  980. data/test/new_relic/agent/stats_engine_test.rb +0 -32
  981. data/test/new_relic/agent/stats_test.rb +0 -187
  982. data/test/new_relic/agent/synthetics_event_aggregator_test.rb +0 -180
  983. data/test/new_relic/agent/synthetics_event_buffer_test.rb +0 -54
  984. data/test/new_relic/agent/synthetics_monitor_test.rb +0 -93
  985. data/test/new_relic/agent/system_info_test.rb +0 -133
  986. data/test/new_relic/agent/threading/agent_thread_test.rb +0 -149
  987. data/test/new_relic/agent/threading/backtrace_node_test.rb +0 -184
  988. data/test/new_relic/agent/threading/backtrace_service_test.rb +0 -603
  989. data/test/new_relic/agent/threading/fake_thread.rb +0 -43
  990. data/test/new_relic/agent/threading/thread_profile_test.rb +0 -271
  991. data/test/new_relic/agent/threading/threaded_test_case.rb +0 -18
  992. data/test/new_relic/agent/traced_method_stack_test.rb +0 -187
  993. data/test/new_relic/agent/transaction/abstract_segment_test.rb +0 -103
  994. data/test/new_relic/agent/transaction/attributes_test.rb +0 -268
  995. data/test/new_relic/agent/transaction/datastore_segment_test.rb +0 -336
  996. data/test/new_relic/agent/transaction/developer_mode_sample_buffer_test.rb +0 -75
  997. data/test/new_relic/agent/transaction/external_request_segment_test.rb +0 -330
  998. data/test/new_relic/agent/transaction/request_attributes_test.rb +0 -84
  999. data/test/new_relic/agent/transaction/segment_test.rb +0 -77
  1000. data/test/new_relic/agent/transaction/slowest_sample_buffer_test.rb +0 -67
  1001. data/test/new_relic/agent/transaction/synthetics_sample_buffer_test.rb +0 -38
  1002. data/test/new_relic/agent/transaction/trace_node_test.rb +0 -361
  1003. data/test/new_relic/agent/transaction/trace_test.rb +0 -394
  1004. data/test/new_relic/agent/transaction/tracing_test.rb +0 -176
  1005. data/test/new_relic/agent/transaction/xray_sample_buffer_test.rb +0 -71
  1006. data/test/new_relic/agent/transaction_error_primitive_test.rb +0 -117
  1007. data/test/new_relic/agent/transaction_event_aggregator_test.rb +0 -211
  1008. data/test/new_relic/agent/transaction_event_primitive_test.rb +0 -195
  1009. data/test/new_relic/agent/transaction_event_recorder_test.rb +0 -80
  1010. data/test/new_relic/agent/transaction_interrobang_test.rb +0 -33
  1011. data/test/new_relic/agent/transaction_metrics_test.rb +0 -113
  1012. data/test/new_relic/agent/transaction_sample_builder_test.rb +0 -215
  1013. data/test/new_relic/agent/transaction_sampler_test.rb +0 -860
  1014. data/test/new_relic/agent/transaction_state_test.rb +0 -122
  1015. data/test/new_relic/agent/transaction_test.rb +0 -1476
  1016. data/test/new_relic/agent/transaction_timings_test.rb +0 -91
  1017. data/test/new_relic/agent/utilization_data_test.rb +0 -258
  1018. data/test/new_relic/agent/vm/monotonic_gc_profiler_test.rb +0 -42
  1019. data/test/new_relic/agent/vm/mri_vm_test.rb +0 -40
  1020. data/test/new_relic/agent/vm/snapshot_test.rb +0 -13
  1021. data/test/new_relic/agent/vm_test.rb +0 -48
  1022. data/test/new_relic/agent/worker_loop_test.rb +0 -98
  1023. data/test/new_relic/agent_test.rb +0 -461
  1024. data/test/new_relic/cli/commands/deployments_test.rb +0 -136
  1025. data/test/new_relic/cli/commands/install_test.rb +0 -27
  1026. data/test/new_relic/coerce_test.rb +0 -93
  1027. data/test/new_relic/collection_helper_test.rb +0 -152
  1028. data/test/new_relic/control/class_methods_test.rb +0 -52
  1029. data/test/new_relic/control/frameworks/rails_test.rb +0 -29
  1030. data/test/new_relic/control/instance_methods_test.rb +0 -50
  1031. data/test/new_relic/control/instrumentation_test.rb +0 -41
  1032. data/test/new_relic/control_test.rb +0 -169
  1033. data/test/new_relic/data_container_tests.rb +0 -87
  1034. data/test/new_relic/dependency_detection_test.rb +0 -155
  1035. data/test/new_relic/dispatcher_test.rb +0 -60
  1036. data/test/new_relic/environment_report_test.rb +0 -107
  1037. data/test/new_relic/evil_server.rb +0 -55
  1038. data/test/new_relic/fake_collector.rb +0 -390
  1039. data/test/new_relic/fake_external_server.rb +0 -65
  1040. data/test/new_relic/fake_instance_metadata_service.rb +0 -45
  1041. data/test/new_relic/fake_rpm_site.rb +0 -35
  1042. data/test/new_relic/fake_server.rb +0 -104
  1043. data/test/new_relic/filtering_test_app.rb +0 -19
  1044. data/test/new_relic/framework_test.rb +0 -58
  1045. data/test/new_relic/http_client_test_cases.rb +0 -639
  1046. data/test/new_relic/language_support_test.rb +0 -98
  1047. data/test/new_relic/latest_changes_test.rb +0 -34
  1048. data/test/new_relic/license_test.rb +0 -125
  1049. data/test/new_relic/load_test.rb +0 -15
  1050. data/test/new_relic/local_environment_test.rb +0 -103
  1051. data/test/new_relic/marshalling_test_cases.rb +0 -183
  1052. data/test/new_relic/metric_data_test.rb +0 -144
  1053. data/test/new_relic/metric_parser/metric_parser_test.rb +0 -17
  1054. data/test/new_relic/metric_spec_test.rb +0 -144
  1055. data/test/new_relic/multiverse_helpers.rb +0 -289
  1056. data/test/new_relic/noticed_error_test.rb +0 -267
  1057. data/test/new_relic/rack/agent_hooks_test.rb +0 -44
  1058. data/test/new_relic/rack/agent_middleware_test.rb +0 -32
  1059. data/test/new_relic/rack/browser_monitoring_test.rb +0 -195
  1060. data/test/new_relic/rack/developer_mode/segment_summary_test.rb +0 -96
  1061. data/test/new_relic/rack/developer_mode_helper_test.rb +0 -136
  1062. data/test/new_relic/rack/developer_mode_test.rb +0 -96
  1063. data/test/new_relic/transaction_ignoring_test_cases.rb +0 -102
  1064. data/test/nullverse/default_source_require_test.rb +0 -21
  1065. data/test/nullverse/nullverse_helper.rb +0 -10
  1066. data/test/performance/README.md +0 -175
  1067. data/test/performance/lib/performance.rb +0 -38
  1068. data/test/performance/lib/performance/baseline.rb +0 -36
  1069. data/test/performance/lib/performance/baseline_compare_reporter.rb +0 -103
  1070. data/test/performance/lib/performance/baseline_save_reporter.rb +0 -24
  1071. data/test/performance/lib/performance/console_reporter.rb +0 -66
  1072. data/test/performance/lib/performance/formatting_helpers.rb +0 -22
  1073. data/test/performance/lib/performance/hako_client.rb +0 -31
  1074. data/test/performance/lib/performance/hako_reporter.rb +0 -26
  1075. data/test/performance/lib/performance/instrumentation/cpu_usage.rb +0 -26
  1076. data/test/performance/lib/performance/instrumentation/gc_stats.rb +0 -56
  1077. data/test/performance/lib/performance/instrumentation/perf_tools.rb +0 -30
  1078. data/test/performance/lib/performance/instrumentation/stackprof.rb +0 -46
  1079. data/test/performance/lib/performance/instrumentor.rb +0 -96
  1080. data/test/performance/lib/performance/json_reporter.rb +0 -15
  1081. data/test/performance/lib/performance/platform.rb +0 -31
  1082. data/test/performance/lib/performance/reporting.rb +0 -36
  1083. data/test/performance/lib/performance/result.rb +0 -104
  1084. data/test/performance/lib/performance/runner.rb +0 -221
  1085. data/test/performance/lib/performance/table.rb +0 -105
  1086. data/test/performance/lib/performance/test_case.rb +0 -152
  1087. data/test/performance/lib/performance/timer.rb +0 -40
  1088. data/test/performance/script/baselines +0 -102
  1089. data/test/performance/script/mega-runner +0 -37
  1090. data/test/performance/script/runner +0 -131
  1091. data/test/performance/suites/active_record.rb +0 -26
  1092. data/test/performance/suites/active_record_subscriber.rb +0 -100
  1093. data/test/performance/suites/agent_attributes.rb +0 -62
  1094. data/test/performance/suites/config.rb +0 -35
  1095. data/test/performance/suites/datastores.rb +0 -59
  1096. data/test/performance/suites/error_collector.rb +0 -28
  1097. data/test/performance/suites/external_segment.rb +0 -82
  1098. data/test/performance/suites/marshalling.rb +0 -148
  1099. data/test/performance/suites/queue_time.rb +0 -21
  1100. data/test/performance/suites/rack_middleware.rb +0 -136
  1101. data/test/performance/suites/redis.rb +0 -45
  1102. data/test/performance/suites/rules_engine.rb +0 -35
  1103. data/test/performance/suites/rum_autoinsertion.rb +0 -75
  1104. data/test/performance/suites/segment_terms_rule.rb +0 -27
  1105. data/test/performance/suites/sql_obfuscation.rb +0 -50
  1106. data/test/performance/suites/startup.rb +0 -12
  1107. data/test/performance/suites/stats_hash.rb +0 -31
  1108. data/test/performance/suites/thread_profiling.rb +0 -116
  1109. data/test/performance/suites/trace_execution_scoped.rb +0 -31
  1110. data/test/performance/suites/transaction_tracing.rb +0 -106
  1111. data/test/script/before_install/gemstash_mirror.sh +0 -10
  1112. data/test/script/before_script/install_mongodb.sh +0 -12
  1113. data/test/script/ci.sh +0 -15
  1114. data/test/script/external_server.rb +0 -31
  1115. data/test/script/path_hash.rb +0 -49
  1116. data/test/test_helper.rb +0 -59
  1117. data/ui/helpers/developer_mode_helper.rb +0 -325
  1118. data/ui/helpers/google_pie_chart.rb +0 -54
  1119. data/ui/views/layouts/newrelic_default.rhtml +0 -48
  1120. data/ui/views/newrelic/_explain_plans.rhtml +0 -27
  1121. data/ui/views/newrelic/_sample.rhtml +0 -20
  1122. data/ui/views/newrelic/_segment.rhtml +0 -28
  1123. data/ui/views/newrelic/_segment_limit_message.rhtml +0 -1
  1124. data/ui/views/newrelic/_segment_row.rhtml +0 -12
  1125. data/ui/views/newrelic/_show_sample_detail.rhtml +0 -24
  1126. data/ui/views/newrelic/_show_sample_sql.rhtml +0 -24
  1127. data/ui/views/newrelic/_show_sample_summary.rhtml +0 -3
  1128. data/ui/views/newrelic/_sql_row.rhtml +0 -16
  1129. data/ui/views/newrelic/_stack_trace.rhtml +0 -15
  1130. data/ui/views/newrelic/_table.rhtml +0 -12
  1131. data/ui/views/newrelic/explain_sql.rhtml +0 -43
  1132. data/ui/views/newrelic/file/images/arrow-close.png +0 -0
  1133. data/ui/views/newrelic/file/images/arrow-open.png +0 -0
  1134. data/ui/views/newrelic/file/images/blue_bar.gif +0 -0
  1135. data/ui/views/newrelic/file/images/file_icon.png +0 -0
  1136. data/ui/views/newrelic/file/images/gray_bar.gif +0 -0
  1137. data/ui/views/newrelic/file/images/new-relic-rpm-desktop.gif +0 -0
  1138. data/ui/views/newrelic/file/images/new_relic_rpm_desktop.gif +0 -0
  1139. data/ui/views/newrelic/file/images/textmate.png +0 -0
  1140. data/ui/views/newrelic/file/javascript/jquery-1.4.2.js +0 -6243
  1141. data/ui/views/newrelic/file/javascript/transaction_sample.js +0 -123
  1142. data/ui/views/newrelic/file/stylesheets/style.css +0 -490
  1143. data/ui/views/newrelic/index.rhtml +0 -70
  1144. data/ui/views/newrelic/sample_not_found.rhtml +0 -2
  1145. data/ui/views/newrelic/show_sample.rhtml +0 -81
  1146. data/ui/views/newrelic/threads.rhtml +0 -45
  1147. data/vendor/gems/metric_parser-0.1.0.pre1/.specification +0 -116
  1148. data/vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb +0 -5
  1149. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser.rb +0 -70
  1150. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/action_mailer.rb +0 -18
  1151. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_merchant.rb +0 -35
  1152. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_record.rb +0 -37
  1153. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/apdex.rb +0 -93
  1154. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/background_transaction.rb +0 -11
  1155. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/client.rb +0 -50
  1156. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller.rb +0 -71
  1157. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_cpu.rb +0 -47
  1158. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_ext.rb +0 -21
  1159. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database.rb +0 -52
  1160. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database_pool.rb +0 -28
  1161. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net.rb +0 -32
  1162. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net_parser.rb +0 -21
  1163. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/errors.rb +0 -15
  1164. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/external.rb +0 -59
  1165. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/frontend.rb +0 -44
  1166. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/gc.rb +0 -24
  1167. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/hibernate_session.rb +0 -11
  1168. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java.rb +0 -35
  1169. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java_parser.rb +0 -21
  1170. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp.rb +0 -38
  1171. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp_tag.rb +0 -11
  1172. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/mem_cache.rb +0 -56
  1173. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/metric_parser.rb +0 -138
  1174. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/middleware.rb +0 -33
  1175. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/nested.rb +0 -23
  1176. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/orm.rb +0 -31
  1177. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/other_transaction.rb +0 -44
  1178. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet.rb +0 -11
  1179. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_context_listener.rb +0 -11
  1180. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_filter.rb +0 -11
  1181. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_init.rb +0 -11
  1182. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr.rb +0 -31
  1183. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr_request_handler.rb +0 -19
  1184. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring.rb +0 -58
  1185. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_controller.rb +0 -10
  1186. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_view.rb +0 -10
  1187. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_action.rb +0 -24
  1188. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_result.rb +0 -24
  1189. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/version.rb +0 -9
  1190. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/view.rb +0 -74
  1191. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_frontend.rb +0 -22
  1192. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_service.rb +0 -18
  1193. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_transaction.rb +0 -137
@@ -1,80 +0,0 @@
1
- # encoding: utf-8
2
- # This file is distributed under New Relic's license terms.
3
- # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
4
-
5
- require File.expand_path(File.join(File.dirname(__FILE__),'..','..','test_helper'))
6
- require 'new_relic/agent/transaction_event_recorder'
7
-
8
- module NewRelic
9
- module Agent
10
- class TransactionEventRecorderTest < Minitest::Test
11
-
12
- def setup
13
- @recorder = TransactionEventRecorder.new
14
- @attributes = nil
15
- end
16
-
17
- def test_synthetics_events_overflow_to_transaction_buffer
18
- with_config :'synthetics.events_limit' => 10 do
19
- 20.times do
20
- generate_request
21
- end
22
-
23
- _, txn_events = harvest_transaction_events!
24
- _, syn_events = harvest_synthetics_events!
25
-
26
- assert_equal 10, txn_events.size
27
- assert_equal 10, syn_events.size
28
- end
29
- end
30
-
31
- def test_synthetics_events_timestamp_bumps_go_to_main_buffer
32
- with_config :'synthetics.events_limit' => 10 do
33
- 10.times do |i|
34
- generate_request("syn_#{i}", :timestamp => i + 10)
35
- end
36
-
37
- generate_request("syn_10", :timestamp => 1)
38
-
39
- _, txn_events = harvest_transaction_events!
40
- _, syn_events = harvest_synthetics_events!
41
-
42
- assert_equal 10, syn_events.size
43
- assert_equal 10.0, syn_events[0][0]["timestamp"]
44
- assert_equal 1, txn_events.size
45
- end
46
- end
47
-
48
- def generate_request name='whatever', options={}
49
- payload = {
50
- :name => "Controller/#{name}",
51
- :type => :controller,
52
- :start_timestamp => options[:timestamp] || Time.now.to_f,
53
- :duration => 0.1,
54
- :synthetics_resource_id => 100,
55
- :attributes => attributes,
56
- :error => false
57
- }.merge(options)
58
-
59
- @recorder.record payload
60
- end
61
-
62
- def attributes
63
- if @attributes.nil?
64
- filter = NewRelic::Agent::AttributeFilter.new(NewRelic::Agent.config)
65
- @attributes = NewRelic::Agent::Transaction::Attributes.new(filter)
66
- end
67
-
68
- @attributes
69
- end
70
-
71
- def harvest_transaction_events!
72
- @recorder.transaction_event_aggregator.harvest!
73
- end
74
-
75
- def harvest_synthetics_events!
76
- @recorder.synthetics_event_aggregator.harvest!
77
- end
78
- end
79
- end
80
- end
@@ -1,33 +0,0 @@
1
- # encoding: utf-8
2
- # This file is distributed under New Relic's license terms.
3
- # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
4
-
5
- require File.expand_path(File.join(File.dirname(__FILE__),'..','..','test_helper'))
6
- require 'new_relic/agent/instrumentation/controller_instrumentation'
7
-
8
- class TransactionInterrobangTest < Minitest::Test
9
- include NewRelic::Agent::Instrumentation::ControllerInstrumentation
10
-
11
- def interrogate?
12
- "say what?"
13
- end
14
-
15
- def mutate!
16
- "oh yeah!"
17
- end
18
-
19
- add_transaction_tracer :interrogate?
20
- add_transaction_tracer :mutate!
21
-
22
- def test_alias_method_ending_in_question_mark
23
- assert_respond_to self, :interrogate?
24
- assert_respond_to self, :interrogate_with_newrelic_transaction_trace?
25
- assert_equal "say what?", interrogate?
26
- end
27
-
28
- def test_alias_method_ending_in_exclamation_mark
29
- assert_respond_to self, :mutate!
30
- assert_respond_to self, :mutate_with_newrelic_transaction_trace!
31
- assert_equal "oh yeah!",mutate!
32
- end
33
- end
@@ -1,113 +0,0 @@
1
- # encoding: utf-8
2
- # This file is distributed under New Relic's license terms.
3
- # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
4
-
5
- require File.expand_path(File.join(File.dirname(__FILE__),'..','..','test_helper'))
6
- require 'new_relic/agent/transaction_metrics'
7
-
8
- class TransactionMetricsTest < Minitest::Test
9
- def setup
10
- @metrics = NewRelic::Agent::TransactionMetrics.new
11
- end
12
-
13
- def test_record_scoped_and_unscoped_should_record_a_scoped_metric
14
- @metrics.record_scoped_and_unscoped('foo', 42, 12)
15
- assert_scoped_metrics(@metrics, ['foo'], {
16
- :call_count => 1,
17
- :total_call_time => 42,
18
- :total_exclusive_time => 12
19
- })
20
- assert_unscoped_metrics(@metrics, [])
21
- end
22
-
23
- def test_record_scoped_and_unscoped_should_take_multiple_metrics
24
- @metrics.record_scoped_and_unscoped(['foo', 'bar'], 42, 12)
25
- assert_scoped_metrics(@metrics, ['foo', 'bar'], {
26
- :call_count => 1,
27
- :total_call_time => 42,
28
- :total_exclusive_time => 12
29
- })
30
- assert_unscoped_metrics(@metrics, [])
31
- end
32
-
33
- def test_record_scoped_and_unscoped_should_take_a_block
34
- @metrics.record_scoped_and_unscoped('foo') do |stats|
35
- stats.call_count = 3
36
- stats.total_call_time = 2
37
- stats.total_exclusive_time = 1
38
- end
39
- assert_scoped_metrics(@metrics, ['foo'], {
40
- :call_count => 3,
41
- :total_call_time => 2,
42
- :total_exclusive_time => 1
43
- })
44
- assert_unscoped_metrics(@metrics, [])
45
- end
46
-
47
- def test_record_unscoped_should_record_an_unscoped_metric
48
- @metrics.record_unscoped('foo', 42, 12)
49
- assert_unscoped_metrics(@metrics, ['foo'], {
50
- :call_count => 1,
51
- :total_call_time => 42,
52
- :total_exclusive_time => 12
53
- })
54
- assert_scoped_metrics(@metrics, [])
55
- end
56
-
57
- def test_record_unscoped_should_take_multiple_metrics
58
- @metrics.record_unscoped(['foo', 'bar'], 42, 12)
59
- assert_unscoped_metrics(@metrics, ['foo', 'bar'], {
60
- :call_count => 1,
61
- :total_call_time => 42,
62
- :total_exclusive_time => 12
63
- })
64
- assert_scoped_metrics(@metrics, [])
65
- end
66
-
67
- def test_record_unscoped_should_take_a_block
68
- @metrics.record_unscoped('foo') do |stats|
69
- stats.call_count = 3
70
- stats.total_call_time = 2
71
- stats.total_exclusive_time = 1
72
- end
73
- assert_unscoped_metrics(@metrics, ['foo'], {
74
- :call_count => 3,
75
- :total_call_time => 2,
76
- :total_exclusive_time => 1
77
- })
78
- assert_scoped_metrics(@metrics, [])
79
- end
80
-
81
- def test_square_brackets_look_up_unscoped_metrics
82
- @metrics.record_unscoped('foo', 42, 12)
83
- @metrics.record_scoped_and_unscoped('foo', 2, 1)
84
- assert_equal(42, @metrics['foo'].total_call_time)
85
- end
86
-
87
- def test_has_key_checks_for_unscoped_metric_presence
88
- refute @metrics.has_key?('foo')
89
- end
90
-
91
- def assert_unscoped_metrics(txn_metrics, expected_metric_names, expected_attrs={})
92
- assert_scoped_or_unscoped_metrics(:unscoped, txn_metrics, expected_metric_names, expected_attrs)
93
- end
94
-
95
- def assert_scoped_metrics(txn_metrics, expected_metric_names, expected_attrs={})
96
- assert_scoped_or_unscoped_metrics(:scoped, txn_metrics, expected_metric_names, expected_attrs)
97
- end
98
-
99
- def assert_scoped_or_unscoped_metrics(type, txn_metrics, expected_metric_names, expected_attrs)
100
- names = []
101
- all_stats = []
102
-
103
- txn_metrics.send("each_#{type}") do |name, stats|
104
- names << name
105
- all_stats << stats
106
- end
107
-
108
- assert_equal(expected_metric_names.sort, names.sort)
109
- names.zip(all_stats).each do |(name, stats)|
110
- assert_stats_has_values(stats, name, expected_attrs)
111
- end
112
- end
113
- end
@@ -1,215 +0,0 @@
1
- # encoding: utf-8
2
- # This file is distributed under New Relic's license terms.
3
- # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
4
-
5
- require File.expand_path(File.join(File.dirname(__FILE__),'..','..','test_helper'))
6
-
7
- class NewRelic::Agent::TransactionSampleBuilderTest < Minitest::Test
8
-
9
- def setup
10
- freeze_time
11
- @builder = NewRelic::Agent::TransactionSampleBuilder.new
12
- end
13
-
14
- def test_build_sample
15
- build_node("a") do
16
- build_node("aa") do
17
- build_node("aaa")
18
- end
19
- build_node("ab") do
20
- build_node("aba") do
21
- build_node("abaa")
22
- end
23
- build_node("aba")
24
- build_node("abc") do
25
- build_node("abca")
26
- build_node("abcd")
27
- end
28
- end
29
- end
30
- build_node "b"
31
- build_node "c" do
32
- build_node "ca"
33
- build_node "cb" do
34
- build_node "cba"
35
- end
36
- end
37
-
38
- @builder.finish_trace(Time.now.to_f)
39
- validate_builder
40
- end
41
-
42
- def test_freeze
43
- build_node "a" do
44
- build_node "aa"
45
- end
46
-
47
- @builder.finish_trace(Time.now.to_f)
48
-
49
- validate_builder
50
-
51
- assert_raises(NewRelic::Agent::Transaction::Trace::FinishedTraceError) do
52
- build_node "b"
53
- end
54
- end
55
-
56
- def test_marshal
57
- build_node "a" do
58
- build_node "ab"
59
- end
60
- build_node "b" do
61
- build_node "ba"
62
- build_node "bb"
63
- build_node "bc" do
64
- build_node "bca"
65
- end
66
- end
67
- build_node "c"
68
-
69
- @builder.finish_trace(Time.now.to_f)
70
- validate_builder
71
-
72
- dump = Marshal.dump @builder.sample
73
- sample = Marshal.restore(dump)
74
- validate_node(sample.root_node)
75
- end
76
-
77
- def test_parallel_first_level_nodes
78
- build_node "a" do
79
- build_node "ab"
80
- end
81
- build_node "b"
82
- build_node "c"
83
-
84
- @builder.finish_trace(Time.now.to_f)
85
- validate_builder
86
- end
87
-
88
- def test_trace_should_not_record_more_than_node_limit
89
- with_config(:'transaction_tracer.limit_segments' => 3) do
90
- 8.times {|i| build_node i.to_s }
91
- assert_equal 3, @builder.sample.count_nodes
92
- end
93
- end
94
-
95
- def test_trace_has_valid_durations_when_nodes_limited
96
- with_config(:'transaction_tracer.limit_segments' => 3) do
97
- build_node "parent" do
98
- advance_time 1
99
- build_node "child-0.0" do
100
- advance_time 1
101
- build_node "child-0.1" do
102
- advance_time 1
103
- end
104
- end
105
- advance_time 1
106
- build_node "child-1.0" do
107
- advance_time 1
108
- build_node "child-1.1" do
109
- advance_time 1
110
- end
111
- end
112
- end
113
-
114
- sample = @builder.sample
115
- assert_equal(3, sample.count_nodes)
116
-
117
- node_names = []
118
- node_durations = []
119
- sample.each_node do |s|
120
- if s != sample.root_node
121
- node_names << s.metric_name
122
- node_durations << s.duration
123
- end
124
- end
125
-
126
- assert_equal(["parent", "child-0.0", "child-0.1"], node_names)
127
- assert_equal([6.0, 2.0, 1.0], node_durations)
128
- end
129
- end
130
-
131
- def test_attaching_params_doesnt_raise_when_nodes_are_limited
132
- with_config(:'transaction_tracer.limit_segments' => 5) do
133
- 6.times { |i| build_node "s#{i}" }
134
- # now we should have a placeholder node
135
- build_node "this-should-be-truncated" do
136
- @builder.current_node['eggs'] = 'ham'
137
- @builder.current_node.params.merge!('foo' => 'bar')
138
- end
139
- end
140
- end
141
-
142
- def test_finish_trace_records_threshold
143
- with_config(:'transaction_tracer.transaction_threshold' => 2.0) do
144
- @builder.finish_trace
145
- assert_equal 2.0, @builder.sample.threshold
146
- end
147
- end
148
-
149
- # regression
150
- def test_trace_should_log_node_reached_once
151
- with_config(:'transaction_tracer.limit_segments' => 3) do
152
- expects_logging(:debug, includes("Node limit"))
153
- 8.times {|i| build_node i.to_s }
154
- end
155
- end
156
-
157
- def test_has_correct_transaction_trace_threshold_when_default
158
- in_transaction do
159
- with_config(:apdex_t => 1.5) do
160
- assert_equal 6.0, @builder.transaction_trace_threshold
161
- end
162
-
163
- with_config(:apdex_t => 2.0) do
164
- assert_equal 8.0, @builder.transaction_trace_threshold
165
- end
166
- end
167
- end
168
-
169
- def test_has_correct_transaction_trace_threshold_when_explicitly_specified
170
- config = { :'transaction_tracer.transaction_threshold' => 4.0 }
171
-
172
- in_transaction do
173
- with_config(config) do
174
- NewRelic::Agent::TransactionState.tl_get.current_transaction.stubs(:apdex_t).returns(1.5)
175
- assert_equal 4.0, @builder.transaction_trace_threshold
176
- end
177
- end
178
- end
179
-
180
- def validate_builder(check_names = true)
181
- validate_node @builder.sample.root_node, check_names
182
- end
183
-
184
- def validate_node(s, check_names = true)
185
- p = s.parent_node
186
-
187
- unless p.nil? || p.metric_name == 'ROOT'
188
- assert p.called_nodes.include?(s)
189
- assert_equal p.metric_name.length, s.metric_name.length - 1, "p: #{p.metric_name}, s: #{s.metric_name}" if check_names
190
- assert p.metric_name < s.metric_name if check_names
191
- assert p.entry_timestamp <= s.entry_timestamp
192
- end
193
-
194
- assert s.exit_timestamp >= s.entry_timestamp
195
-
196
- children = s.called_nodes
197
- parent = s
198
- children.each do |child|
199
- if check_names
200
- assert(child.metric_name > parent.metric_name,
201
- "#{child.metric_name} !> #{parent.metric_name}")
202
- end
203
- assert(child.entry_timestamp >= parent.entry_timestamp,
204
- "#{child.entry_timestamp} !>= #{parent.entry_timestamp}")
205
-
206
- validate_node(child, check_names)
207
- end
208
- end
209
-
210
- def build_node(metric, time = 0, &proc)
211
- @builder.trace_entry(Time.now.to_f)
212
- proc.call if proc
213
- @builder.trace_exit(metric, Time.now.to_f)
214
- end
215
- end
@@ -1,860 +0,0 @@
1
- # encoding: utf-8
2
- # This file is distributed under New Relic's license terms.
3
- # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
4
-
5
- require File.expand_path(File.join(File.dirname(__FILE__),'..','..','test_helper'))
6
- require File.expand_path(File.join(File.dirname(__FILE__),'..','data_container_tests'))
7
-
8
- class NewRelic::Agent::TransactionSamplerTest < Minitest::Test
9
-
10
- module MockGCStats
11
-
12
- def time
13
- return 0 if @@values.empty?
14
- raise "too many calls" if @@index >= @@values.size
15
- @@curtime ||= 0
16
- @@curtime += (@@values[@@index] * 1e09).to_i
17
- @@index += 1
18
- @@curtime
19
- end
20
-
21
- def self.mock_values= array
22
- @@values = array
23
- @@index = 0
24
- end
25
-
26
- end
27
-
28
- def setup
29
- NewRelic::Agent::TransactionState.tl_clear_for_testing
30
- @state = NewRelic::Agent::TransactionState.tl_get
31
- agent = NewRelic::Agent.instance
32
- stats_engine = NewRelic::Agent::StatsEngine.new
33
- agent.stubs(:stats_engine).returns(stats_engine)
34
- @sampler = NewRelic::Agent::TransactionSampler.new
35
- @old_sampler = NewRelic::Agent.instance.transaction_sampler
36
- NewRelic::Agent.instance.instance_variable_set(:@transaction_sampler, @sampler)
37
- @test_config = { :'transaction_tracer.enabled' => true }
38
- NewRelic::Agent.config.add_config_for_testing(@test_config)
39
-
40
- attributes = NewRelic::Agent::Transaction::Attributes.new(NewRelic::Agent.instance.attribute_filter)
41
- @txn = stub('txn',
42
- :best_name => '/path',
43
- :request_path => '/request_path',
44
- :guid => 'a guid',
45
- :ignore_trace? => false,
46
- :cat_trip_id => '',
47
- :cat_path_hash => '',
48
- :is_synthetics_request? => false,
49
- :filtered_params => {},
50
- :attributes => attributes
51
- )
52
- end
53
-
54
- def teardown
55
- super
56
- NewRelic::Agent::TransactionState.tl_clear_for_testing
57
- NewRelic::Agent.config.remove_config(@test_config)
58
- NewRelic::Agent.instance.instance_variable_set(:@transaction_sampler, @old_sampler)
59
- end
60
-
61
- # Helpers for DataContainerTests
62
-
63
- def create_container
64
- @sampler
65
- end
66
-
67
- def populate_container(sampler, n)
68
- n.times do |i|
69
- sample = sample_with(:duration => 1, :transaction_name => "t#{i}", :synthetics_resource_id => 1)
70
- @sampler.store_sample(sample)
71
- end
72
- end
73
-
74
- include NewRelic::DataContainerTests
75
-
76
- # Tests
77
-
78
- def test_on_start_transaction_default
79
- @sampler.expects(:start_builder).with(@state, 100.0)
80
- @sampler.on_start_transaction(@state, Time.at(100))
81
- end
82
-
83
- def test_on_start_transaction_disabled
84
- with_config(:'transaction_tracer.enabled' => false,
85
- :developer_mode => false) do
86
- @sampler.expects(:start_builder).never
87
- @sampler.on_start_transaction(@state, Time.at(100))
88
- end
89
- end
90
-
91
- def test_notice_push_frame_no_builder
92
- assert_equal(nil, @sampler.notice_push_frame(@state))
93
- end
94
-
95
- def test_notice_pop_frame_no_builder
96
- assert_equal(nil, @sampler.notice_pop_frame(@state, 'a frame', Time.at(100)))
97
- end
98
-
99
- def test_notice_pop_frame_with_finished_sample
100
- builder = mock('builder')
101
- sample = mock('sample')
102
- builder.expects(:sample).returns(sample)
103
- sample.expects(:finished).returns(true)
104
- @state.expects(:transaction_sample_builder).returns(builder)
105
-
106
- assert_raises(RuntimeError) do
107
- @sampler.notice_pop_frame(@state, 'a frame', Time.at(100))
108
- end
109
- end
110
-
111
- def test_on_finishing_transaction_no_builder
112
- @state.transaction_sample_builder = nil
113
- assert_equal(nil, @sampler.on_finishing_transaction(@state, @txn))
114
- end
115
-
116
- def test_captures_correct_transaction_duration
117
- freeze_time
118
- in_transaction do |txn|
119
- advance_time(10.0)
120
- end
121
-
122
- assert_equal(10.0, @sampler.last_sample.duration)
123
- end
124
-
125
- def test_on_finishing_transaction_passes_guid_along
126
- in_transaction do |txn|
127
- txn.stubs(:guid).returns('a guid')
128
- end
129
-
130
- assert_equal('a guid', @sampler.last_sample.guid)
131
- end
132
-
133
- def test_records_cpu_time_on_transaction_samples
134
- in_transaction do |txn|
135
- txn.stubs(:cpu_burn).returns(42)
136
- end
137
-
138
- assert_equal(42, attributes_for(@sampler.last_sample, :intrinsic)[:cpu_time])
139
- end
140
-
141
- def test_notice_extra_data_no_builder
142
- ret = @sampler.send(:notice_extra_data, nil, nil, nil, nil)
143
- assert_nil ret
144
- end
145
-
146
- def test_notice_extra_data_no_node
147
- mock_builder = mock('builder')
148
- @sampler.expects(:tl_builder).returns(mock_builder).once
149
- mock_builder.expects(:current_node).returns(nil)
150
- builder = @sampler.tl_builder
151
- @sampler.send(:notice_extra_data, builder, nil, nil, nil)
152
- end
153
-
154
- def test_notice_extra_data_with_node_no_old_message_no_config_key
155
- key = :a_key
156
- mock_builder = mock('builder')
157
- node = mock('node')
158
- @sampler.expects(:tl_builder).returns(mock_builder).once
159
- mock_builder.expects(:current_node).returns(node)
160
- NewRelic::Agent::TransactionSampler.expects(:truncate_message) \
161
- .with('a message').returns('truncated_message')
162
- node.expects(:[]=).with(key, 'truncated_message')
163
- @sampler.expects(:append_backtrace).with(node, 1.0)
164
- builder = @sampler.tl_builder
165
- @sampler.send(:notice_extra_data, builder, 'a message', 1.0, key)
166
- end
167
-
168
- def test_append_backtrace_under_duration
169
- with_config(:'transaction_tracer.stack_trace_threshold' => 2.0) do
170
- node = mock('node')
171
- node.expects(:[]=).with(:backtrace, any_parameters).never
172
- @sampler.append_backtrace(mock('node'), 1.0)
173
- end
174
- end
175
-
176
- def test_append_backtrace_over_duration
177
- with_config(:'transaction_tracer.stack_trace_threshold' => 2.0) do
178
- node = mock('node')
179
- # note the mocha expectation matcher - you can't hardcode a
180
- # backtrace so we match on any string, which should be okay.
181
- node.expects(:[]=).with(:backtrace, instance_of(String))
182
- @sampler.append_backtrace(node, 2.5)
183
- end
184
- end
185
-
186
- def test_notice_sql_recording_sql
187
- @state.record_sql = true
188
- builder = @sampler.tl_builder
189
- @sampler.expects(:notice_extra_data).with do |sample_builder, message, duration, key|
190
- sample_builder == builder &&
191
- message.sql == 'some sql' &&
192
- duration == 1.0 &&
193
- key == :sql
194
- end
195
- @sampler.notice_sql('some sql', {:config => 'a config'}, 1.0, @state)
196
- end
197
-
198
- def test_notice_sql_not_recording
199
- @state.record_sql = false
200
- builder = @sampler.tl_builder
201
- @sampler.expects(:notice_extra_data).with(builder, 'some sql', 1.0, :sql).never # <--- important
202
- @sampler.notice_sql('some sql', {:config => 'a config'}, 1.0, @state)
203
- end
204
-
205
- def test_notice_sql_statment_recording_sql
206
- @state.record_sql = true
207
- builder = @sampler.tl_builder
208
- @sampler.expects(:notice_extra_data).with do |sample_builder, message, duration, key|
209
- sample_builder == builder &&
210
- message.sql == 'some sql' &&
211
- duration == 1.0 &&
212
- key == :sql
213
- end
214
- statement = NewRelic::Agent::Database::Statement.new 'some sql', {:config => 'a config'}
215
- @sampler.notice_sql_statement(statement, 1.0)
216
- end
217
-
218
- def test_notice_nosql
219
- builder = @sampler.tl_builder
220
- @sampler.expects(:notice_extra_data).with(builder, 'a key', 1.0, :key)
221
- @sampler.notice_nosql('a key', 1.0)
222
- end
223
-
224
- def test_notice_nosql_statement
225
- builder = @sampler.tl_builder
226
- @sampler.expects(:notice_extra_data).with(builder, 'query data', 1.0, :statement)
227
- @sampler.notice_nosql_statement('query data', 1.0)
228
- end
229
-
230
- def test_harvest_when_disabled
231
- with_config(:'transaction_tracer.enabled' => false,
232
- :developer_mode => false) do
233
- assert_equal([], @sampler.harvest!)
234
- end
235
- end
236
-
237
- def test_harvest_defaults
238
- # making sure the sampler clears out the old samples
239
- @sampler.instance_eval do
240
- @last_sample = 'a sample'
241
- end
242
-
243
- assert_equal([], @sampler.harvest!)
244
-
245
- # make sure the samples have been cleared
246
- assert_equal(nil, @sampler.instance_variable_get('@last_sample'))
247
- end
248
-
249
- def test_harvest_no_data
250
- assert_equal([], @sampler.harvest!)
251
- end
252
-
253
- def test_add_samples_holds_onto_previous_result
254
- sample = sample_with(:duration => 1)
255
- @sampler.merge!([sample])
256
- assert_equal([sample], @sampler.harvest!)
257
- end
258
-
259
- def test_merge_avoids_dups
260
- sample = sample_with(:duration => 1)
261
- @sampler.merge!([sample, sample])
262
- assert_equal([sample], @sampler.harvest!)
263
- end
264
-
265
- def test_harvest_avoids_dups_from_harvested_samples
266
- sample = sample_with(:duration => 2.5)
267
- @sampler.store_sample(sample)
268
- @sampler.store_sample(sample)
269
-
270
- assert_equal([sample], @sampler.harvest!)
271
- end
272
-
273
- def test_harvest_adding_slowest
274
- sample = sample_with(:duration => 2.5)
275
- @sampler.store_sample(sample)
276
-
277
- assert_equal([sample], @sampler.harvest!)
278
- end
279
-
280
- def test_harvest_new_slower_sample_replaces_older
281
- faster_sample = sample_with(:duration => 5.0)
282
- slower_sample = sample_with(:duration => 10.0)
283
-
284
- @sampler.store_sample(slower_sample)
285
- @sampler.merge!([faster_sample])
286
-
287
- assert_equal([slower_sample], @sampler.harvest!)
288
- end
289
-
290
- def test_harvest_keep_older_slower_sample
291
- faster_sample = sample_with(:duration => 5.0)
292
- slower_sample = sample_with(:duration => 10.0)
293
-
294
- @sampler.store_sample(faster_sample)
295
- @sampler.merge!([slower_sample])
296
-
297
- assert_equal([slower_sample], @sampler.harvest!)
298
- end
299
-
300
- SLOWEST_SAMPLE_MAX = NewRelic::Agent::Transaction::SlowestSampleBuffer::CAPACITY
301
- XRAY_SAMPLE_MAX = NewRelic::Agent.config[:'xray_session.max_samples']
302
-
303
- def test_harvest_respects_limits_from_previous
304
- slowest = sample_with(:duration => 10.0)
305
- previous = [slowest]
306
-
307
- xray_samples = generate_samples(100, :transaction_name => "Active/xray")
308
- previous.concat(xray_samples)
309
-
310
- result = nil
311
- with_active_xray_session("Active/xray") do
312
- @sampler.merge!(previous)
313
- result = @sampler.harvest!
314
- end
315
-
316
- expected = [slowest]
317
- expected = expected.concat(xray_samples.first(XRAY_SAMPLE_MAX))
318
-
319
- assert_equal_unordered(expected, result)
320
- end
321
-
322
- def test_harvest_respects_limits_from_current_traces
323
- slowest = sample_with(:duration => 10.0)
324
- @sampler.store_sample(slowest)
325
-
326
- xray_samples = generate_samples(100, :transaction_name => "Active/xray")
327
- with_active_xray_session("Active/xray") do
328
- xray_samples.each do |xrayed|
329
- @sampler.store_sample(xrayed)
330
- end
331
- end
332
-
333
- result = @sampler.harvest!
334
-
335
- expected = [slowest]
336
- expected = expected.concat(xray_samples.first(XRAY_SAMPLE_MAX))
337
- assert_equal_unordered(expected, result)
338
- end
339
-
340
- class BoundlessBuffer < NewRelic::Agent::Transaction::TransactionSampleBuffer
341
- def capacity
342
- 1.0 / 0 # Can't use Float::INFINITY on older Rubies :(
343
- end
344
- end
345
-
346
- def test_harvest_has_hard_maximum
347
- boundless_buffer = BoundlessBuffer.new
348
-
349
- buffers = @sampler.instance_variable_get(:@sample_buffers)
350
- buffers << boundless_buffer
351
-
352
- samples = generate_samples(100)
353
- samples.each do |sample|
354
- @sampler.store_sample(sample)
355
- end
356
-
357
- result = @sampler.harvest!
358
- assert_equal NewRelic::Agent::Transaction::TransactionSampleBuffer::SINGLE_BUFFER_MAX, result.length
359
- end
360
-
361
- def test_start_builder_default
362
- @state.expects(:is_execution_traced?).returns(true)
363
- @sampler.send(:start_builder, @state)
364
- assert(@state.transaction_sample_builder.is_a?(NewRelic::Agent::TransactionSampleBuilder),
365
- "should set up a new builder by default")
366
- end
367
-
368
- def test_start_builder_disabled
369
- @state.transaction_sample_builder = 'not nil.'
370
- with_config(:'transaction_tracer.enabled' => false,
371
- :developer_mode => false) do
372
- @sampler.send(:start_builder, @state)
373
- assert_equal(nil, @state.transaction_sample_builder,
374
- "should clear the transaction builder when disabled")
375
- end
376
- end
377
-
378
- def test_start_builder_dont_replace_existing_builder
379
- fake_builder = mock('transaction sample builder')
380
- @state.transaction_sample_builder = fake_builder
381
- @sampler.send(:start_builder, @state)
382
- assert_equal(fake_builder, @state.transaction_sample_builder,
383
- "should not overwrite an existing transaction sample builder")
384
- @state.transaction_sample_builder = nil
385
- end
386
-
387
- def test_builder
388
- @state.transaction_sample_builder = 'shamalamadingdong, brother.'
389
- assert_equal('shamalamadingdong, brother.', @sampler.send(:tl_builder),
390
- 'should return the value from the thread local variable')
391
- @state.transaction_sample_builder = nil
392
- end
393
-
394
- # Tests below this line are functional tests for the sampler, not
395
- # unit tests per se - some overlap with the tests above, but
396
- # generally usefully so
397
-
398
-
399
- def test_sample_tree
400
- with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
401
- @sampler.on_start_transaction(@state, Time.now)
402
- @sampler.notice_push_frame(@state)
403
-
404
- @sampler.notice_push_frame(@state)
405
- @sampler.notice_pop_frame(@state, "b")
406
-
407
- @sampler.notice_push_frame(@state)
408
- @sampler.notice_push_frame(@state)
409
- @sampler.notice_pop_frame(@state, "d")
410
- @sampler.notice_pop_frame(@state, "c")
411
-
412
- @sampler.notice_pop_frame(@state, "a")
413
- @sampler.on_finishing_transaction(@state, @txn)
414
- sample = @sampler.harvest!.first
415
- assert_equal "ROOT{a{b,c{d}}}", sample.to_s_compact
416
- end
417
- end
418
-
419
- def test_sample__gc_stats
420
- GC.extend MockGCStats
421
- # These are effectively Garbage Collects, detected each time GC.time is
422
- # called by the transaction sampler. One time value in seconds for each call.
423
- MockGCStats.mock_values = [0,0,0,1,0,0,1,0,0,0,0,0,0,0,0]
424
-
425
- with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
426
- @sampler.on_start_transaction(@state, Time.now)
427
- @sampler.notice_push_frame(@state)
428
-
429
- @sampler.notice_push_frame(@state)
430
- @sampler.notice_pop_frame(@state, "b")
431
-
432
- @sampler.notice_push_frame(@state)
433
- @sampler.notice_push_frame(@state)
434
- @sampler.notice_pop_frame(@state, "d")
435
- @sampler.notice_pop_frame(@state, "c")
436
-
437
- @sampler.notice_pop_frame(@state, "a")
438
- @sampler.on_finishing_transaction(@state, @txn)
439
-
440
- sample = @sampler.harvest!.first
441
- assert_equal "ROOT{a{b,c{d}}}", sample.to_s_compact
442
- end
443
- ensure
444
- MockGCStats.mock_values = []
445
- end
446
-
447
- # NB this test occasionally fails due to a GC during one of the
448
- # sample traces, for example. It's unfortunate, but we can't
449
- # reliably turn off GC on all versions of ruby under test
450
- def test_harvest_slowest
451
- with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
452
- run_sample_trace(0,0.1)
453
- run_sample_trace(0,0.1)
454
- # two second duration
455
- run_sample_trace(0,2)
456
- run_sample_trace(0,0.1)
457
- run_sample_trace(0,0.1)
458
-
459
- slowest = @sampler.harvest![0]
460
- first_duration = slowest.duration
461
- assert((first_duration.round >= 2),
462
- "expected sample duration = 2, but was: #{slowest.duration.inspect}")
463
-
464
- # 1 second duration
465
- run_sample_trace(0,1)
466
- @sampler.merge!([slowest])
467
- not_as_slow = @sampler.harvest![0]
468
- assert((not_as_slow == slowest), "Should re-harvest the same transaction since it should be slower than the new transaction - expected #{slowest.inspect} but got #{not_as_slow.inspect}")
469
-
470
- run_sample_trace(0,10)
471
-
472
- @sampler.merge!([slowest])
473
- new_slowest = @sampler.harvest![0]
474
- assert((new_slowest != slowest), "Should not harvest the same trace since the new one should be slower")
475
- assert_equal(new_slowest.duration.round, 10, "Slowest duration must be = 10, but was: #{new_slowest.duration.inspect}")
476
- end
477
- end
478
-
479
- def test_prepare_to_send
480
- t0 = freeze_time
481
- sample = with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
482
- run_sample_trace { advance_time(2.0) }
483
- @sampler.harvest![0]
484
- end
485
-
486
- ready_to_send = sample.prepare_to_send!
487
- assert_equal 2.0, ready_to_send.duration
488
- assert_equal t0.to_f, ready_to_send.start_time
489
- end
490
-
491
- def test_multithread
492
- threads = []
493
-
494
- 5.times do
495
- threads << Thread.new do
496
- 10.times do
497
- # Important that this uses the actual thread-local, not the shared
498
- # @state variable used in other non-threaded tests
499
- run_sample_trace(Time.now.to_f, nil, NewRelic::Agent::TransactionState.tl_get) do
500
- sleep 0.0001
501
- end
502
- end
503
- end
504
- end
505
- threads.each {|t| t.join }
506
- end
507
-
508
- def test_sample_with_parallel_paths
509
- with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
510
- @sampler.on_start_transaction(@state, Time.now)
511
- @sampler.notice_push_frame(@state)
512
-
513
- assert_equal 1, @sampler.tl_builder.scope_depth
514
-
515
- @sampler.notice_pop_frame(@state, "a")
516
- @sampler.on_finishing_transaction(@state, @txn)
517
-
518
- assert_nil @sampler.tl_builder
519
-
520
- @sampler.on_start_transaction(@state, Time.now)
521
- @sampler.notice_push_frame(@state)
522
- @sampler.notice_pop_frame(@state, "a")
523
- @sampler.on_finishing_transaction(@state, @txn)
524
-
525
- assert_nil @sampler.tl_builder
526
-
527
- assert_equal "ROOT{a}", @sampler.last_sample.to_s_compact
528
- end
529
- end
530
-
531
- def test_double_traced_method_stack_empty
532
- with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
533
- @sampler.on_start_transaction(@state, Time.now)
534
- @sampler.notice_push_frame(@state)
535
- @sampler.notice_pop_frame(@state, "a")
536
- @sampler.on_finishing_transaction(@state, @txn)
537
- @sampler.on_finishing_transaction(@state, @txn)
538
- @sampler.on_finishing_transaction(@state, @txn)
539
- @sampler.on_finishing_transaction(@state, @txn)
540
-
541
- refute_nil @sampler.harvest![0]
542
- end
543
- end
544
-
545
-
546
- def test_record_sql_off
547
- @sampler.on_start_transaction(@state, Time.now.to_f)
548
-
549
- @state.record_sql = false
550
-
551
- @sampler.notice_sql("test", {}, 0, @state)
552
-
553
- node = @sampler.send(:tl_builder).current_node
554
-
555
- assert_nil node[:sql]
556
- end
557
-
558
- def test_stack_trace_sql
559
- with_config(:'transaction_tracer.stack_trace_threshold' => 0) do
560
- @sampler.on_start_transaction(@state, Time.now.to_f)
561
- @sampler.notice_sql("test", {}, 1, @state)
562
- node = @sampler.send(:tl_builder).current_node
563
-
564
- assert node[:sql]
565
- assert node[:backtrace]
566
- end
567
- end
568
-
569
- def test_nil_stacktrace
570
- with_config(:'transaction_tracer.stack_trace_threshold' => 2) do
571
- @sampler.on_start_transaction(@state, Time.now.to_f)
572
- @sampler.notice_sql("test", {}, 1, @state)
573
- node = @sampler.send(:tl_builder).current_node
574
-
575
- assert node[:sql]
576
- assert_nil node[:backtrace]
577
- end
578
- end
579
-
580
- def test_big_sql
581
- @sampler.on_start_transaction(@state, Time.now.to_f)
582
-
583
- sql = "SADJKHASDHASD KAJSDH ASKDH ASKDHASDK JASHD KASJDH ASKDJHSAKDJHAS DKJHSADKJSAH DKJASHD SAKJDH SAKDJHS"
584
-
585
- len = 0
586
- while len <= 16384
587
- @sampler.notice_sql(sql, {}, 0, @state)
588
- len += sql.length
589
- end
590
-
591
- node = @sampler.send(:tl_builder).current_node
592
-
593
- sql = node[:sql]
594
-
595
- assert sql.sql.length <= 16384
596
- end
597
-
598
- def test_node_obfuscated
599
- @sampler.on_start_transaction(@state, Time.now.to_f)
600
- @sampler.notice_push_frame(@state)
601
-
602
- orig_sql = "SELECT * from Jim where id=66"
603
-
604
- @sampler.notice_sql(orig_sql, {}, 0, @state)
605
-
606
- node = @sampler.send(:tl_builder).current_node
607
-
608
- assert_equal orig_sql, node[:sql].sql
609
- assert_equal "SELECT * from Jim where id=?", node.obfuscated_sql
610
- @sampler.notice_pop_frame(@state, "foo")
611
- end
612
-
613
- def test_should_not_collect_nodes_beyond_limit
614
- with_config(:'transaction_tracer.limit_segments' => 3) do
615
- run_sample_trace do
616
- @sampler.notice_push_frame(@state)
617
- @sampler.notice_sql("SELECT * FROM sandwiches WHERE bread = 'challah'", {}, 0, @state)
618
- @sampler.notice_push_frame(@state)
619
- @sampler.notice_sql("SELECT * FROM sandwiches WHERE bread = 'semolina'", {}, 0, @state)
620
- @sampler.notice_pop_frame(@state, "a11")
621
- @sampler.notice_pop_frame(@state, "a1")
622
- end
623
- assert_equal 3, @sampler.last_sample.count_nodes
624
-
625
- expected_sql = "SELECT * FROM sandwiches WHERE bread = 'challah'"
626
- deepest_node = find_last_transaction_node(@sampler.last_sample)
627
- assert_equal([], deepest_node.called_nodes)
628
- assert_equal(expected_sql, deepest_node[:sql].sql)
629
- end
630
- end
631
-
632
- def test_renaming_current_node_midflight
633
- @sampler.start_builder(@state)
634
- node = @sampler.notice_push_frame(@state)
635
- node.metric_name = 'External/www.google.com/Net::HTTP/GET'
636
- @sampler.notice_pop_frame(@state, 'External/www.google.com/Net::HTTP/GET')
637
- end
638
-
639
- def test_adding_node_parameters
640
- @sampler.start_builder(@state)
641
- @sampler.notice_push_frame(@state)
642
- @sampler.add_node_parameters(:transaction_guid => '97612F92E6194080')
643
- assert_equal '97612F92E6194080', @sampler.tl_builder.current_node[:transaction_guid]
644
- end
645
-
646
- def test_large_transaction_trace_harvest
647
- config = {
648
- :'transaction_tracer.enabled' => true,
649
- :'transaction_tracer.transaction_threshold' => 0,
650
- :'transaction_tracer.limit_segments' => 100
651
- }
652
- with_config(config) do
653
- run_long_sample_trace(110)
654
-
655
- samples = @sampler.harvest!
656
- assert_equal(1, samples.size)
657
-
658
- # Verify that the TT stopped recording after 100 nodes
659
- assert_equal(100, samples.first.count_nodes)
660
- end
661
- end
662
-
663
- def test_harvest_prepare_samples
664
- samples = [mock('TT0'), mock('TT1')]
665
- samples[0].expects(:prepare_to_send!)
666
- samples[1].expects(:prepare_to_send!)
667
- @sampler.stubs(:harvest_from_sample_buffers).returns(samples)
668
- prepared = @sampler.harvest!
669
- assert_equal(samples, prepared)
670
- end
671
-
672
- def test_harvest_prepare_samples_with_error
673
- samples = [mock('TT0'), mock('TT1')]
674
- samples[0].expects(:prepare_to_send!).raises('an error')
675
- samples[1].expects(:prepare_to_send!)
676
- @sampler.stubs(:harvest_from_sample_buffers).returns(samples)
677
- prepared = @sampler.harvest!
678
- assert_equal([samples[1]], prepared)
679
- end
680
-
681
- def test_custom_params_include_gc_time
682
- with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
683
- in_transaction do
684
- NewRelic::Agent::StatsEngine::GCProfiler.stubs(:record_delta).returns(10.0)
685
- end
686
- end
687
-
688
- assert_equal 10.0, intrinsic_attributes_from_last_sample[:gc_time]
689
- end
690
-
691
- def test_custom_params_include_tripid
692
- guid = nil
693
-
694
- NewRelic::Agent.instance.cross_app_monitor.stubs(:client_referring_transaction_trip_id).returns('PDX-NRT')
695
-
696
- with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
697
- in_transaction do |transaction|
698
- NewRelic::Agent::TransactionState.tl_get.is_cross_app_caller = true
699
- guid = transaction.guid
700
- end
701
- end
702
-
703
- assert_equal 'PDX-NRT', intrinsic_attributes_from_last_sample[:trip_id]
704
- end
705
-
706
- def test_custom_params_dont_include_tripid_if_not_cross_app_transaction
707
- NewRelic::Agent.instance.cross_app_monitor.stubs(:client_referring_transaction_trip_id).returns('PDX-NRT')
708
-
709
- with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
710
- in_transaction do |transaction|
711
- NewRelic::Agent::TransactionState.tl_get.is_cross_app_caller = false
712
- end
713
- end
714
-
715
- assert_nil intrinsic_attributes_from_last_sample[:trip_id]
716
- end
717
-
718
- def test_custom_params_include_path_hash
719
- path_hash = nil
720
-
721
- with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
722
- in_transaction do |transaction|
723
- state = NewRelic::Agent::TransactionState.tl_get
724
- state.is_cross_app_caller = true
725
- path_hash = transaction.cat_path_hash(state)
726
- end
727
- end
728
-
729
- assert_equal path_hash, intrinsic_attributes_from_last_sample[:path_hash]
730
- end
731
-
732
- def test_synthetics_parameters_not_included_if_not_valid_synthetics_request
733
- with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
734
- in_transaction do |txn|
735
- txn.raw_synthetics_header = nil
736
- txn.synthetics_payload = nil
737
- end
738
- end
739
-
740
- sample = NewRelic::Agent.agent.transaction_sampler.harvest!.first
741
-
742
- intrinsic_attributes = attributes_for(sample, :intrinsic)
743
- assert_nil sample.synthetics_resource_id
744
- assert_nil intrinsic_attributes[:synthetics_resource_id]
745
- assert_nil intrinsic_attributes[:synthetics_job_id]
746
- assert_nil intrinsic_attributes[:synthetics_monitor_id]
747
- end
748
-
749
- def test_synthetics_parameters_included
750
- in_transaction do |txn|
751
- txn.raw_synthetics_header = ""
752
- txn.synthetics_payload = [1, 1, 100, 200, 300]
753
- end
754
-
755
- sample = NewRelic::Agent.agent.transaction_sampler.harvest!.first
756
-
757
- intrinsic_attributes = attributes_for(sample, :intrinsic)
758
- assert_equal 100, sample.synthetics_resource_id
759
- assert_equal 100, intrinsic_attributes[:synthetics_resource_id]
760
- assert_equal 200, intrinsic_attributes[:synthetics_job_id]
761
- assert_equal 300, intrinsic_attributes[:synthetics_monitor_id]
762
- end
763
-
764
- class Dummy
765
- include ::NewRelic::Agent::Instrumentation::ControllerInstrumentation
766
- def run(n)
767
- n.times do
768
- perform_action_with_newrelic_trace(:name => 'smile') do
769
- end
770
- end
771
- end
772
- end
773
-
774
- # TODO: this test seems to be destabilizing CI in a way that I don't grok.
775
- #def sadly_do_not_test_harvest_during_transaction_safety
776
- # n = 3000
777
- # harvester = Thread.new do
778
- # n.times { @sampler.harvest! }
779
- # end
780
-
781
- # Dummy.new.run(n)
782
-
783
- # harvester.join
784
- #end
785
-
786
- private
787
-
788
- SAMPLE_DEFAULTS = {
789
- :threshold => 1.0,
790
- :transaction_name => nil
791
- }
792
-
793
- def sample_with(incoming_opts = {})
794
- opts = SAMPLE_DEFAULTS.dup
795
- opts.merge!(incoming_opts)
796
-
797
- attributes = NewRelic::Agent::Transaction::Attributes.new(NewRelic::Agent.instance.attribute_filter)
798
- attributes.add_intrinsic_attribute(:synthetics_resource_id, opts[:synthetics_resource_id])
799
-
800
- sample = NewRelic::Agent::Transaction::Trace.new(Time.now)
801
- sample.attributes = attributes
802
- sample.threshold = opts[:threshold]
803
- sample.transaction_name = opts[:transaction_name]
804
- sample.stubs(:duration).returns(opts[:duration])
805
- sample
806
- end
807
-
808
- def generate_samples(count, opts = {})
809
- (1..count).map do |millis|
810
- sample_with(opts.merge(:duration => (millis / 1000.0)))
811
- end
812
- end
813
-
814
- def with_active_xray_session(name)
815
- xray_session_id = 1234
816
- xray_session = NewRelic::Agent::Commands::XraySession.new({
817
- "x_ray_id" => xray_session_id,
818
- "key_transaction_name" => name,
819
- "run_profiler" => false
820
- })
821
-
822
- xray_session_collection = NewRelic::Agent.instance.agent_command_router.xray_session_collection
823
- xray_session_collection.send(:add_session, xray_session)
824
- @sampler.xray_sample_buffer.xray_session_collection = xray_session_collection
825
-
826
- yield
827
- ensure
828
- xray_session_collection.send(:remove_session_by_id, xray_session_id)
829
- end
830
-
831
- def run_long_sample_trace(n)
832
- @sampler.on_start_transaction(@state, Time.now)
833
- n.times do |i|
834
- @sampler.notice_push_frame(@state)
835
- yield if block_given?
836
- @sampler.notice_pop_frame(@state, "node#{i}")
837
- end
838
- @sampler.on_finishing_transaction(@state, @txn, Time.now.to_f)
839
- end
840
-
841
- def run_sample_trace(start = Time.now.to_f, stop = nil, state = @state)
842
- @sampler.on_start_transaction(state, start)
843
- @sampler.notice_push_frame(state)
844
- @sampler.notice_sql("SELECT * FROM sandwiches WHERE bread = 'wheat'", {}, 0, state)
845
- @sampler.notice_push_frame(state)
846
- @sampler.notice_sql("SELECT * FROM sandwiches WHERE bread = 'white'", {}, 0, state)
847
- yield if block_given?
848
- @sampler.notice_pop_frame(state, "ab")
849
- @sampler.notice_push_frame(state)
850
- @sampler.notice_sql("SELECT * FROM sandwiches WHERE bread = 'french'", {}, 0, state)
851
- @sampler.notice_pop_frame(state, "ac")
852
- @sampler.notice_pop_frame(state, "a")
853
- @sampler.on_finishing_transaction(state, @txn, (stop || Time.now.to_f))
854
- end
855
-
856
- def intrinsic_attributes_from_last_sample
857
- sample = NewRelic::Agent.agent.transaction_sampler.harvest!.first
858
- attributes_for(sample, :intrinsic)
859
- end
860
- end