newrelic_rpm 4.0.0.332 → 4.8.0.341

Sign up to get free protection for your applications and to get access to all the features.
Files changed (969) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +50 -26
  3. data/.yardopts +3 -1
  4. data/CHANGELOG.md +265 -0
  5. data/LICENSE +1 -27
  6. data/README.md +4 -57
  7. data/lib/new_relic/agent/agent.rb +33 -17
  8. data/lib/new_relic/agent/attribute_filter.rb +0 -3
  9. data/lib/new_relic/agent/configuration/default_source.rb +64 -32
  10. data/lib/new_relic/agent/configuration/yaml_source.rb +8 -10
  11. data/lib/new_relic/agent/cross_app_monitor.rb +5 -44
  12. data/lib/new_relic/agent/cross_app_tracing.rb +43 -6
  13. data/lib/new_relic/agent/database.rb +11 -4
  14. data/lib/new_relic/agent/datastores.rb +27 -11
  15. data/lib/new_relic/agent/distributed_trace_monitor.rb +29 -0
  16. data/lib/new_relic/agent/distributed_trace_payload.rb +223 -0
  17. data/lib/new_relic/agent/distributed_trace_priority_sampled_buffer.rb +72 -0
  18. data/lib/new_relic/agent/error_collector.rb +4 -4
  19. data/lib/new_relic/agent/external.rb +141 -0
  20. data/lib/new_relic/agent/http_clients/abstract_request.rb +31 -0
  21. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +4 -2
  22. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +6 -2
  23. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +3 -1
  24. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +3 -1
  25. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +7 -3
  26. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +4 -2
  27. data/lib/new_relic/agent/http_clients/uri_util.rb +12 -7
  28. data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +1 -1
  29. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +3 -4
  30. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +1 -1
  31. data/lib/new_relic/agent/instrumentation/active_job.rb +4 -0
  32. data/lib/new_relic/agent/instrumentation/active_record.rb +18 -4
  33. data/lib/new_relic/agent/instrumentation/active_record_4.rb +11 -1
  34. data/lib/new_relic/agent/instrumentation/active_record_5.rb +5 -58
  35. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +5 -1
  36. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +61 -0
  37. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +27 -5
  38. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +4 -2
  39. data/lib/new_relic/agent/instrumentation/bunny.rb +148 -0
  40. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +10 -5
  41. data/lib/new_relic/agent/instrumentation/curb.rb +5 -2
  42. data/lib/new_relic/agent/instrumentation/data_mapper.rb +11 -4
  43. data/lib/new_relic/agent/instrumentation/excon/connection.rb +5 -2
  44. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +5 -2
  45. data/lib/new_relic/agent/instrumentation/http.rb +4 -1
  46. data/lib/new_relic/agent/instrumentation/httpclient.rb +5 -2
  47. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +7 -4
  48. data/lib/new_relic/agent/instrumentation/memcache.rb +5 -2
  49. data/lib/new_relic/agent/instrumentation/mongo.rb +11 -6
  50. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +7 -2
  51. data/lib/new_relic/agent/instrumentation/net.rb +4 -1
  52. data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +1 -1
  53. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +5 -3
  54. data/lib/new_relic/agent/instrumentation/rails4/action_controller.rb +4 -1
  55. data/lib/new_relic/agent/instrumentation/rails4/action_view.rb +3 -1
  56. data/lib/new_relic/agent/instrumentation/rails5/action_cable.rb +4 -1
  57. data/lib/new_relic/agent/instrumentation/rails5/action_controller.rb +6 -3
  58. data/lib/new_relic/agent/instrumentation/rails5/action_view.rb +4 -2
  59. data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
  60. data/lib/new_relic/agent/instrumentation/rake.rb +3 -1
  61. data/lib/new_relic/agent/instrumentation/redis.rb +24 -9
  62. data/lib/new_relic/agent/instrumentation/typhoeus.rb +48 -24
  63. data/lib/new_relic/agent/messaging.rb +416 -0
  64. data/lib/new_relic/agent/method_tracer.rb +4 -0
  65. data/lib/new_relic/agent/method_tracer_helpers.rb +6 -59
  66. data/lib/new_relic/agent/prepend_supportability.rb +16 -0
  67. data/lib/new_relic/agent/range_extensions.rb +47 -0
  68. data/lib/new_relic/agent/samplers/cpu_sampler.rb +3 -2
  69. data/lib/new_relic/agent/sql_sampler.rb +2 -2
  70. data/lib/new_relic/agent/stats.rb +0 -14
  71. data/lib/new_relic/agent/stats_engine.rb +171 -3
  72. data/lib/new_relic/agent/supported_versions.rb +14 -13
  73. data/lib/new_relic/agent/synthetics_monitor.rb +21 -12
  74. data/lib/new_relic/agent/system_info.rb +34 -0
  75. data/lib/new_relic/agent/throughput_monitor.rb +59 -0
  76. data/lib/new_relic/agent/transaction/abstract_segment.rb +168 -17
  77. data/lib/new_relic/agent/transaction/attributes.rb +0 -2
  78. data/lib/new_relic/agent/transaction/datastore_segment.rb +27 -23
  79. data/lib/new_relic/agent/transaction/distributed_tracing.rb +121 -0
  80. data/lib/new_relic/agent/transaction/external_request_segment.rb +198 -27
  81. data/lib/new_relic/agent/transaction/message_broker_segment.rb +104 -0
  82. data/lib/new_relic/agent/transaction/request_attributes.rb +5 -13
  83. data/lib/new_relic/agent/transaction/segment.rb +25 -3
  84. data/lib/new_relic/agent/transaction/trace.rb +33 -16
  85. data/lib/new_relic/agent/transaction/trace_builder.rb +57 -0
  86. data/lib/new_relic/agent/transaction/trace_node.rb +34 -42
  87. data/lib/new_relic/agent/transaction/tracing.rb +116 -21
  88. data/lib/new_relic/agent/transaction.rb +144 -82
  89. data/lib/new_relic/agent/transaction_error_primitive.rb +20 -0
  90. data/lib/new_relic/agent/transaction_event_aggregator.rb +14 -0
  91. data/lib/new_relic/agent/transaction_event_primitive.rb +14 -0
  92. data/lib/new_relic/agent/transaction_event_recorder.rb +9 -1
  93. data/lib/new_relic/agent/transaction_sampler.rb +14 -183
  94. data/lib/new_relic/agent/transaction_state.rb +2 -12
  95. data/lib/new_relic/agent/utilization/aws.rb +18 -0
  96. data/lib/new_relic/agent/utilization/azure.rb +17 -0
  97. data/lib/new_relic/agent/utilization/gcp.rb +35 -0
  98. data/lib/new_relic/agent/utilization/pcf.rb +32 -0
  99. data/lib/new_relic/agent/utilization/vendor.rb +144 -0
  100. data/lib/new_relic/agent/utilization_data.rb +29 -10
  101. data/lib/new_relic/agent.rb +51 -11
  102. data/lib/new_relic/build.rb +2 -2
  103. data/lib/new_relic/collection_helper.rb +0 -18
  104. data/lib/new_relic/control/frameworks/rails.rb +1 -21
  105. data/lib/new_relic/control/frameworks/rails3.rb +1 -1
  106. data/lib/new_relic/control/frameworks/ruby.rb +2 -2
  107. data/lib/new_relic/latest_changes.rb +1 -1
  108. data/lib/new_relic/noticed_error.rb +25 -13
  109. data/lib/new_relic/supportability_helper.rb +68 -0
  110. data/lib/new_relic/version.rb +1 -1
  111. data/lib/newrelic_rpm.rb +1 -1
  112. data/lib/sequel/extensions/newrelic_instrumentation.rb +26 -11
  113. data/lib/sequel/plugins/newrelic_instrumentation.rb +6 -2
  114. data/newrelic.yml +1 -5
  115. data/newrelic_rpm.gemspec +3 -3
  116. data/test/agent_helper.rb +39 -6
  117. metadata +24 -859
  118. data/lib/conditional_vendored_metric_parser.rb +0 -9
  119. data/lib/new_relic/agent/aws_info.rb +0 -90
  120. data/lib/new_relic/agent/instrumentation/rubyprof.rb +0 -26
  121. data/lib/new_relic/agent/stats_engine/metric_stats.rb +0 -188
  122. data/lib/new_relic/agent/traced_method_stack.rb +0 -109
  123. data/lib/new_relic/agent/transaction/developer_mode_sample_buffer.rb +0 -62
  124. data/lib/new_relic/agent/transaction_sample_builder.rb +0 -141
  125. data/lib/new_relic/merbtasks.rb +0 -10
  126. data/lib/new_relic/rack/developer_mode/segment_summary.rb +0 -56
  127. data/lib/new_relic/rack/developer_mode.rb +0 -321
  128. data/test/config/newrelic.yml +0 -46
  129. data/test/config/test.cert.crt +0 -18
  130. data/test/config/test.cert.key +0 -15
  131. data/test/config/test_control.rb +0 -54
  132. data/test/environments/.gitignore +0 -16
  133. data/test/environments/lib/environments/runner.rb +0 -111
  134. data/test/environments/norails/Gemfile +0 -19
  135. data/test/environments/norails/Rakefile +0 -9
  136. data/test/environments/rails21/Gemfile +0 -23
  137. data/test/environments/rails21/Rakefile +0 -16
  138. data/test/environments/rails21/app/controllers/application.rb +0 -20
  139. data/test/environments/rails21/config/boot.rb +0 -113
  140. data/test/environments/rails21/config/database.yml +0 -26
  141. data/test/environments/rails21/config/environment.rb +0 -26
  142. data/test/environments/rails21/config/environments/development.rb +0 -10
  143. data/test/environments/rails21/config/environments/production.rb +0 -8
  144. data/test/environments/rails21/config/environments/test.rb +0 -10
  145. data/test/environments/rails21/config/routes.rb +0 -5
  146. data/test/environments/rails21/db/schema.rb +0 -5
  147. data/test/environments/rails22/Gemfile +0 -24
  148. data/test/environments/rails22/Rakefile +0 -16
  149. data/test/environments/rails22/app/controllers/application.rb +0 -20
  150. data/test/environments/rails22/config/boot.rb +0 -113
  151. data/test/environments/rails22/config/database.yml +0 -26
  152. data/test/environments/rails22/config/environment.rb +0 -25
  153. data/test/environments/rails22/config/environments/development.rb +0 -10
  154. data/test/environments/rails22/config/environments/production.rb +0 -8
  155. data/test/environments/rails22/config/environments/test.rb +0 -10
  156. data/test/environments/rails22/config/routes.rb +0 -5
  157. data/test/environments/rails22/db/schema.rb +0 -5
  158. data/test/environments/rails23/Gemfile +0 -24
  159. data/test/environments/rails23/Rakefile +0 -16
  160. data/test/environments/rails23/app/controllers/application.rb +0 -20
  161. data/test/environments/rails23/config/boot.rb +0 -127
  162. data/test/environments/rails23/config/database.yml +0 -26
  163. data/test/environments/rails23/config/environment.rb +0 -16
  164. data/test/environments/rails23/config/environments/production.rb +0 -8
  165. data/test/environments/rails23/config/environments/test.rb +0 -10
  166. data/test/environments/rails23/config/preinitializer.rb +0 -25
  167. data/test/environments/rails23/config/routes.rb +0 -5
  168. data/test/environments/rails23/db/schema.rb +0 -5
  169. data/test/environments/rails30/Gemfile +0 -23
  170. data/test/environments/rails30/Rakefile +0 -11
  171. data/test/environments/rails30/config/application.rb +0 -17
  172. data/test/environments/rails30/config/boot.rb +0 -10
  173. data/test/environments/rails30/config/database.yml +0 -26
  174. data/test/environments/rails30/config/environment.rb +0 -6
  175. data/test/environments/rails30/config/initializers/new_rails_defaults.rb +0 -11
  176. data/test/environments/rails30/db/schema.rb +0 -5
  177. data/test/environments/rails31/Gemfile +0 -24
  178. data/test/environments/rails31/Rakefile +0 -11
  179. data/test/environments/rails31/config/application.rb +0 -18
  180. data/test/environments/rails31/config/boot.rb +0 -10
  181. data/test/environments/rails31/config/database.yml +0 -26
  182. data/test/environments/rails31/config/environment.rb +0 -6
  183. data/test/environments/rails31/config/initializers/new_rails_defaults.rb +0 -21
  184. data/test/environments/rails31/db/schema.rb +0 -5
  185. data/test/environments/rails32/Gemfile +0 -26
  186. data/test/environments/rails32/Rakefile +0 -12
  187. data/test/environments/rails32/config/application.rb +0 -19
  188. data/test/environments/rails32/config/boot.rb +0 -10
  189. data/test/environments/rails32/config/database.yml +0 -26
  190. data/test/environments/rails32/config/environment.rb +0 -6
  191. data/test/environments/rails32/db/schema.rb +0 -5
  192. data/test/environments/rails40/Gemfile +0 -26
  193. data/test/environments/rails40/Rakefile +0 -11
  194. data/test/environments/rails40/config/application.rb +0 -18
  195. data/test/environments/rails40/config/boot.rb +0 -10
  196. data/test/environments/rails40/config/database.yml +0 -26
  197. data/test/environments/rails40/config/environment.rb +0 -6
  198. data/test/environments/rails40/db/schema.rb +0 -5
  199. data/test/environments/rails41/Gemfile +0 -26
  200. data/test/environments/rails41/Rakefile +0 -11
  201. data/test/environments/rails41/config/application.rb +0 -18
  202. data/test/environments/rails41/config/boot.rb +0 -10
  203. data/test/environments/rails41/config/database.yml +0 -26
  204. data/test/environments/rails41/config/environment.rb +0 -6
  205. data/test/environments/rails41/db/schema.rb +0 -5
  206. data/test/environments/rails42/Gemfile +0 -27
  207. data/test/environments/rails42/Rakefile +0 -11
  208. data/test/environments/rails42/config/application.rb +0 -18
  209. data/test/environments/rails42/config/boot.rb +0 -10
  210. data/test/environments/rails42/config/database.yml +0 -26
  211. data/test/environments/rails42/config/environment.rb +0 -6
  212. data/test/environments/rails42/db/schema.rb +0 -5
  213. data/test/environments/rails50/Gemfile +0 -23
  214. data/test/environments/rails50/Rakefile +0 -11
  215. data/test/environments/rails50/config/application.rb +0 -18
  216. data/test/environments/rails50/config/boot.rb +0 -10
  217. data/test/environments/rails50/config/database.yml +0 -26
  218. data/test/environments/rails50/config/environment.rb +0 -6
  219. data/test/environments/rails50/db/schema.rb +0 -5
  220. data/test/fixtures/cross_agent_tests/README.md +0 -34
  221. data/test/fixtures/cross_agent_tests/attribute_configuration.json +0 -384
  222. data/test/fixtures/cross_agent_tests/aws.json +0 -312
  223. data/test/fixtures/cross_agent_tests/cat/README.md +0 -28
  224. data/test/fixtures/cross_agent_tests/cat/cat_map.json +0 -595
  225. data/test/fixtures/cross_agent_tests/cat/path_hashing.json +0 -51
  226. data/test/fixtures/cross_agent_tests/cat_map.json +0 -597
  227. data/test/fixtures/cross_agent_tests/data_transport/data_transport.json +0 -1441
  228. data/test/fixtures/cross_agent_tests/data_transport/data_transport.md +0 -35
  229. data/test/fixtures/cross_agent_tests/datastores/README.md +0 -16
  230. data/test/fixtures/cross_agent_tests/datastores/datastore_api.json +0 -443
  231. data/test/fixtures/cross_agent_tests/datastores/datastore_instances.json +0 -73
  232. data/test/fixtures/cross_agent_tests/docker_container_id/README.md +0 -6
  233. data/test/fixtures/cross_agent_tests/docker_container_id/cases.json +0 -75
  234. data/test/fixtures/cross_agent_tests/docker_container_id/docker-0.9.1.txt +0 -10
  235. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.0.0.txt +0 -10
  236. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-lxc-driver.txt +0 -10
  237. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-native-driver-fs.txt +0 -10
  238. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-native-driver-systemd.txt +0 -10
  239. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.3.txt +0 -9
  240. data/test/fixtures/cross_agent_tests/docker_container_id/empty.txt +0 -0
  241. data/test/fixtures/cross_agent_tests/docker_container_id/heroku.txt +0 -1
  242. data/test/fixtures/cross_agent_tests/docker_container_id/invalid-characters.txt +0 -9
  243. data/test/fixtures/cross_agent_tests/docker_container_id/invalid-length.txt +0 -9
  244. data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.04-lxc-container.txt +0 -10
  245. data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.04-no-container.txt +0 -10
  246. data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.10-no-container.txt +0 -10
  247. data/test/fixtures/cross_agent_tests/labels.json +0 -195
  248. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/README.md +0 -16
  249. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.colon_obfuscated.txt +0 -3
  250. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.explain.txt +0 -3
  251. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.obfuscated.txt +0 -3
  252. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.query.txt +0 -1
  253. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.colon_obfuscated.txt +0 -2
  254. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.explain.txt +0 -2
  255. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.obfuscated.txt +0 -2
  256. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.query.txt +0 -1
  257. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.colon_obfuscated.txt +0 -2
  258. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.explain.txt +0 -2
  259. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.obfuscated.txt +0 -2
  260. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.query.txt +0 -1
  261. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.colon_obfuscated.txt +0 -2
  262. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.explain.txt +0 -3
  263. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.obfuscated.txt +0 -2
  264. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.query.txt +0 -1
  265. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.colon_obfuscated.txt +0 -2
  266. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.explain.txt +0 -2
  267. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.obfuscated.txt +0 -2
  268. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.query.txt +0 -1
  269. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.colon_obfuscated.txt +0 -2
  270. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.explain.txt +0 -2
  271. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.obfuscated.txt +0 -2
  272. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.query.txt +0 -1
  273. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.colon_obfuscated.txt +0 -5
  274. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.explain.txt +0 -5
  275. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.obfuscated.txt +0 -5
  276. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.query.txt +0 -1
  277. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.colon_obfuscated.txt +0 -2
  278. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.explain.txt +0 -2
  279. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.obfuscated.txt +0 -2
  280. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.query.txt +0 -1
  281. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.colon_obfuscated.txt +0 -5
  282. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.explain.txt +0 -5
  283. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.obfuscated.txt +0 -5
  284. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.query.txt +0 -1
  285. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.colon_obfuscated.txt +0 -2
  286. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.explain.txt +0 -2
  287. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.obfuscated.txt +0 -2
  288. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.query.txt +0 -1
  289. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.colon_obfuscated.txt +0 -2
  290. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.explain.txt +0 -2
  291. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.obfuscated.txt +0 -2
  292. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.query.txt +0 -1
  293. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.colon_obfuscated.txt +0 -3
  294. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.explain.txt +0 -3
  295. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.obfuscated.txt +0 -3
  296. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.query.txt +0 -1
  297. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.colon_obfuscated.txt +0 -2
  298. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.explain.txt +0 -2
  299. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.obfuscated.txt +0 -2
  300. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.query.txt +0 -1
  301. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.colon_obfuscated.txt +0 -2
  302. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.explain.txt +0 -3
  303. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.obfuscated.txt +0 -2
  304. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.query.txt +0 -1
  305. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.colon_obfuscated.txt +0 -2
  306. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.explain.txt +0 -2
  307. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.obfuscated.txt +0 -2
  308. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.query.txt +0 -1
  309. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.colon_obfuscated.txt +0 -2
  310. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.explain.txt +0 -2
  311. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.obfuscated.txt +0 -2
  312. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.query.txt +0 -1
  313. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.colon_obfuscated.txt +0 -2
  314. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.explain.txt +0 -2
  315. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.obfuscated.txt +0 -2
  316. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.query.txt +0 -1
  317. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.colon_obfuscated.txt +0 -2
  318. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.explain.txt +0 -2
  319. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.obfuscated.txt +0 -2
  320. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.query.txt +0 -1
  321. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.colon_obfuscated.txt +0 -2
  322. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.explain.txt +0 -2
  323. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.obfuscated.txt +0 -2
  324. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.query.txt +0 -1
  325. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.colon_obfuscated.txt +0 -2
  326. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.explain.txt +0 -2
  327. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.obfuscated.txt +0 -2
  328. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.query.txt +0 -1
  329. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.colon_obfuscated.txt +0 -2
  330. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.explain.txt +0 -2
  331. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.obfuscated.txt +0 -2
  332. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.query.txt +0 -1
  333. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_1logical.txt +0 -3
  334. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_2logical.txt +0 -14
  335. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_2core_2logical.txt +0 -14
  336. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_4core_4logical.txt +0 -28
  337. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_12core_24logical.txt +0 -575
  338. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_20core_40logical.txt +0 -999
  339. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_2logical.txt +0 -51
  340. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_4logical.txt +0 -28
  341. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_4core_4logical.txt +0 -28
  342. data/test/fixtures/cross_agent_tests/proc_cpuinfo/4pack_4core_4logical.txt +0 -103
  343. data/test/fixtures/cross_agent_tests/proc_cpuinfo/8pack_8core_8logical.txt +0 -199
  344. data/test/fixtures/cross_agent_tests/proc_cpuinfo/README.md +0 -28
  345. data/test/fixtures/cross_agent_tests/proc_cpuinfo/Xpack_Xcore_2logical.txt +0 -43
  346. data/test/fixtures/cross_agent_tests/proc_cpuinfo/malformed_file.txt +0 -3
  347. data/test/fixtures/cross_agent_tests/proc_meminfo/README.md +0 -7
  348. data/test/fixtures/cross_agent_tests/proc_meminfo/meminfo_4096MB.txt +0 -47
  349. data/test/fixtures/cross_agent_tests/rules.json +0 -165
  350. data/test/fixtures/cross_agent_tests/rum_client_config.json +0 -91
  351. data/test/fixtures/cross_agent_tests/rum_footer_insertion_location/close-body-in-comment.html +0 -10
  352. data/test/fixtures/cross_agent_tests/rum_footer_insertion_location/dynamic-iframe.html +0 -19
  353. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/basic.html +0 -10
  354. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/body_with_attributes.html +0 -3
  355. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag.html +0 -11
  356. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_after_x_ua_tag.html +0 -11
  357. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_before_x_ua_tag.html +0 -11
  358. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_with_spaces.html +0 -11
  359. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments1.html +0 -24
  360. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments2.html +0 -24
  361. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag.html +0 -11
  362. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_after_x_ua_tag.html +0 -11
  363. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_before_x_ua_tag.html +0 -11
  364. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/empty_head +0 -4
  365. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes1.html +0 -27
  366. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes2.html +0 -24
  367. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes_mismatch.html +0 -24
  368. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes1.html +0 -25
  369. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes_mismatch.html +0 -25
  370. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/head_with_attributes.html +0 -10
  371. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/incomplete_non_meta_tags.html +0 -10
  372. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_end_header.html +0 -6
  373. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_header.html +0 -7
  374. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_html_and_no_header.html +0 -3
  375. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_start_header.html +0 -9
  376. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/script1.html +0 -19
  377. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/script2.html +0 -17
  378. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag.html +0 -10
  379. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiline.html +0 -11
  380. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiple_tags.html +0 -12
  381. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_spaces_around_equals.html +0 -10
  382. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_others.html +0 -11
  383. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_spaces.html +0 -10
  384. data/test/fixtures/cross_agent_tests/sql_obfuscation/README.md +0 -36
  385. data/test/fixtures/cross_agent_tests/sql_obfuscation/sql_obfuscation.json +0 -619
  386. data/test/fixtures/cross_agent_tests/sql_parsing.json +0 -55
  387. data/test/fixtures/cross_agent_tests/synthetics/README.md +0 -65
  388. data/test/fixtures/cross_agent_tests/synthetics/synthetics.json +0 -317
  389. data/test/fixtures/cross_agent_tests/transaction_segment_terms.json +0 -389
  390. data/test/fixtures/cross_agent_tests/url_clean.json +0 -15
  391. data/test/fixtures/cross_agent_tests/url_domain_extraction.json +0 -35
  392. data/test/fixtures/cross_agent_tests/utilization/README.md +0 -13
  393. data/test/fixtures/cross_agent_tests/utilization/utilization_json.json +0 -132
  394. data/test/helpers/exceptions.rb +0 -16
  395. data/test/helpers/file_searching.rb +0 -28
  396. data/test/helpers/logging.rb +0 -37
  397. data/test/helpers/minitest.rb +0 -50
  398. data/test/helpers/misc.rb +0 -87
  399. data/test/helpers/mongo_metric_builder.rb +0 -34
  400. data/test/helpers/transaction_sample.rb +0 -44
  401. data/test/intentional_fail.rb +0 -13
  402. data/test/multiverse/.gitignore +0 -13
  403. data/test/multiverse/README.md +0 -85
  404. data/test/multiverse/lib/multiverse/color.rb +0 -23
  405. data/test/multiverse/lib/multiverse/envfile.rb +0 -66
  406. data/test/multiverse/lib/multiverse/output_collector.rb +0 -82
  407. data/test/multiverse/lib/multiverse/runner.rb +0 -118
  408. data/test/multiverse/lib/multiverse/shell_utils.rb +0 -27
  409. data/test/multiverse/lib/multiverse/suite.rb +0 -536
  410. data/test/multiverse/lib/multiverse.rb +0 -32
  411. data/test/multiverse/script/runner +0 -5
  412. data/test/multiverse/suites/active_record/.gitignore +0 -1
  413. data/test/multiverse/suites/active_record/Envfile +0 -60
  414. data/test/multiverse/suites/active_record/Rakefile +0 -9
  415. data/test/multiverse/suites/active_record/active_record_test.rb +0 -618
  416. data/test/multiverse/suites/active_record/app/models/models.rb +0 -34
  417. data/test/multiverse/suites/active_record/ar_method_aliasing.rb +0 -43
  418. data/test/multiverse/suites/active_record/before_suite.rb +0 -23
  419. data/test/multiverse/suites/active_record/config/database.rb +0 -79
  420. data/test/multiverse/suites/active_record/config/database.yml +0 -20
  421. data/test/multiverse/suites/active_record/config/newrelic.yml +0 -18
  422. data/test/multiverse/suites/active_record/db/migrate/20141105131800_create_users_and_aliases.rb +0 -21
  423. data/test/multiverse/suites/active_record/db/migrate/20141106082200_create_orders_and_shipments.rb +0 -25
  424. data/test/multiverse/suites/active_record/db/migrate/20150413011200_add_timestamps_to_orders.rb +0 -16
  425. data/test/multiverse/suites/active_record/db/migrate/20150414084400_create_groups.rb +0 -21
  426. data/test/multiverse/suites/activemerchant/Envfile +0 -26
  427. data/test/multiverse/suites/activemerchant/activemerchant_test.rb +0 -62
  428. data/test/multiverse/suites/agent_only/Envfile +0 -5
  429. data/test/multiverse/suites/agent_only/agent_attributes_test.rb +0 -351
  430. data/test/multiverse/suites/agent_only/agent_run_id_handling_test.rb +0 -39
  431. data/test/multiverse/suites/agent_only/audit_log_test.rb +0 -57
  432. data/test/multiverse/suites/agent_only/collector_exception_handling_test.rb +0 -87
  433. data/test/multiverse/suites/agent_only/config/newrelic.yml +0 -27
  434. data/test/multiverse/suites/agent_only/cross_application_tracing_test.rb +0 -94
  435. data/test/multiverse/suites/agent_only/custom_analytics_events_test.rb +0 -82
  436. data/test/multiverse/suites/agent_only/custom_queue_time_test.rb +0 -60
  437. data/test/multiverse/suites/agent_only/encoding_handling_test.rb +0 -122
  438. data/test/multiverse/suites/agent_only/error_events_test.rb +0 -98
  439. data/test/multiverse/suites/agent_only/exclusive_time_test.rb +0 -176
  440. data/test/multiverse/suites/agent_only/harvest_timestamps_test.rb +0 -61
  441. data/test/multiverse/suites/agent_only/http_response_code_test.rb +0 -38
  442. data/test/multiverse/suites/agent_only/keepalive_test.rb +0 -24
  443. data/test/multiverse/suites/agent_only/key_transactions_test.rb +0 -118
  444. data/test/multiverse/suites/agent_only/labels_test.rb +0 -83
  445. data/test/multiverse/suites/agent_only/logging_test.rb +0 -162
  446. data/test/multiverse/suites/agent_only/marshaling_test.rb +0 -89
  447. data/test/multiverse/suites/agent_only/pipe_manager_test.rb +0 -41
  448. data/test/multiverse/suites/agent_only/rename_rule_test.rb +0 -91
  449. data/test/multiverse/suites/agent_only/rum_instrumentation_test.rb +0 -97
  450. data/test/multiverse/suites/agent_only/script/env_change.rb +0 -10
  451. data/test/multiverse/suites/agent_only/script/loading.rb +0 -20
  452. data/test/multiverse/suites/agent_only/script/public_api_when_disabled.rb +0 -57
  453. data/test/multiverse/suites/agent_only/script/symbol_env.rb +0 -10
  454. data/test/multiverse/suites/agent_only/script/warnings.rb +0 -15
  455. data/test/multiverse/suites/agent_only/service_timeout_test.rb +0 -39
  456. data/test/multiverse/suites/agent_only/set_transaction_name_test.rb +0 -118
  457. data/test/multiverse/suites/agent_only/ssl_test.rb +0 -21
  458. data/test/multiverse/suites/agent_only/start_up_test.rb +0 -107
  459. data/test/multiverse/suites/agent_only/synthetics_test.rb +0 -131
  460. data/test/multiverse/suites/agent_only/testing_app.rb +0 -58
  461. data/test/multiverse/suites/agent_only/thread_profiling_test.rb +0 -137
  462. data/test/multiverse/suites/agent_only/transaction_events_test.rb +0 -31
  463. data/test/multiverse/suites/agent_only/transaction_ignoring_test.rb +0 -42
  464. data/test/multiverse/suites/agent_only/utilization_data_collection_test.rb +0 -105
  465. data/test/multiverse/suites/agent_only/xray_sessions_test.rb +0 -196
  466. data/test/multiverse/suites/bare/Envfile +0 -3
  467. data/test/multiverse/suites/bare/standalone_instrumentation_test.rb +0 -43
  468. data/test/multiverse/suites/capistrano/Capfile +0 -26
  469. data/test/multiverse/suites/capistrano/Envfile +0 -23
  470. data/test/multiverse/suites/capistrano/config/deploy/production.rb +0 -9
  471. data/test/multiverse/suites/capistrano/config/deploy.rb +0 -14
  472. data/test/multiverse/suites/capistrano/config/newrelic.yml +0 -21
  473. data/test/multiverse/suites/capistrano/deployment_test.rb +0 -51
  474. data/test/multiverse/suites/capistrano2/Capfile +0 -4
  475. data/test/multiverse/suites/capistrano2/Envfile +0 -8
  476. data/test/multiverse/suites/capistrano2/config/deploy.rb +0 -19
  477. data/test/multiverse/suites/capistrano2/config/newrelic.yml +0 -21
  478. data/test/multiverse/suites/capistrano2/deployment_test.rb +0 -37
  479. data/test/multiverse/suites/config_file_loading/Envfile +0 -13
  480. data/test/multiverse/suites/config_file_loading/config_file_loading_test.rb +0 -213
  481. data/test/multiverse/suites/curb/Envfile +0 -27
  482. data/test/multiverse/suites/curb/config/newrelic.yml +0 -18
  483. data/test/multiverse/suites/curb/curb_test.rb +0 -212
  484. data/test/multiverse/suites/datamapper/Envfile +0 -36
  485. data/test/multiverse/suites/datamapper/config/newrelic.yml +0 -20
  486. data/test/multiverse/suites/datamapper/datamapper_test.rb +0 -429
  487. data/test/multiverse/suites/deferred_instrumentation/Envfile +0 -15
  488. data/test/multiverse/suites/deferred_instrumentation/config/newrelic.yml +0 -20
  489. data/test/multiverse/suites/deferred_instrumentation/sinatra_test.rb +0 -110
  490. data/test/multiverse/suites/delayed_job/Envfile +0 -101
  491. data/test/multiverse/suites/delayed_job/before_suite.rb +0 -43
  492. data/test/multiverse/suites/delayed_job/config/newrelic.yml +0 -18
  493. data/test/multiverse/suites/delayed_job/delayed_job_instrumentation_test.rb +0 -106
  494. data/test/multiverse/suites/delayed_job/delayed_job_sampler_test.rb +0 -128
  495. data/test/multiverse/suites/delayed_job/unsupported_backend_test.rb +0 -21
  496. data/test/multiverse/suites/excon/Envfile +0 -18
  497. data/test/multiverse/suites/excon/config/newrelic.yml +0 -18
  498. data/test/multiverse/suites/excon/excon_test.rb +0 -81
  499. data/test/multiverse/suites/grape/Envfile +0 -9
  500. data/test/multiverse/suites/grape/config/newrelic.yml +0 -19
  501. data/test/multiverse/suites/grape/grape_test.rb +0 -219
  502. data/test/multiverse/suites/grape/grape_test_api.rb +0 -64
  503. data/test/multiverse/suites/grape/grape_versioning_test.rb +0 -118
  504. data/test/multiverse/suites/grape/grape_versioning_test_api.rb +0 -130
  505. data/test/multiverse/suites/grape/unsupported_version_test.rb +0 -28
  506. data/test/multiverse/suites/high_security/Envfile +0 -3
  507. data/test/multiverse/suites/high_security/config/newrelic.yml +0 -70
  508. data/test/multiverse/suites/high_security/high_security_test.rb +0 -214
  509. data/test/multiverse/suites/httpclient/Envfile +0 -15
  510. data/test/multiverse/suites/httpclient/config/newrelic.yml +0 -18
  511. data/test/multiverse/suites/httpclient/httpclient_test.rb +0 -75
  512. data/test/multiverse/suites/httprb/Envfile +0 -21
  513. data/test/multiverse/suites/httprb/config/newrelic.yml +0 -18
  514. data/test/multiverse/suites/httprb/httprb_test.rb +0 -78
  515. data/test/multiverse/suites/json/Envfile +0 -22
  516. data/test/multiverse/suites/json/config/newrelic.yml +0 -22
  517. data/test/multiverse/suites/json/json_test.rb +0 -16
  518. data/test/multiverse/suites/marshalling/Envfile +0 -3
  519. data/test/multiverse/suites/marshalling/config/newrelic.yml +0 -20
  520. data/test/multiverse/suites/marshalling/marshalling_test.rb +0 -16
  521. data/test/multiverse/suites/memcached/Envfile +0 -36
  522. data/test/multiverse/suites/memcached/dalli_test.rb +0 -163
  523. data/test/multiverse/suites/memcached/memcache_client_test.rb +0 -25
  524. data/test/multiverse/suites/memcached/memcache_test_cases.rb +0 -315
  525. data/test/multiverse/suites/memcached/memcached_test.rb +0 -179
  526. data/test/multiverse/suites/mongo/Envfile +0 -74
  527. data/test/multiverse/suites/mongo/config/newrelic.yml +0 -18
  528. data/test/multiverse/suites/mongo/helpers/mongo_operation_tests.rb +0 -551
  529. data/test/multiverse/suites/mongo/helpers/mongo_replica_set.rb +0 -97
  530. data/test/multiverse/suites/mongo/helpers/mongo_replica_set_test.rb +0 -82
  531. data/test/multiverse/suites/mongo/helpers/mongo_server.rb +0 -241
  532. data/test/multiverse/suites/mongo/helpers/mongo_server_test.rb +0 -176
  533. data/test/multiverse/suites/mongo/mongo2_instrumentation_test.rb +0 -493
  534. data/test/multiverse/suites/mongo/mongo_connection_test.rb +0 -40
  535. data/test/multiverse/suites/mongo/mongo_instrumentation_test.rb +0 -58
  536. data/test/multiverse/suites/mongo/mongo_unsupported_version_test.rb +0 -72
  537. data/test/multiverse/suites/net_http/Envfile +0 -6
  538. data/test/multiverse/suites/net_http/config/newrelic.yml +0 -18
  539. data/test/multiverse/suites/net_http/net_http_test.rb +0 -115
  540. data/test/multiverse/suites/padrino/Envfile +0 -19
  541. data/test/multiverse/suites/padrino/config/newrelic.yml +0 -22
  542. data/test/multiverse/suites/padrino/padrino_test.rb +0 -52
  543. data/test/multiverse/suites/rack/Envfile +0 -64
  544. data/test/multiverse/suites/rack/before_suite.rb +0 -12
  545. data/test/multiverse/suites/rack/builder_map_test.rb +0 -128
  546. data/test/multiverse/suites/rack/config/newrelic.yml +0 -18
  547. data/test/multiverse/suites/rack/example_app.rb +0 -119
  548. data/test/multiverse/suites/rack/http_response_code_test.rb +0 -49
  549. data/test/multiverse/suites/rack/nested_non_rack_app_test.rb +0 -66
  550. data/test/multiverse/suites/rack/puma_rack_builder_test.rb +0 -84
  551. data/test/multiverse/suites/rack/rack_auto_instrumentation_test.rb +0 -151
  552. data/test/multiverse/suites/rack/rack_cascade_test.rb +0 -44
  553. data/test/multiverse/suites/rack/rack_env_mutation_test.rb +0 -52
  554. data/test/multiverse/suites/rack/rack_parameter_filtering_test.rb +0 -49
  555. data/test/multiverse/suites/rack/rack_unsupported_version_test.rb +0 -43
  556. data/test/multiverse/suites/rack/response_content_type_test.rb +0 -49
  557. data/test/multiverse/suites/rack/url_map_test.rb +0 -155
  558. data/test/multiverse/suites/rails/Envfile +0 -61
  559. data/test/multiverse/suites/rails/action_cable_test.rb +0 -81
  560. data/test/multiverse/suites/rails/action_controller_live_rum_test.rb +0 -39
  561. data/test/multiverse/suites/rails/activejob_test.rb +0 -151
  562. data/test/multiverse/suites/rails/app/views/foos/_foo.html.haml +0 -1
  563. data/test/multiverse/suites/rails/app/views/views/_a_partial.html.erb +0 -2
  564. data/test/multiverse/suites/rails/app/views/views/_mid_partial.html.erb +0 -1
  565. data/test/multiverse/suites/rails/app/views/views/_top_partial.html.erb +0 -3
  566. data/test/multiverse/suites/rails/app/views/views/deep_partial.html.erb +0 -3
  567. data/test/multiverse/suites/rails/app/views/views/haml_view.html.haml +0 -6
  568. data/test/multiverse/suites/rails/app/views/views/index.html.erb +0 -4
  569. data/test/multiverse/suites/rails/app.rb +0 -44
  570. data/test/multiverse/suites/rails/bad_instrumentation_test.rb +0 -29
  571. data/test/multiverse/suites/rails/config/newrelic.yml +0 -30
  572. data/test/multiverse/suites/rails/dummy.txt +0 -1
  573. data/test/multiverse/suites/rails/error_tracing_test.rb +0 -346
  574. data/test/multiverse/suites/rails/gc_instrumentation_test.rb +0 -73
  575. data/test/multiverse/suites/rails/ignore_test.rb +0 -79
  576. data/test/multiverse/suites/rails/middleware_instrumentation_test.rb +0 -41
  577. data/test/multiverse/suites/rails/middlewares.rb +0 -19
  578. data/test/multiverse/suites/rails/parameter_capture_test.rb +0 -328
  579. data/test/multiverse/suites/rails/queue_time_test.rb +0 -89
  580. data/test/multiverse/suites/rails/rails2_app/app/controllers/application.rb +0 -7
  581. data/test/multiverse/suites/rails/rails2_app/config/boot.rb +0 -127
  582. data/test/multiverse/suites/rails/rails2_app/config/database.yml +0 -18
  583. data/test/multiverse/suites/rails/rails2_app/config/environment.rb +0 -16
  584. data/test/multiverse/suites/rails/rails2_app/config/environments/development.rb +0 -10
  585. data/test/multiverse/suites/rails/rails2_app/config/initializers/load_newrelic_rpm.rb +0 -9
  586. data/test/multiverse/suites/rails/rails2_app/config/preinitializer.rb +0 -25
  587. data/test/multiverse/suites/rails/rails2_app/config/routes.rb +0 -19
  588. data/test/multiverse/suites/rails/rails2_app/db/schema.rb +0 -5
  589. data/test/multiverse/suites/rails/rails3_app/app_rails3_plus.rb +0 -99
  590. data/test/multiverse/suites/rails/request_statistics_test.rb +0 -192
  591. data/test/multiverse/suites/rails/transaction_ignoring_test.rb +0 -41
  592. data/test/multiverse/suites/rails/view_instrumentation_test.rb +0 -254
  593. data/test/multiverse/suites/rake/Envfile +0 -43
  594. data/test/multiverse/suites/rake/Rakefile +0 -54
  595. data/test/multiverse/suites/rake/config/newrelic.yml +0 -18
  596. data/test/multiverse/suites/rake/multitask_test.rb +0 -40
  597. data/test/multiverse/suites/rake/rake_test.rb +0 -209
  598. data/test/multiverse/suites/rake/rake_test_helper.rb +0 -66
  599. data/test/multiverse/suites/rake/unsupported_rake_test.rb +0 -19
  600. data/test/multiverse/suites/redis/Envfile +0 -23
  601. data/test/multiverse/suites/redis/config/newrelic.yml +0 -19
  602. data/test/multiverse/suites/redis/redis_instrumentation_test.rb +0 -331
  603. data/test/multiverse/suites/redis/redis_unsupported_version_test.rb +0 -20
  604. data/test/multiverse/suites/resque/Envfile +0 -9
  605. data/test/multiverse/suites/resque/Rakefile +0 -3
  606. data/test/multiverse/suites/resque/config/newrelic.yml +0 -19
  607. data/test/multiverse/suites/resque/instrumentation_test.rb +0 -159
  608. data/test/multiverse/suites/resque/resque_marshalling_test.rb +0 -61
  609. data/test/multiverse/suites/sequel/Envfile +0 -41
  610. data/test/multiverse/suites/sequel/config/newrelic.yml +0 -18
  611. data/test/multiverse/suites/sequel/database.rb +0 -54
  612. data/test/multiverse/suites/sequel/sequel_extension_test.rb +0 -142
  613. data/test/multiverse/suites/sequel/sequel_helpers.rb +0 -62
  614. data/test/multiverse/suites/sequel/sequel_plugin_test.rb +0 -230
  615. data/test/multiverse/suites/sequel/sequel_safety_test.rb +0 -30
  616. data/test/multiverse/suites/sidekiq/Envfile +0 -43
  617. data/test/multiverse/suites/sidekiq/after_suite.rb +0 -16
  618. data/test/multiverse/suites/sidekiq/config/newrelic.yml +0 -20
  619. data/test/multiverse/suites/sidekiq/log/.gitkeep +0 -0
  620. data/test/multiverse/suites/sidekiq/sidekiq_instrumentation_test.rb +0 -220
  621. data/test/multiverse/suites/sidekiq/sidekiq_server.rb +0 -35
  622. data/test/multiverse/suites/sidekiq/test_model.rb +0 -12
  623. data/test/multiverse/suites/sidekiq/test_worker.rb +0 -71
  624. data/test/multiverse/suites/sinatra/Envfile +0 -27
  625. data/test/multiverse/suites/sinatra/config/newrelic.yml +0 -21
  626. data/test/multiverse/suites/sinatra/ignoring_test.rb +0 -226
  627. data/test/multiverse/suites/sinatra/nested_middleware_test.rb +0 -47
  628. data/test/multiverse/suites/sinatra/sinatra_classic_test.rb +0 -103
  629. data/test/multiverse/suites/sinatra/sinatra_error_tracing_test.rb +0 -48
  630. data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +0 -102
  631. data/test/multiverse/suites/sinatra/sinatra_modular_test.rb +0 -93
  632. data/test/multiverse/suites/sinatra/sinatra_parameter_capture_test.rb +0 -82
  633. data/test/multiverse/suites/sinatra/sinatra_routes_test.rb +0 -49
  634. data/test/multiverse/suites/sinatra/sinatra_test_cases.rb +0 -226
  635. data/test/multiverse/suites/typhoeus/Envfile +0 -68
  636. data/test/multiverse/suites/typhoeus/config/newrelic.yml +0 -18
  637. data/test/multiverse/suites/typhoeus/typhoeus_test.rb +0 -145
  638. data/test/multiverse/suites/yajl/Envfile +0 -20
  639. data/test/multiverse/suites/yajl/config/newrelic.yml +0 -21
  640. data/test/multiverse/suites/yajl/yajl_test.rb +0 -16
  641. data/test/multiverse/test/multiverse_test.rb +0 -59
  642. data/test/multiverse/test/suite_examples/one/a/Envfile +0 -3
  643. data/test/multiverse/test/suite_examples/one/a/a_test.rb +0 -14
  644. data/test/multiverse/test/suite_examples/one/a/config/newrelic.yml +0 -22
  645. data/test/multiverse/test/suite_examples/one/b/Envfile +0 -3
  646. data/test/multiverse/test/suite_examples/one/b/b_test.rb +0 -14
  647. data/test/multiverse/test/suite_examples/one/b/config/newrelic.yml +0 -22
  648. data/test/multiverse/test/suite_examples/three/a/Envfile +0 -2
  649. data/test/multiverse/test/suite_examples/three/a/fail_test.rb +0 -10
  650. data/test/multiverse/test/suite_examples/three/b/Envfile +0 -2
  651. data/test/multiverse/test/suite_examples/three/b/win_test.rb +0 -10
  652. data/test/multiverse/test/suite_examples/two/a/Envfile +0 -1
  653. data/test/multiverse/test/suite_examples/two/a/fail_test.rb +0 -10
  654. data/test/new_relic/FAKECHANGELOG +0 -21
  655. data/test/new_relic/agent/agent/connect_test.rb +0 -308
  656. data/test/new_relic/agent/agent/start_test.rb +0 -186
  657. data/test/new_relic/agent/agent/start_worker_thread_test.rb +0 -74
  658. data/test/new_relic/agent/agent_logger_test.rb +0 -389
  659. data/test/new_relic/agent/agent_test.rb +0 -710
  660. data/test/new_relic/agent/agent_test_controller.rb +0 -84
  661. data/test/new_relic/agent/apdex_from_server_test.rb +0 -13
  662. data/test/new_relic/agent/api_tests/datastore_api_test.rb +0 -64
  663. data/test/new_relic/agent/attribute_filter_test.rb +0 -218
  664. data/test/new_relic/agent/attribute_processing_test.rb +0 -164
  665. data/test/new_relic/agent/audit_logger_test.rb +0 -208
  666. data/test/new_relic/agent/autostart_test.rb +0 -79
  667. data/test/new_relic/agent/aws_info_test.rb +0 -76
  668. data/test/new_relic/agent/busy_calculator_test.rb +0 -96
  669. data/test/new_relic/agent/commands/agent_command_router_test.rb +0 -256
  670. data/test/new_relic/agent/commands/agent_command_test.rb +0 -37
  671. data/test/new_relic/agent/commands/thread_profiler_session_test.rb +0 -216
  672. data/test/new_relic/agent/commands/xray_session_collection_test.rb +0 -332
  673. data/test/new_relic/agent/commands/xray_session_test.rb +0 -42
  674. data/test/new_relic/agent/configuration/default_source_test.rb +0 -229
  675. data/test/new_relic/agent/configuration/dotted_hash_test.rb +0 -53
  676. data/test/new_relic/agent/configuration/environment_source_test.rb +0 -201
  677. data/test/new_relic/agent/configuration/high_security_source_test.rb +0 -92
  678. data/test/new_relic/agent/configuration/manager_test.rb +0 -455
  679. data/test/new_relic/agent/configuration/manual_source_test.rb +0 -18
  680. data/test/new_relic/agent/configuration/orphan_configuration_test.rb +0 -91
  681. data/test/new_relic/agent/configuration/server_source_test.rb +0 -202
  682. data/test/new_relic/agent/configuration/yaml_source_test.rb +0 -117
  683. data/test/new_relic/agent/cross_app_monitor_test.rb +0 -248
  684. data/test/new_relic/agent/custom_event_aggregator_test.rb +0 -127
  685. data/test/new_relic/agent/database/postgres_explain_obfuscator_test.rb +0 -34
  686. data/test/new_relic/agent/database/sql_obfuscation_test.rb +0 -52
  687. data/test/new_relic/agent/database_test.rb +0 -482
  688. data/test/new_relic/agent/datastores/metric_helper_test.rb +0 -203
  689. data/test/new_relic/agent/datastores/mongo/event_formatter_test.rb +0 -175
  690. data/test/new_relic/agent/datastores/mongo/metric_translator_test.rb +0 -270
  691. data/test/new_relic/agent/datastores/mongo/obfuscator_test.rb +0 -99
  692. data/test/new_relic/agent/datastores/mongo/statement_formatter_test.rb +0 -72
  693. data/test/new_relic/agent/datastores/redis_test.rb +0 -126
  694. data/test/new_relic/agent/datastores_test.rb +0 -202
  695. data/test/new_relic/agent/deprecator_test.rb +0 -52
  696. data/test/new_relic/agent/encoding_normalizer_test.rb +0 -69
  697. data/test/new_relic/agent/error_collector_test.rb +0 -407
  698. data/test/new_relic/agent/error_event_aggregator_test.rb +0 -237
  699. data/test/new_relic/agent/error_trace_aggregator_test.rb +0 -298
  700. data/test/new_relic/agent/event_aggregator_test.rb +0 -178
  701. data/test/new_relic/agent/event_buffer_test_cases.rb +0 -168
  702. data/test/new_relic/agent/event_listener_test.rb +0 -70
  703. data/test/new_relic/agent/event_loop_test.rb +0 -202
  704. data/test/new_relic/agent/harvester_test.rb +0 -79
  705. data/test/new_relic/agent/hostname_test.rb +0 -121
  706. data/test/new_relic/agent/http_clients/uri_util_test.rb +0 -64
  707. data/test/new_relic/agent/inbound_request_monitor_test.rb +0 -49
  708. data/test/new_relic/agent/instrumentation/action_cable_subscriber_test.rb +0 -124
  709. data/test/new_relic/agent/instrumentation/action_controller_subscriber_test.rb +0 -299
  710. data/test/new_relic/agent/instrumentation/action_view_subscriber_test.rb +0 -249
  711. data/test/new_relic/agent/instrumentation/active_job_test.rb +0 -20
  712. data/test/new_relic/agent/instrumentation/active_record_helper_test.rb +0 -66
  713. data/test/new_relic/agent/instrumentation/active_record_subscriber_test.rb +0 -210
  714. data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +0 -328
  715. data/test/new_relic/agent/instrumentation/delayed_job_instrumentation_test.rb +0 -23
  716. data/test/new_relic/agent/instrumentation/instance_identification_test.rb +0 -169
  717. data/test/new_relic/agent/instrumentation/instrumentation_test.rb +0 -14
  718. data/test/new_relic/agent/instrumentation/middleware_proxy_test.rb +0 -256
  719. data/test/new_relic/agent/instrumentation/middleware_tracing_test.rb +0 -49
  720. data/test/new_relic/agent/instrumentation/mongodb_command_subscriber_test.rb +0 -112
  721. data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +0 -41
  722. data/test/new_relic/agent/instrumentation/queue_time_test.rb +0 -103
  723. data/test/new_relic/agent/instrumentation/rack_test.rb +0 -44
  724. data/test/new_relic/agent/instrumentation/sequel_helper_test.rb +0 -36
  725. data/test/new_relic/agent/instrumentation/sinatra/transaction_namer_test.rb +0 -62
  726. data/test/new_relic/agent/instrumentation/sinatra_test.rb +0 -80
  727. data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +0 -186
  728. data/test/new_relic/agent/javascript_instrumentor_test.rb +0 -340
  729. data/test/new_relic/agent/memory_logger_test.rb +0 -85
  730. data/test/new_relic/agent/method_interrobang_test.rb +0 -31
  731. data/test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb +0 -112
  732. data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +0 -215
  733. data/test/new_relic/agent/method_tracer_test.rb +0 -480
  734. data/test/new_relic/agent/method_visibility_test.rb +0 -90
  735. data/test/new_relic/agent/mock_scope_listener.rb +0 -30
  736. data/test/new_relic/agent/new_relic_service/json_marshaller_test.rb +0 -27
  737. data/test/new_relic/agent/new_relic_service_test.rb +0 -972
  738. data/test/new_relic/agent/obfuscator_test.rb +0 -77
  739. data/test/new_relic/agent/parameter_filtering_test.rb +0 -39
  740. data/test/new_relic/agent/payload_metric_mapping_test.rb +0 -74
  741. data/test/new_relic/agent/pipe_channel_manager_test.rb +0 -316
  742. data/test/new_relic/agent/pipe_service_test.rb +0 -151
  743. data/test/new_relic/agent/rpm_agent_test.rb +0 -91
  744. data/test/new_relic/agent/rules_engine_test.rb +0 -136
  745. data/test/new_relic/agent/sampled_buffer_test.rb +0 -142
  746. data/test/new_relic/agent/sampler_collection_test.rb +0 -90
  747. data/test/new_relic/agent/sampler_test.rb +0 -66
  748. data/test/new_relic/agent/samplers/cpu_sampler_test.rb +0 -79
  749. data/test/new_relic/agent/samplers/memory_sampler_test.rb +0 -66
  750. data/test/new_relic/agent/samplers/vm_sampler_test.rb +0 -349
  751. data/test/new_relic/agent/sized_buffer_test.rb +0 -29
  752. data/test/new_relic/agent/sql_sampler_test.rb +0 -463
  753. data/test/new_relic/agent/stats_engine/gc_profiler_test.rb +0 -176
  754. data/test/new_relic/agent/stats_engine/metric_stats_test.rb +0 -328
  755. data/test/new_relic/agent/stats_engine/stats_hash_test.rb +0 -195
  756. data/test/new_relic/agent/stats_engine_test.rb +0 -32
  757. data/test/new_relic/agent/stats_test.rb +0 -187
  758. data/test/new_relic/agent/synthetics_event_aggregator_test.rb +0 -180
  759. data/test/new_relic/agent/synthetics_event_buffer_test.rb +0 -54
  760. data/test/new_relic/agent/synthetics_monitor_test.rb +0 -93
  761. data/test/new_relic/agent/system_info_test.rb +0 -133
  762. data/test/new_relic/agent/threading/agent_thread_test.rb +0 -149
  763. data/test/new_relic/agent/threading/backtrace_node_test.rb +0 -184
  764. data/test/new_relic/agent/threading/backtrace_service_test.rb +0 -603
  765. data/test/new_relic/agent/threading/fake_thread.rb +0 -43
  766. data/test/new_relic/agent/threading/thread_profile_test.rb +0 -271
  767. data/test/new_relic/agent/threading/threaded_test_case.rb +0 -18
  768. data/test/new_relic/agent/traced_method_stack_test.rb +0 -187
  769. data/test/new_relic/agent/transaction/abstract_segment_test.rb +0 -103
  770. data/test/new_relic/agent/transaction/attributes_test.rb +0 -268
  771. data/test/new_relic/agent/transaction/datastore_segment_test.rb +0 -336
  772. data/test/new_relic/agent/transaction/developer_mode_sample_buffer_test.rb +0 -75
  773. data/test/new_relic/agent/transaction/external_request_segment_test.rb +0 -330
  774. data/test/new_relic/agent/transaction/request_attributes_test.rb +0 -84
  775. data/test/new_relic/agent/transaction/segment_test.rb +0 -77
  776. data/test/new_relic/agent/transaction/slowest_sample_buffer_test.rb +0 -67
  777. data/test/new_relic/agent/transaction/synthetics_sample_buffer_test.rb +0 -38
  778. data/test/new_relic/agent/transaction/trace_node_test.rb +0 -361
  779. data/test/new_relic/agent/transaction/trace_test.rb +0 -394
  780. data/test/new_relic/agent/transaction/tracing_test.rb +0 -176
  781. data/test/new_relic/agent/transaction/xray_sample_buffer_test.rb +0 -71
  782. data/test/new_relic/agent/transaction_error_primitive_test.rb +0 -117
  783. data/test/new_relic/agent/transaction_event_aggregator_test.rb +0 -211
  784. data/test/new_relic/agent/transaction_event_primitive_test.rb +0 -195
  785. data/test/new_relic/agent/transaction_event_recorder_test.rb +0 -80
  786. data/test/new_relic/agent/transaction_interrobang_test.rb +0 -33
  787. data/test/new_relic/agent/transaction_metrics_test.rb +0 -113
  788. data/test/new_relic/agent/transaction_sample_builder_test.rb +0 -215
  789. data/test/new_relic/agent/transaction_sampler_test.rb +0 -860
  790. data/test/new_relic/agent/transaction_state_test.rb +0 -122
  791. data/test/new_relic/agent/transaction_test.rb +0 -1476
  792. data/test/new_relic/agent/transaction_timings_test.rb +0 -91
  793. data/test/new_relic/agent/utilization_data_test.rb +0 -258
  794. data/test/new_relic/agent/vm/monotonic_gc_profiler_test.rb +0 -42
  795. data/test/new_relic/agent/vm/mri_vm_test.rb +0 -40
  796. data/test/new_relic/agent/vm/snapshot_test.rb +0 -13
  797. data/test/new_relic/agent/vm_test.rb +0 -48
  798. data/test/new_relic/agent/worker_loop_test.rb +0 -98
  799. data/test/new_relic/agent_test.rb +0 -461
  800. data/test/new_relic/cli/commands/deployments_test.rb +0 -136
  801. data/test/new_relic/cli/commands/install_test.rb +0 -27
  802. data/test/new_relic/coerce_test.rb +0 -93
  803. data/test/new_relic/collection_helper_test.rb +0 -152
  804. data/test/new_relic/control/class_methods_test.rb +0 -52
  805. data/test/new_relic/control/frameworks/rails_test.rb +0 -29
  806. data/test/new_relic/control/instance_methods_test.rb +0 -50
  807. data/test/new_relic/control/instrumentation_test.rb +0 -41
  808. data/test/new_relic/control_test.rb +0 -169
  809. data/test/new_relic/data_container_tests.rb +0 -87
  810. data/test/new_relic/dependency_detection_test.rb +0 -155
  811. data/test/new_relic/dispatcher_test.rb +0 -60
  812. data/test/new_relic/environment_report_test.rb +0 -107
  813. data/test/new_relic/evil_server.rb +0 -55
  814. data/test/new_relic/fake_collector.rb +0 -390
  815. data/test/new_relic/fake_external_server.rb +0 -65
  816. data/test/new_relic/fake_instance_metadata_service.rb +0 -45
  817. data/test/new_relic/fake_rpm_site.rb +0 -35
  818. data/test/new_relic/fake_server.rb +0 -104
  819. data/test/new_relic/filtering_test_app.rb +0 -19
  820. data/test/new_relic/framework_test.rb +0 -58
  821. data/test/new_relic/http_client_test_cases.rb +0 -639
  822. data/test/new_relic/language_support_test.rb +0 -98
  823. data/test/new_relic/latest_changes_test.rb +0 -34
  824. data/test/new_relic/license_test.rb +0 -125
  825. data/test/new_relic/load_test.rb +0 -15
  826. data/test/new_relic/local_environment_test.rb +0 -103
  827. data/test/new_relic/marshalling_test_cases.rb +0 -183
  828. data/test/new_relic/metric_data_test.rb +0 -144
  829. data/test/new_relic/metric_parser/metric_parser_test.rb +0 -17
  830. data/test/new_relic/metric_spec_test.rb +0 -144
  831. data/test/new_relic/multiverse_helpers.rb +0 -289
  832. data/test/new_relic/noticed_error_test.rb +0 -267
  833. data/test/new_relic/rack/agent_hooks_test.rb +0 -44
  834. data/test/new_relic/rack/agent_middleware_test.rb +0 -32
  835. data/test/new_relic/rack/browser_monitoring_test.rb +0 -195
  836. data/test/new_relic/rack/developer_mode/segment_summary_test.rb +0 -96
  837. data/test/new_relic/rack/developer_mode_helper_test.rb +0 -136
  838. data/test/new_relic/rack/developer_mode_test.rb +0 -96
  839. data/test/new_relic/transaction_ignoring_test_cases.rb +0 -102
  840. data/test/nullverse/default_source_require_test.rb +0 -21
  841. data/test/nullverse/nullverse_helper.rb +0 -10
  842. data/test/performance/README.md +0 -175
  843. data/test/performance/lib/performance/baseline.rb +0 -36
  844. data/test/performance/lib/performance/baseline_compare_reporter.rb +0 -103
  845. data/test/performance/lib/performance/baseline_save_reporter.rb +0 -24
  846. data/test/performance/lib/performance/console_reporter.rb +0 -66
  847. data/test/performance/lib/performance/formatting_helpers.rb +0 -22
  848. data/test/performance/lib/performance/hako_client.rb +0 -31
  849. data/test/performance/lib/performance/hako_reporter.rb +0 -26
  850. data/test/performance/lib/performance/instrumentation/cpu_usage.rb +0 -26
  851. data/test/performance/lib/performance/instrumentation/gc_stats.rb +0 -56
  852. data/test/performance/lib/performance/instrumentation/perf_tools.rb +0 -30
  853. data/test/performance/lib/performance/instrumentation/stackprof.rb +0 -46
  854. data/test/performance/lib/performance/instrumentor.rb +0 -96
  855. data/test/performance/lib/performance/json_reporter.rb +0 -15
  856. data/test/performance/lib/performance/platform.rb +0 -31
  857. data/test/performance/lib/performance/reporting.rb +0 -36
  858. data/test/performance/lib/performance/result.rb +0 -104
  859. data/test/performance/lib/performance/runner.rb +0 -221
  860. data/test/performance/lib/performance/table.rb +0 -105
  861. data/test/performance/lib/performance/test_case.rb +0 -152
  862. data/test/performance/lib/performance/timer.rb +0 -40
  863. data/test/performance/lib/performance.rb +0 -38
  864. data/test/performance/script/baselines +0 -102
  865. data/test/performance/script/mega-runner +0 -37
  866. data/test/performance/script/runner +0 -131
  867. data/test/performance/suites/active_record.rb +0 -26
  868. data/test/performance/suites/active_record_subscriber.rb +0 -100
  869. data/test/performance/suites/agent_attributes.rb +0 -62
  870. data/test/performance/suites/config.rb +0 -35
  871. data/test/performance/suites/datastores.rb +0 -59
  872. data/test/performance/suites/error_collector.rb +0 -28
  873. data/test/performance/suites/external_segment.rb +0 -82
  874. data/test/performance/suites/marshalling.rb +0 -148
  875. data/test/performance/suites/queue_time.rb +0 -21
  876. data/test/performance/suites/rack_middleware.rb +0 -136
  877. data/test/performance/suites/redis.rb +0 -45
  878. data/test/performance/suites/rules_engine.rb +0 -35
  879. data/test/performance/suites/rum_autoinsertion.rb +0 -75
  880. data/test/performance/suites/segment_terms_rule.rb +0 -27
  881. data/test/performance/suites/sql_obfuscation.rb +0 -50
  882. data/test/performance/suites/startup.rb +0 -12
  883. data/test/performance/suites/stats_hash.rb +0 -31
  884. data/test/performance/suites/thread_profiling.rb +0 -116
  885. data/test/performance/suites/trace_execution_scoped.rb +0 -31
  886. data/test/performance/suites/transaction_tracing.rb +0 -106
  887. data/test/script/before_install/gemstash_mirror.sh +0 -10
  888. data/test/script/before_script/install_mongodb.sh +0 -12
  889. data/test/script/ci.sh +0 -15
  890. data/test/script/external_server.rb +0 -31
  891. data/test/script/path_hash.rb +0 -49
  892. data/test/test_helper.rb +0 -59
  893. data/ui/helpers/developer_mode_helper.rb +0 -325
  894. data/ui/helpers/google_pie_chart.rb +0 -54
  895. data/ui/views/layouts/newrelic_default.rhtml +0 -48
  896. data/ui/views/newrelic/_explain_plans.rhtml +0 -27
  897. data/ui/views/newrelic/_sample.rhtml +0 -20
  898. data/ui/views/newrelic/_segment.rhtml +0 -28
  899. data/ui/views/newrelic/_segment_limit_message.rhtml +0 -1
  900. data/ui/views/newrelic/_segment_row.rhtml +0 -12
  901. data/ui/views/newrelic/_show_sample_detail.rhtml +0 -24
  902. data/ui/views/newrelic/_show_sample_sql.rhtml +0 -24
  903. data/ui/views/newrelic/_show_sample_summary.rhtml +0 -3
  904. data/ui/views/newrelic/_sql_row.rhtml +0 -16
  905. data/ui/views/newrelic/_stack_trace.rhtml +0 -15
  906. data/ui/views/newrelic/_table.rhtml +0 -12
  907. data/ui/views/newrelic/explain_sql.rhtml +0 -43
  908. data/ui/views/newrelic/file/images/arrow-close.png +0 -0
  909. data/ui/views/newrelic/file/images/arrow-open.png +0 -0
  910. data/ui/views/newrelic/file/images/blue_bar.gif +0 -0
  911. data/ui/views/newrelic/file/images/file_icon.png +0 -0
  912. data/ui/views/newrelic/file/images/gray_bar.gif +0 -0
  913. data/ui/views/newrelic/file/images/new-relic-rpm-desktop.gif +0 -0
  914. data/ui/views/newrelic/file/images/new_relic_rpm_desktop.gif +0 -0
  915. data/ui/views/newrelic/file/images/textmate.png +0 -0
  916. data/ui/views/newrelic/file/javascript/jquery-1.4.2.js +0 -6243
  917. data/ui/views/newrelic/file/javascript/transaction_sample.js +0 -123
  918. data/ui/views/newrelic/file/stylesheets/style.css +0 -490
  919. data/ui/views/newrelic/index.rhtml +0 -70
  920. data/ui/views/newrelic/sample_not_found.rhtml +0 -2
  921. data/ui/views/newrelic/show_sample.rhtml +0 -81
  922. data/ui/views/newrelic/threads.rhtml +0 -45
  923. data/vendor/gems/metric_parser-0.1.0.pre1/.specification +0 -116
  924. data/vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb +0 -5
  925. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/action_mailer.rb +0 -18
  926. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_merchant.rb +0 -35
  927. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_record.rb +0 -37
  928. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/apdex.rb +0 -93
  929. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/background_transaction.rb +0 -11
  930. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/client.rb +0 -50
  931. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller.rb +0 -71
  932. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_cpu.rb +0 -47
  933. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_ext.rb +0 -21
  934. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database.rb +0 -52
  935. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database_pool.rb +0 -28
  936. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net.rb +0 -32
  937. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net_parser.rb +0 -21
  938. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/errors.rb +0 -15
  939. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/external.rb +0 -59
  940. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/frontend.rb +0 -44
  941. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/gc.rb +0 -24
  942. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/hibernate_session.rb +0 -11
  943. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java.rb +0 -35
  944. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java_parser.rb +0 -21
  945. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp.rb +0 -38
  946. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp_tag.rb +0 -11
  947. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/mem_cache.rb +0 -56
  948. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/metric_parser.rb +0 -138
  949. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/middleware.rb +0 -33
  950. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/nested.rb +0 -23
  951. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/orm.rb +0 -31
  952. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/other_transaction.rb +0 -44
  953. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet.rb +0 -11
  954. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_context_listener.rb +0 -11
  955. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_filter.rb +0 -11
  956. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_init.rb +0 -11
  957. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr.rb +0 -31
  958. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr_request_handler.rb +0 -19
  959. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring.rb +0 -58
  960. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_controller.rb +0 -10
  961. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_view.rb +0 -10
  962. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_action.rb +0 -24
  963. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_result.rb +0 -24
  964. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/version.rb +0 -9
  965. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/view.rb +0 -74
  966. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_frontend.rb +0 -22
  967. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_service.rb +0 -18
  968. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_transaction.rb +0 -137
  969. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser.rb +0 -70
@@ -1,9 +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
- unless defined?(NewRelic) && defined?(NewRelic::MetricParser)
6
- vendored_metric_parser = File.expand_path('../../vendor/gems/metric_parser-0.1.0.pre1/lib/', __FILE__)
7
- $:.unshift vendored_metric_parser unless $:.include?(vendored_metric_parser)
8
- require 'metric_parser'
9
- end
@@ -1,90 +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
- module NewRelic
6
- module Agent
7
- class AWSInfo
8
-
9
- class ResponseError < StandardError; end
10
-
11
- attr_reader :instance_type, :instance_id, :availability_zone
12
-
13
- def initialize
14
- handle_remote_calls do
15
- @instance_type = remote_fetch('instance-type')
16
- @instance_id = remote_fetch('instance-id')
17
- @availability_zone = remote_fetch('placement/availability-zone')
18
- end
19
- end
20
-
21
- def loaded?
22
- instance_type && instance_id && availability_zone
23
- end
24
-
25
- def to_collector_hash
26
- {
27
- :id => instance_id,
28
- :type => instance_type,
29
- :zone => availability_zone
30
- }
31
- end
32
-
33
- private
34
-
35
- def reset
36
- @instance_type = @instance_id = @availability_zone = nil
37
- end
38
-
39
- REMOTE_DATA_VALID_CHARS = /^[0-9a-zA-Z_ .\/-]$/.freeze
40
- INSTANCE_HOST = '169.254.169.254'
41
- API_VERSION = '2008-02-01'
42
-
43
- def remote_fetch(remote_key)
44
- uri = URI("http://#{INSTANCE_HOST}/#{API_VERSION}/meta-data/#{remote_key}")
45
- response = Net::HTTP::get(uri)
46
-
47
- data = filter_remote_data(response)
48
-
49
- unless data
50
- NewRelic::Agent.increment_metric('Supportability/utilization/aws/error')
51
- raise ResponseError, "Fetching instance metadata for #{remote_key.inspect} returned invalid data: #{response.inspect}"
52
- end
53
-
54
- data
55
- end
56
-
57
- def handle_remote_calls
58
- begin
59
- Timeout::timeout(1) do
60
- yield
61
- end
62
- rescue Timeout::Error
63
- handle_error "UtilizationData timed out fetching remote keys."
64
- rescue StandardError => e
65
- handle_error "UtilizationData encountered error fetching remote keys: #{e.message}"
66
- end
67
- end
68
-
69
- def handle_error(*messages)
70
- NewRelic::Agent.logger.debug(*messages)
71
- reset
72
- end
73
-
74
- def filter_remote_data(data_str)
75
- return nil unless data_str.kind_of?(String)
76
- return nil unless data_str.bytesize <= 255
77
-
78
- data_str.each_char do |ch|
79
- next if ch =~ REMOTE_DATA_VALID_CHARS
80
- code_point = ch[0].ord # this works in Ruby 1.8.7 - 2.1.2
81
- next if code_point >= 0x80
82
-
83
- return nil # it's in neither set of valid characters
84
- end
85
-
86
- data_str
87
- end
88
- end
89
- end
90
- end
@@ -1,26 +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
- DependencyDetection.defer do
6
- named :rubyprof
7
-
8
- depends_on do
9
- defined?(::RubyProf) && defined?(::NewRelic::Rack::DeveloperMode) && ::NewRelic::Agent.config[:developer_mode]
10
- end
11
-
12
- executes do
13
- NewRelic::Agent.instance.events.subscribe(:start_transaction) do
14
- if NewRelic::Rack::DeveloperMode.profiling_enabled?
15
- ::RubyProf.start
16
- end
17
- end
18
-
19
- NewRelic::Agent.instance.events.subscribe(:transaction_finished) do
20
- if NewRelic::Rack::DeveloperMode.profiling_enabled?
21
- trace = NewRelic::Agent::Transaction.tl_current.transaction_trace
22
- trace.profile = ::RubyProf.stop
23
- end
24
- end
25
- end
26
- end
@@ -1,188 +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 'new_relic/language_support'
6
-
7
- module NewRelic
8
- module Agent
9
- # @api public
10
- class StatsEngine
11
- # Handles methods related to actual Metric collection
12
- # @api public
13
- module MetricStats
14
- SCOPE_PLACEHOLDER = '__SCOPE__'.freeze
15
-
16
- # Update the unscoped metrics given in metric_names.
17
- # metric_names may be either a single name, or an array of names.
18
- #
19
- # This is an internal method, subject to change at any time. Client apps
20
- # and gems should use the public API (NewRelic::Agent.record_metric)
21
- # instead.
22
- #
23
- # There are four ways to use this method:
24
- #
25
- # 1. With a numeric value, it will update the Stats objects associated
26
- # with the given metrics by calling record_data_point(value, aux).
27
- # aux will be treated in this case as the exclusive time associated
28
- # with the call being recorded.
29
- #
30
- # 2. With a value of :apdex_s, :apdex_t, or :apdex_f, it will treat the
31
- # associated stats as an Apdex metric, updating it to reflect the
32
- # occurrence of a transaction falling into the given category.
33
- # The aux value in this case should be the apdex threshold used in
34
- # bucketing the request.
35
- #
36
- # 3. If a block is given, value and aux will be ignored, and instead the
37
- # Stats object associated with each named unscoped metric will be
38
- # yielded to the block for customized update logic.
39
- #
40
- # 4. If value is a Stats instance, it will be merged into the Stats
41
- # associated with each named unscoped metric.
42
- #
43
- # If this method is called during a transaction, the metrics will be
44
- # attached to the Transaction, and not merged into the global set until
45
- # the end of the transaction.
46
- #
47
- # Otherwise, the metrics will be recorded directly into the global set
48
- # of metrics, under a lock.
49
- #
50
- # @api private
51
- #
52
- def tl_record_unscoped_metrics(metric_names, value=nil, aux=nil, &blk)
53
- state = NewRelic::Agent::TransactionState.tl_get
54
- record_unscoped_metrics(state, metric_names, value, aux, &blk)
55
- end
56
-
57
- def record_unscoped_metrics(state, metric_names, value=nil, aux=nil, &blk)
58
- txn = state.current_transaction
59
- if txn
60
- txn.metrics.record_unscoped(metric_names, value, aux, &blk)
61
- else
62
- specs = coerce_to_metric_spec_array(metric_names, nil)
63
- with_stats_lock do
64
- @stats_hash.record(specs, value, aux, &blk)
65
- end
66
- end
67
- end
68
-
69
- # Like tl_record_unscoped_metrics, but records a scoped metric as well.
70
- #
71
- # This is an internal method, subject to change at any time. Client apps
72
- # and gems should use the public API (NewRelic::Agent.record_metric)
73
- # instead.
74
- #
75
- # The given scoped_metric will be recoded as both a scoped *and* an
76
- # unscoped metric. The summary_metrics will be recorded as unscoped
77
- # metrics only.
78
- #
79
- # If called during a transaction, all metrics will be attached to the
80
- # Transaction, and not merged into the global set of metrics until the
81
- # end of the transaction.
82
- #
83
- # If called outside of a transaction, only the *unscoped* metrics will
84
- # be recorded, directly into the global set of metrics (under a lock).
85
- #
86
- # @api private
87
- #
88
- def tl_record_scoped_and_unscoped_metrics(scoped_metric, summary_metrics=nil, value=nil, aux=nil, &blk)
89
- state = NewRelic::Agent::TransactionState.tl_get
90
- record_scoped_and_unscoped_metrics(state, scoped_metric, summary_metrics, value, aux, &blk)
91
- end
92
-
93
- def record_scoped_and_unscoped_metrics(state, scoped_metric, summary_metrics=nil, value=nil, aux=nil, &blk)
94
- txn = state.current_transaction
95
- if txn
96
- txn.metrics.record_scoped_and_unscoped(scoped_metric, value, aux, &blk)
97
- if summary_metrics
98
- txn.metrics.record_unscoped(summary_metrics, value, aux, &blk)
99
- end
100
- else
101
- specs = coerce_to_metric_spec_array(scoped_metric, nil)
102
- if summary_metrics
103
- specs.concat(coerce_to_metric_spec_array(summary_metrics, nil))
104
- end
105
- with_stats_lock do
106
- @stats_hash.record(specs, value, aux, &blk)
107
- end
108
- end
109
- end
110
-
111
- # Helper for recording a straight value into the count
112
- def tl_record_supportability_metric_count(metric, value)
113
- real_name = "Supportability/#{metric}"
114
- tl_record_unscoped_metrics(real_name) do |stat|
115
- stat.call_count = value
116
- end
117
- end
118
-
119
- def reset!
120
- with_stats_lock do
121
- old = @stats_hash
122
- @stats_hash = StatsHash.new
123
- old
124
- end
125
- end
126
-
127
- # merge data from previous harvests into this stats engine
128
- def merge!(other_stats_hash)
129
- with_stats_lock do
130
- @stats_hash.merge!(other_stats_hash)
131
- @stats_hash
132
- end
133
- end
134
-
135
- def merge_transaction_metrics!(txn_metrics, scope)
136
- with_stats_lock do
137
- @stats_hash.merge_transaction_metrics!(txn_metrics, scope)
138
- end
139
- end
140
-
141
- def harvest!
142
- now = Time.now
143
- snapshot = reset!
144
- snapshot = apply_rules_to_metric_data(@metric_rules, snapshot)
145
- snapshot.harvested_at = now
146
- snapshot
147
- end
148
-
149
- def apply_rules_to_metric_data(rules_engine, stats_hash)
150
- renamed_stats = NewRelic::Agent::StatsHash.new(stats_hash.started_at)
151
- stats_hash.each do |spec, stats|
152
- new_name = rules_engine.rename(spec.name)
153
- unless new_name.nil?
154
- new_spec = NewRelic::MetricSpec.new(new_name, spec.scope)
155
- renamed_stats[new_spec].merge!(stats)
156
- end
157
- end
158
- renamed_stats
159
- end
160
-
161
- def coerce_to_metric_spec_array(metric_names_or_specs, scope)
162
- specs = []
163
- Array(metric_names_or_specs).map do |name_or_spec|
164
- case name_or_spec
165
- when String
166
- specs << NewRelic::MetricSpec.new(name_or_spec)
167
- specs << NewRelic::MetricSpec.new(name_or_spec, scope) if scope
168
- when NewRelic::MetricSpec
169
- specs << name_or_spec
170
- end
171
- end
172
- specs
173
- end
174
-
175
- # For use by test code only.
176
- def clear_stats
177
- reset!
178
- NewRelic::Agent::BusyCalculator.reset
179
- end
180
-
181
- # For use by test code only.
182
- def to_h
183
- with_stats_lock { @stats_hash.to_h }
184
- end
185
- end
186
- end
187
- end
188
- end
@@ -1,109 +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
- module NewRelic
6
- module Agent
7
- class TracedMethodFrame
8
- attr_reader :tag
9
- attr_accessor :name, :start_time, :children_time
10
- def initialize(tag, start_time)
11
- @tag = tag
12
- @start_time = start_time
13
- @children_time = 0
14
- end
15
- end
16
-
17
- # TracedMethodStack is responsible for tracking the push and pop of methods
18
- # that we are tracing, notifying the transaction sampler, and calculating
19
- # exclusive time when a method is complete. This is allowed whether a
20
- # transaction is in progress not.
21
- class TracedMethodStack
22
- def initialize
23
- @stack = []
24
- end
25
-
26
- # Pushes a frame onto the transaction stack - this generates a
27
- # Agent::Transaction::TraceNode at the end of transaction execution.
28
- #
29
- # The generated node won't be named until pop_frame is called.
30
- #
31
- # +tag+ should be a Symbol, and is only for debugging purposes to
32
- # identify this frame if the stack gets corrupted.
33
- def push_frame(state, tag, time = Time.now.to_f)
34
- transaction_sampler.notice_push_frame(state, time) if sampler_enabled?
35
- frame = TracedMethodFrame.new(tag, time)
36
- @stack.push frame
37
- frame
38
- end
39
-
40
- def push_segment state, segment
41
- transaction_sampler.notice_push_frame(state, segment.start_time) if sampler_enabled?
42
- @stack.push segment
43
- segment
44
- end
45
-
46
- # Pops a frame off the transaction stack - this updates the transaction
47
- # sampler that we've finished execution of a traced method.
48
- #
49
- # +expected_frame+ should be TracedMethodFrame from the corresponding
50
- # push_frame call.
51
- #
52
- # +name+ will be applied to the generated transaction trace node.
53
- def pop_frame(state, expected_frame, name, time, deduct_call_time_from_parent=true)
54
- frame = fetch_matching_frame(expected_frame)
55
-
56
- note_children_time(frame, time, deduct_call_time_from_parent)
57
-
58
- transaction_sampler.notice_pop_frame(state, name, time) if sampler_enabled?
59
- frame.name = name if frame.is_a? TracedMethodFrame
60
- frame
61
- end
62
-
63
- def fetch_matching_frame(expected_frame)
64
- while frame = @stack.pop
65
- if frame == expected_frame
66
- return frame
67
- else
68
- NewRelic::Agent.logger.info("Unexpected frame in traced method stack: #{frame.inspect} expected to be #{expected_frame.inspect}")
69
- NewRelic::Agent.logger.debug do
70
- ["Backtrace for unexpected frame: ", caller.join("\n")]
71
- end
72
- end
73
- end
74
-
75
- raise "Frame not found in blame stack: #{expected_frame.inspect}"
76
- end
77
-
78
- def note_children_time(frame, time, deduct_call_time_from_parent)
79
- if !@stack.empty?
80
- if deduct_call_time_from_parent
81
- @stack.last.children_time += (time - frame.start_time)
82
- else
83
- @stack.last.children_time += frame.children_time
84
- end
85
- end
86
- end
87
-
88
- def sampler_enabled?
89
- Agent.config[:'transaction_tracer.enabled'] || Agent.config[:developer_mode]
90
- end
91
-
92
- def transaction_sampler
93
- Agent.instance.transaction_sampler
94
- end
95
-
96
- def clear
97
- @stack.clear
98
- end
99
-
100
- def empty?
101
- @stack.empty?
102
- end
103
-
104
- def last
105
- @stack.last
106
- end
107
- end
108
- end
109
- end
@@ -1,62 +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 'new_relic/agent/transaction/transaction_sample_buffer'
6
-
7
- module NewRelic
8
- module Agent
9
- class Transaction
10
- class DeveloperModeSampleBuffer < TransactionSampleBuffer
11
-
12
- CAPACITY = 100
13
-
14
- def capacity
15
- max_capacity
16
- end
17
-
18
- # Dev mode is allowed more than the typical upper limit.
19
- # Sidestep normal cap by overriding max_capacity.
20
- def max_capacity
21
- CAPACITY
22
- end
23
-
24
- def harvest_samples
25
- NO_SAMPLES
26
- end
27
-
28
- def enabled?
29
- Agent.config[:developer_mode]
30
- end
31
-
32
- # Truncate to the last capacity samples we've received
33
- def truncate_samples
34
- @samples = @samples.last(capacity)
35
- end
36
-
37
- # We don't hold onto previously trapped transactions on harvest
38
- # We've already got all the traces we want, thank you!
39
- def store_previous(*)
40
- end
41
-
42
- # Captures the stack trace for a node
43
- # This is expensive and not for production mode
44
- def visit_node(node)
45
- return unless enabled? && node
46
-
47
- trace = strip_newrelic_frames(caller)
48
- trace = trace.first(40) if trace.length > 40
49
- node[:backtrace] = trace
50
- end
51
-
52
- def strip_newrelic_frames(trace)
53
- while trace.first =~/\/lib\/new_relic\/agent\//
54
- trace.shift
55
- end
56
- trace
57
- end
58
-
59
- end
60
- end
61
- end
62
- end
@@ -1,141 +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 'new_relic/collection_helper'
6
- require 'new_relic/agent/transaction'
7
- require 'new_relic/agent/transaction/trace'
8
-
9
- module NewRelic
10
- module Agent
11
- # a builder is created with every sampled transaction, to dynamically
12
- # generate the sampled data. It is a thread-local object, and is not
13
- # accessed by any other thread so no need for synchronization.
14
- #
15
- # @api private
16
- class TransactionSampleBuilder
17
-
18
- # Once we hit the TT node limit, we use this class to hold our place in
19
- # the tree so that we can still get accurate names and times on the
20
- # nodes we've already created. The placeholder node keeps a
21
- # depth counter that's incremented on each node entry, and decremented
22
- # on exit, until it reaches zero, when we throw the placeholder away.
23
- # There should only ever be zero or one placeholder node at a time.
24
- #
25
- # @api private
26
- class PlaceholderNode
27
- attr_reader :parent_node
28
- attr_accessor :depth
29
-
30
- def initialize(parent_node)
31
- @parent_node = parent_node
32
- @depth = 1
33
- end
34
-
35
- # No-op - some clients expect to be able to use these to read/write
36
- # params on TT nodes.
37
- def [](key); end
38
- def []=(key, value); end
39
-
40
- # Stubbed out in case clients try to touch params directly.
41
- def params; {}; end
42
- def params=; end
43
- end
44
-
45
- attr_reader :current_node, :sample
46
-
47
- include NewRelic::CollectionHelper
48
-
49
- def initialize(time=Time.now)
50
- @sample = NewRelic::Agent::Transaction::Trace.new(time.to_f)
51
- @sample_start = time.to_f
52
- @current_node = @sample.root_node
53
- end
54
-
55
- def sample_id
56
- @sample.sample_id
57
- end
58
-
59
- def ignored?
60
- @ignore
61
- end
62
-
63
- def ignore_transaction
64
- @ignore = true
65
- end
66
-
67
- def node_limit
68
- Agent.config[:'transaction_tracer.limit_segments']
69
- end
70
-
71
- def trace_entry(time)
72
- if @sample.count_nodes < node_limit
73
- node = @sample.create_node(time.to_f - @sample_start)
74
- @current_node.add_called_node(node)
75
- @current_node = node
76
- if @sample.count_nodes == node_limit()
77
- ::NewRelic::Agent.logger.debug("Node limit of #{node_limit} reached, ceasing collection.")
78
- end
79
- else
80
- if @current_node.is_a?(PlaceholderNode)
81
- @current_node.depth += 1
82
- else
83
- @current_node = PlaceholderNode.new(@current_node)
84
- end
85
- end
86
- @current_node
87
- end
88
-
89
- def trace_exit(metric_name, time)
90
- if @current_node.is_a?(PlaceholderNode)
91
- @current_node.depth -= 1
92
- if @current_node.depth == 0
93
- @current_node = @current_node.parent_node
94
- end
95
- else
96
- @current_node.metric_name = metric_name
97
- @current_node.end_trace(time.to_f - @sample_start)
98
- @current_node = @current_node.parent_node
99
- end
100
- end
101
-
102
- def finish_trace(time=Time.now.to_f)
103
- # Should never get called twice, but in a rare case that we can't
104
- # reproduce in house it does. log forensics and return gracefully
105
- if @sample.finished
106
- ::NewRelic::Agent.logger.error "Unexpected double-finish_trace of Transaction Trace Object: \n#{@sample.to_s}"
107
- return
108
- end
109
- @sample.root_node.end_trace(time.to_f - @sample_start)
110
-
111
- @sample.threshold = transaction_trace_threshold
112
- @sample.finished = true
113
- @current_node = nil
114
- end
115
-
116
- TT_THRESHOLD_KEY = :'transaction_tracer.transaction_threshold'
117
-
118
- def transaction_trace_threshold #THREAD_LOCAL_ACCESS
119
- state = TransactionState.tl_get
120
- source_class = Agent.config.source(TT_THRESHOLD_KEY).class
121
- if source_class == Configuration::DefaultSource && state.current_transaction
122
- state.current_transaction.apdex_t * 4
123
- else
124
- Agent.config[TT_THRESHOLD_KEY]
125
- end
126
- end
127
-
128
- def scope_depth
129
- depth = -1 # have to account for the root
130
- current = @current_node
131
-
132
- while(current)
133
- depth += 1
134
- current = current.parent_node
135
- end
136
-
137
- depth
138
- end
139
- end
140
- end
141
- end
@@ -1,10 +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
- namespace :newrelic do
6
- desc "Install the developer mode newrelic.yml file"
7
- task :default do
8
- load File.expand_path(File.join(__FILE__,"..","..","install.rb"))
9
- end
10
- end
@@ -1,56 +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
- # summarizes performance data for all calls to segments
6
- # with the same metric_name
7
- module NewRelic
8
- module Rack
9
- class DeveloperMode
10
- class SegmentSummary
11
- attr_accessor :metric_name, :total_time, :exclusive_time, :call_count, :current_nest_count
12
-
13
- def initialize(metric_name, sample)
14
- @metric_name = metric_name
15
- @total_time, @exclusive_time, @call_count = 0,0,0
16
- @sample = sample
17
- @current_nest_count = 0
18
- end
19
-
20
- def <<(segment)
21
- if metric_name != segment.metric_name
22
- raise ArgumentError, "Metric Name Mismatch: #{segment.metric_name} != #{metric_name}"
23
- end
24
-
25
- # a nested segment should use the sum of the top level totals
26
- @total_time += segment.duration if current_nest_count == 0
27
- @exclusive_time += segment.exclusive_duration
28
- @call_count += 1
29
- end
30
-
31
- def average_time
32
- @total_time / @call_count
33
- end
34
-
35
- def average_exclusive_time
36
- @exclusive_time / @call_count
37
- end
38
-
39
- def exclusive_time_percentage
40
- return 0 unless @exclusive_time && @sample.duration && @sample.duration > 0
41
- @exclusive_time / @sample.duration
42
- end
43
-
44
- def total_time_percentage
45
- return 0 unless @total_time && @sample.duration && @sample.duration > 0
46
- @total_time / @sample.duration
47
- end
48
-
49
- def ui_name
50
- return @metric_name if @metric_name == 'Remainder'
51
- NewRelic::MetricParser::MetricParser.parse(@metric_name).developer_name
52
- end
53
- end
54
- end
55
- end
56
- end