mmtrix_rpm 1.0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1036) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +27 -0
  3. data/.project +23 -0
  4. data/.travis.yml +12 -0
  5. data/.yardopts +21 -0
  6. data/CHANGELOG +2342 -0
  7. data/GUIDELINES_FOR_CONTRIBUTING.md +80 -0
  8. data/Gemfile +3 -0
  9. data/Guardfile +8 -0
  10. data/LICENSE +151 -0
  11. data/README.md +202 -0
  12. data/Rakefile +154 -0
  13. data/bin/mmtrix +13 -0
  14. data/bin/mmtrix_cmd +5 -0
  15. data/bin/mongrel_rpm +33 -0
  16. data/bin/nrdebug +279 -0
  17. data/cert/cacert.pem +1177 -0
  18. data/config/database.yml +5 -0
  19. data/config.dot +287 -0
  20. data/init.rb +32 -0
  21. data/install.rb +13 -0
  22. data/lib/conditional_vendored_dependency_detection.rb +7 -0
  23. data/lib/conditional_vendored_metric_parser.rb +9 -0
  24. data/lib/mmtrix/agent/agent.rb +1152 -0
  25. data/lib/mmtrix/agent/agent_logger.rb +184 -0
  26. data/lib/mmtrix/agent/attribute_filter.rb +242 -0
  27. data/lib/mmtrix/agent/attribute_processing.rb +62 -0
  28. data/lib/mmtrix/agent/audit_logger.rb +94 -0
  29. data/lib/mmtrix/agent/autostart.rb +65 -0
  30. data/lib/mmtrix/agent/aws_info.rb +90 -0
  31. data/lib/mmtrix/agent/busy_calculator.rb +117 -0
  32. data/lib/mmtrix/agent/chained_call.rb +17 -0
  33. data/lib/mmtrix/agent/commands/agent_command.rb +19 -0
  34. data/lib/mmtrix/agent/commands/agent_command_router.rb +160 -0
  35. data/lib/mmtrix/agent/commands/thread_profiler_session.rb +110 -0
  36. data/lib/mmtrix/agent/commands/xray_session.rb +55 -0
  37. data/lib/mmtrix/agent/commands/xray_session_collection.rb +161 -0
  38. data/lib/mmtrix/agent/configuration/default_source.rb +1471 -0
  39. data/lib/mmtrix/agent/configuration/dotted_hash.rb +50 -0
  40. data/lib/mmtrix/agent/configuration/environment_source.rb +116 -0
  41. data/lib/mmtrix/agent/configuration/high_security_source.rb +51 -0
  42. data/lib/mmtrix/agent/configuration/manager.rb +395 -0
  43. data/lib/mmtrix/agent/configuration/manual_source.rb +17 -0
  44. data/lib/mmtrix/agent/configuration/mask_defaults.rb +14 -0
  45. data/lib/mmtrix/agent/configuration/server_source.rb +117 -0
  46. data/lib/mmtrix/agent/configuration/yaml_source.rb +155 -0
  47. data/lib/mmtrix/agent/configuration.rb +35 -0
  48. data/lib/mmtrix/agent/cross_app_monitor.rb +178 -0
  49. data/lib/mmtrix/agent/cross_app_tracing.rb +339 -0
  50. data/lib/mmtrix/agent/custom_event_aggregator.rb +100 -0
  51. data/lib/mmtrix/agent/database/obfuscation_helpers.rb +78 -0
  52. data/lib/mmtrix/agent/database/obfuscator.rb +80 -0
  53. data/lib/mmtrix/agent/database/postgres_explain_obfuscator.rb +46 -0
  54. data/lib/mmtrix/agent/database.rb +325 -0
  55. data/lib/mmtrix/agent/datastores/metric_helper.rb +98 -0
  56. data/lib/mmtrix/agent/datastores/mongo/metric_translator.rb +191 -0
  57. data/lib/mmtrix/agent/datastores/mongo/obfuscator.rb +39 -0
  58. data/lib/mmtrix/agent/datastores/mongo/statement_formatter.rb +53 -0
  59. data/lib/mmtrix/agent/datastores/mongo.rb +29 -0
  60. data/lib/mmtrix/agent/datastores.rb +191 -0
  61. data/lib/mmtrix/agent/deprecator.rb +18 -0
  62. data/lib/mmtrix/agent/encoding_normalizer.rb +82 -0
  63. data/lib/mmtrix/agent/error_collector.rb +316 -0
  64. data/lib/mmtrix/agent/event_buffer.rb +84 -0
  65. data/lib/mmtrix/agent/event_listener.rb +47 -0
  66. data/lib/mmtrix/agent/event_loop.rb +193 -0
  67. data/lib/mmtrix/agent/harvester.rb +52 -0
  68. data/lib/mmtrix/agent/hash_extensions.rb +26 -0
  69. data/lib/mmtrix/agent/hostname.rb +30 -0
  70. data/lib/mmtrix/agent/http_clients/curb_wrappers.rb +67 -0
  71. data/lib/mmtrix/agent/http_clients/excon_wrappers.rb +67 -0
  72. data/lib/mmtrix/agent/http_clients/httpclient_wrappers.rb +63 -0
  73. data/lib/mmtrix/agent/http_clients/net_http_wrappers.rb +50 -0
  74. data/lib/mmtrix/agent/http_clients/typhoeus_wrappers.rb +75 -0
  75. data/lib/mmtrix/agent/http_clients/uri_util.rb +51 -0
  76. data/lib/mmtrix/agent/inbound_request_monitor.rb +41 -0
  77. data/lib/mmtrix/agent/instrumentation/action_controller_subscriber.rb +121 -0
  78. data/lib/mmtrix/agent/instrumentation/action_view_subscriber.rb +95 -0
  79. data/lib/mmtrix/agent/instrumentation/active_job.rb +90 -0
  80. data/lib/mmtrix/agent/instrumentation/active_merchant.rb +37 -0
  81. data/lib/mmtrix/agent/instrumentation/active_record.rb +105 -0
  82. data/lib/mmtrix/agent/instrumentation/active_record_4.rb +29 -0
  83. data/lib/mmtrix/agent/instrumentation/active_record_helper.rb +189 -0
  84. data/lib/mmtrix/agent/instrumentation/active_record_subscriber.rb +104 -0
  85. data/lib/mmtrix/agent/instrumentation/acts_as_solr.rb +72 -0
  86. data/lib/mmtrix/agent/instrumentation/authlogic.rb +25 -0
  87. data/lib/mmtrix/agent/instrumentation/controller_instrumentation.rb +458 -0
  88. data/lib/mmtrix/agent/instrumentation/curb.rb +191 -0
  89. data/lib/mmtrix/agent/instrumentation/data_mapper.rb +167 -0
  90. data/lib/mmtrix/agent/instrumentation/delayed_job_instrumentation.rb +56 -0
  91. data/lib/mmtrix/agent/instrumentation/evented_subscriber.rb +100 -0
  92. data/lib/mmtrix/agent/instrumentation/excon/connection.rb +33 -0
  93. data/lib/mmtrix/agent/instrumentation/excon/middleware.rb +57 -0
  94. data/lib/mmtrix/agent/instrumentation/excon.rb +72 -0
  95. data/lib/mmtrix/agent/instrumentation/grape.rb +111 -0
  96. data/lib/mmtrix/agent/instrumentation/httpclient.rb +46 -0
  97. data/lib/mmtrix/agent/instrumentation/ignore_actions.rb +41 -0
  98. data/lib/mmtrix/agent/instrumentation/memcache.rb +143 -0
  99. data/lib/mmtrix/agent/instrumentation/merb/controller.rb +44 -0
  100. data/lib/mmtrix/agent/instrumentation/merb/errors.rb +33 -0
  101. data/lib/mmtrix/agent/instrumentation/metric_frame.rb +39 -0
  102. data/lib/mmtrix/agent/instrumentation/middleware_proxy.rb +109 -0
  103. data/lib/mmtrix/agent/instrumentation/middleware_tracing.rb +87 -0
  104. data/lib/mmtrix/agent/instrumentation/mongo.rb +128 -0
  105. data/lib/mmtrix/agent/instrumentation/net.rb +36 -0
  106. data/lib/mmtrix/agent/instrumentation/padrino.rb +32 -0
  107. data/lib/mmtrix/agent/instrumentation/passenger_instrumentation.rb +27 -0
  108. data/lib/mmtrix/agent/instrumentation/queue_time.rb +78 -0
  109. data/lib/mmtrix/agent/instrumentation/rack.rb +186 -0
  110. data/lib/mmtrix/agent/instrumentation/rails/action_controller.rb +123 -0
  111. data/lib/mmtrix/agent/instrumentation/rails/action_web_service.rb +46 -0
  112. data/lib/mmtrix/agent/instrumentation/rails/errors.rb +51 -0
  113. data/lib/mmtrix/agent/instrumentation/rails3/action_controller.rb +173 -0
  114. data/lib/mmtrix/agent/instrumentation/rails3/errors.rb +47 -0
  115. data/lib/mmtrix/agent/instrumentation/rails4/action_controller.rb +29 -0
  116. data/lib/mmtrix/agent/instrumentation/rails4/action_view.rb +25 -0
  117. data/lib/mmtrix/agent/instrumentation/rails4/errors.rb +46 -0
  118. data/lib/mmtrix/agent/instrumentation/rails_middleware.rb +39 -0
  119. data/lib/mmtrix/agent/instrumentation/rainbows_instrumentation.rb +26 -0
  120. data/lib/mmtrix/agent/instrumentation/resque.rb +96 -0
  121. data/lib/mmtrix/agent/instrumentation/rubyprof.rb +26 -0
  122. data/lib/mmtrix/agent/instrumentation/sequel.rb +51 -0
  123. data/lib/mmtrix/agent/instrumentation/sequel_helper.rb +36 -0
  124. data/lib/mmtrix/agent/instrumentation/sidekiq.rb +72 -0
  125. data/lib/mmtrix/agent/instrumentation/sinatra/ignorer.rb +52 -0
  126. data/lib/mmtrix/agent/instrumentation/sinatra/transaction_namer.rb +56 -0
  127. data/lib/mmtrix/agent/instrumentation/sinatra.rb +188 -0
  128. data/lib/mmtrix/agent/instrumentation/sunspot.rb +33 -0
  129. data/lib/mmtrix/agent/instrumentation/typhoeus.rb +78 -0
  130. data/lib/mmtrix/agent/instrumentation.rb +13 -0
  131. data/lib/mmtrix/agent/internal_agent_error.rb +18 -0
  132. data/lib/mmtrix/agent/javascript_instrumentor.rb +196 -0
  133. data/lib/mmtrix/agent/log_once.rb +39 -0
  134. data/lib/mmtrix/agent/memory_logger.rb +59 -0
  135. data/lib/mmtrix/agent/method_tracer.rb +391 -0
  136. data/lib/mmtrix/agent/method_tracer_helpers.rb +92 -0
  137. data/lib/mmtrix/agent/mmtrix_service/encoders.rb +38 -0
  138. data/lib/mmtrix/agent/mmtrix_service/json_marshaller.rb +75 -0
  139. data/lib/mmtrix/agent/mmtrix_service/marshaller.rb +62 -0
  140. data/lib/mmtrix/agent/mmtrix_service/pruby_marshaller.rb +56 -0
  141. data/lib/mmtrix/agent/mmtrix_service.rb +580 -0
  142. data/lib/mmtrix/agent/null_logger.rb +21 -0
  143. data/lib/mmtrix/agent/obfuscator.rb +49 -0
  144. data/lib/mmtrix/agent/parameter_filtering.rb +44 -0
  145. data/lib/mmtrix/agent/pipe_channel_manager.rb +277 -0
  146. data/lib/mmtrix/agent/pipe_service.rb +84 -0
  147. data/lib/mmtrix/agent/rules_engine/replacement_rule.rb +76 -0
  148. data/lib/mmtrix/agent/rules_engine/segment_terms_rule.rb +48 -0
  149. data/lib/mmtrix/agent/rules_engine.rb +58 -0
  150. data/lib/mmtrix/agent/sampled_buffer.rb +51 -0
  151. data/lib/mmtrix/agent/sampler.rb +64 -0
  152. data/lib/mmtrix/agent/sampler_collection.rb +72 -0
  153. data/lib/mmtrix/agent/samplers/cpu_sampler.rb +76 -0
  154. data/lib/mmtrix/agent/samplers/delayed_job_sampler.rb +111 -0
  155. data/lib/mmtrix/agent/samplers/memory_sampler.rb +149 -0
  156. data/lib/mmtrix/agent/samplers/object_sampler.rb +24 -0
  157. data/lib/mmtrix/agent/samplers/vm_sampler.rb +126 -0
  158. data/lib/mmtrix/agent/sized_buffer.rb +23 -0
  159. data/lib/mmtrix/agent/sql_sampler.rb +322 -0
  160. data/lib/mmtrix/agent/stats.rb +159 -0
  161. data/lib/mmtrix/agent/stats_engine/gc_profiler.rb +109 -0
  162. data/lib/mmtrix/agent/stats_engine/metric_stats.rb +237 -0
  163. data/lib/mmtrix/agent/stats_engine/samplers.rb +22 -0
  164. data/lib/mmtrix/agent/stats_engine/stats_hash.rb +168 -0
  165. data/lib/mmtrix/agent/stats_engine.rb +32 -0
  166. data/lib/mmtrix/agent/supported_versions.rb +259 -0
  167. data/lib/mmtrix/agent/synthetics_event_buffer.rb +42 -0
  168. data/lib/mmtrix/agent/synthetics_monitor.rb +50 -0
  169. data/lib/mmtrix/agent/system_info.rb +251 -0
  170. data/lib/mmtrix/agent/threading/agent_thread.rb +76 -0
  171. data/lib/mmtrix/agent/threading/backtrace_node.rb +135 -0
  172. data/lib/mmtrix/agent/threading/backtrace_service.rb +283 -0
  173. data/lib/mmtrix/agent/threading/thread_profile.rb +149 -0
  174. data/lib/mmtrix/agent/traced_method_stack.rb +99 -0
  175. data/lib/mmtrix/agent/transaction/attributes.rb +163 -0
  176. data/lib/mmtrix/agent/transaction/developer_mode_sample_buffer.rb +62 -0
  177. data/lib/mmtrix/agent/transaction/slowest_sample_buffer.rb +25 -0
  178. data/lib/mmtrix/agent/transaction/synthetics_sample_buffer.rb +25 -0
  179. data/lib/mmtrix/agent/transaction/trace.rb +150 -0
  180. data/lib/mmtrix/agent/transaction/trace_node.rb +190 -0
  181. data/lib/mmtrix/agent/transaction/transaction_sample_buffer.rb +105 -0
  182. data/lib/mmtrix/agent/transaction/xray_sample_buffer.rb +64 -0
  183. data/lib/mmtrix/agent/transaction.rb +940 -0
  184. data/lib/mmtrix/agent/transaction_event_aggregator.rb +265 -0
  185. data/lib/mmtrix/agent/transaction_metrics.rb +57 -0
  186. data/lib/mmtrix/agent/transaction_sample_builder.rb +141 -0
  187. data/lib/mmtrix/agent/transaction_sampler.rb +317 -0
  188. data/lib/mmtrix/agent/transaction_state.rb +153 -0
  189. data/lib/mmtrix/agent/transaction_timings.rb +57 -0
  190. data/lib/mmtrix/agent/utilization_data.rb +64 -0
  191. data/lib/mmtrix/agent/vm/jruby_vm.rb +40 -0
  192. data/lib/mmtrix/agent/vm/monotonic_gc_profiler.rb +45 -0
  193. data/lib/mmtrix/agent/vm/mri_vm.rb +87 -0
  194. data/lib/mmtrix/agent/vm/rubinius_vm.rb +132 -0
  195. data/lib/mmtrix/agent/vm/snapshot.rb +20 -0
  196. data/lib/mmtrix/agent/vm.rb +32 -0
  197. data/lib/mmtrix/agent/worker_loop.rb +98 -0
  198. data/lib/mmtrix/agent.rb +714 -0
  199. data/lib/mmtrix/build.rb +2 -0
  200. data/lib/mmtrix/cli/command.rb +91 -0
  201. data/lib/mmtrix/cli/commands/deployments.rb +134 -0
  202. data/lib/mmtrix/cli/commands/install.rb +84 -0
  203. data/lib/mmtrix/coerce.rb +70 -0
  204. data/lib/mmtrix/collection_helper.rb +79 -0
  205. data/lib/mmtrix/control/class_methods.rb +62 -0
  206. data/lib/mmtrix/control/frameworks/external.rb +20 -0
  207. data/lib/mmtrix/control/frameworks/merb.rb +29 -0
  208. data/lib/mmtrix/control/frameworks/rails.rb +139 -0
  209. data/lib/mmtrix/control/frameworks/rails3.rb +45 -0
  210. data/lib/mmtrix/control/frameworks/rails4.rb +23 -0
  211. data/lib/mmtrix/control/frameworks/ruby.rb +24 -0
  212. data/lib/mmtrix/control/frameworks/sinatra.rb +14 -0
  213. data/lib/mmtrix/control/frameworks.rb +14 -0
  214. data/lib/mmtrix/control/instance_methods.rb +161 -0
  215. data/lib/mmtrix/control/instrumentation.rb +71 -0
  216. data/lib/mmtrix/control/server_methods.rb +32 -0
  217. data/lib/mmtrix/control.rb +43 -0
  218. data/lib/mmtrix/delayed_job_injection.rb +10 -0
  219. data/lib/mmtrix/environment_report.rb +131 -0
  220. data/lib/mmtrix/helper.rb +55 -0
  221. data/lib/mmtrix/json_wrapper.rb +78 -0
  222. data/lib/mmtrix/language_support.rb +144 -0
  223. data/lib/mmtrix/latest_changes.rb +64 -0
  224. data/lib/mmtrix/local_environment.rb +207 -0
  225. data/lib/mmtrix/merbtasks.rb +10 -0
  226. data/lib/mmtrix/metric_data.rb +74 -0
  227. data/lib/mmtrix/metric_spec.rb +81 -0
  228. data/lib/mmtrix/metrics.rb +13 -0
  229. data/lib/mmtrix/noticed_error.rb +164 -0
  230. data/lib/mmtrix/okjson.rb +602 -0
  231. data/lib/mmtrix/rack/agent_hooks.rb +33 -0
  232. data/lib/mmtrix/rack/agent_middleware.rb +40 -0
  233. data/lib/mmtrix/rack/browser_monitoring.rb +150 -0
  234. data/lib/mmtrix/rack/developer_mode/segment_summary.rb +56 -0
  235. data/lib/mmtrix/rack/developer_mode.rb +321 -0
  236. data/lib/mmtrix/rack/error_collector.rb +27 -0
  237. data/lib/mmtrix/rack.rb +17 -0
  238. data/lib/mmtrix/recipes/capistrano3.rb +66 -0
  239. data/lib/mmtrix/recipes/capistrano_legacy.rb +98 -0
  240. data/lib/mmtrix/recipes.rb +24 -0
  241. data/lib/mmtrix/timer_lib.rb +31 -0
  242. data/lib/mmtrix/version.rb +70 -0
  243. data/lib/mmtrix_rpm.rb +54 -0
  244. data/lib/sequel/extensions/mmtrix_instrumentation.rb +79 -0
  245. data/lib/sequel/plugins/mmtrix_instrumentation.rb +65 -0
  246. data/lib/tasks/all.rb +8 -0
  247. data/lib/tasks/config.html.erb +28 -0
  248. data/lib/tasks/config.rake +134 -0
  249. data/lib/tasks/config.text.erb +7 -0
  250. data/lib/tasks/install.rake +11 -0
  251. data/lib/tasks/multiverse.rake +2 -0
  252. data/lib/tasks/multiverse.rb +50 -0
  253. data/lib/tasks/tests.rake +36 -0
  254. data/lib/tasks/versions.html.erb +27 -0
  255. data/lib/tasks/versions.rake +53 -0
  256. data/lib/tasks/versions.txt.erb +14 -0
  257. data/mmtrix.yml +47 -0
  258. data/mmtrix_rpm.gemspec +73 -0
  259. data/recipes/mmtrix.rb +10 -0
  260. data/test/agent_helper.rb +666 -0
  261. data/test/config/mmtrix.yml +46 -0
  262. data/test/config/test.cert.crt +18 -0
  263. data/test/config/test.cert.key +15 -0
  264. data/test/config/test_control.rb +54 -0
  265. data/test/environments/.gitignore +16 -0
  266. data/test/environments/lib/environments/runner.rb +113 -0
  267. data/test/environments/norails/Gemfile +21 -0
  268. data/test/environments/norails/Rakefile +9 -0
  269. data/test/environments/rails21/Gemfile +25 -0
  270. data/test/environments/rails21/Rakefile +16 -0
  271. data/test/environments/rails21/app/controllers/application.rb +20 -0
  272. data/test/environments/rails21/config/boot.rb +113 -0
  273. data/test/environments/rails21/config/database.yml +26 -0
  274. data/test/environments/rails21/config/environment.rb +26 -0
  275. data/test/environments/rails21/config/environments/development.rb +10 -0
  276. data/test/environments/rails21/config/environments/production.rb +8 -0
  277. data/test/environments/rails21/config/environments/test.rb +10 -0
  278. data/test/environments/rails21/config/routes.rb +5 -0
  279. data/test/environments/rails21/db/schema.rb +5 -0
  280. data/test/environments/rails22/Gemfile +25 -0
  281. data/test/environments/rails22/Rakefile +16 -0
  282. data/test/environments/rails22/app/controllers/application.rb +20 -0
  283. data/test/environments/rails22/config/boot.rb +113 -0
  284. data/test/environments/rails22/config/database.yml +26 -0
  285. data/test/environments/rails22/config/environment.rb +25 -0
  286. data/test/environments/rails22/config/environments/development.rb +10 -0
  287. data/test/environments/rails22/config/environments/production.rb +8 -0
  288. data/test/environments/rails22/config/environments/test.rb +10 -0
  289. data/test/environments/rails22/config/routes.rb +5 -0
  290. data/test/environments/rails22/db/schema.rb +5 -0
  291. data/test/environments/rails23/Gemfile +24 -0
  292. data/test/environments/rails23/Rakefile +16 -0
  293. data/test/environments/rails23/app/controllers/application.rb +20 -0
  294. data/test/environments/rails23/config/boot.rb +127 -0
  295. data/test/environments/rails23/config/database.yml +26 -0
  296. data/test/environments/rails23/config/environment.rb +16 -0
  297. data/test/environments/rails23/config/environments/production.rb +8 -0
  298. data/test/environments/rails23/config/environments/test.rb +10 -0
  299. data/test/environments/rails23/config/preinitializer.rb +25 -0
  300. data/test/environments/rails23/config/routes.rb +5 -0
  301. data/test/environments/rails23/db/schema.rb +5 -0
  302. data/test/environments/rails30/Gemfile +23 -0
  303. data/test/environments/rails30/Rakefile +11 -0
  304. data/test/environments/rails30/config/application.rb +17 -0
  305. data/test/environments/rails30/config/boot.rb +10 -0
  306. data/test/environments/rails30/config/database.yml +26 -0
  307. data/test/environments/rails30/config/environment.rb +6 -0
  308. data/test/environments/rails30/config/initializers/new_rails_defaults.rb +11 -0
  309. data/test/environments/rails30/db/schema.rb +5 -0
  310. data/test/environments/rails31/Gemfile +24 -0
  311. data/test/environments/rails31/Rakefile +11 -0
  312. data/test/environments/rails31/config/application.rb +18 -0
  313. data/test/environments/rails31/config/boot.rb +10 -0
  314. data/test/environments/rails31/config/database.yml +26 -0
  315. data/test/environments/rails31/config/environment.rb +6 -0
  316. data/test/environments/rails31/config/initializers/new_rails_defaults.rb +21 -0
  317. data/test/environments/rails31/db/schema.rb +5 -0
  318. data/test/environments/rails32/Gemfile +26 -0
  319. data/test/environments/rails32/Rakefile +11 -0
  320. data/test/environments/rails32/config/application.rb +19 -0
  321. data/test/environments/rails32/config/boot.rb +10 -0
  322. data/test/environments/rails32/config/database.yml +31 -0
  323. data/test/environments/rails32/config/environment.rb +6 -0
  324. data/test/environments/rails32/db/schema.rb +5 -0
  325. data/test/environments/rails40/Gemfile +43 -0
  326. data/test/environments/rails40/Rakefile +11 -0
  327. data/test/environments/rails40/config/application.rb +18 -0
  328. data/test/environments/rails40/config/boot.rb +10 -0
  329. data/test/environments/rails40/config/database.yml +26 -0
  330. data/test/environments/rails40/config/environment.rb +6 -0
  331. data/test/environments/rails40/db/schema.rb +5 -0
  332. data/test/environments/rails41/Gemfile +35 -0
  333. data/test/environments/rails41/Rakefile +11 -0
  334. data/test/environments/rails41/config/application.rb +18 -0
  335. data/test/environments/rails41/config/boot.rb +10 -0
  336. data/test/environments/rails41/config/database.yml +26 -0
  337. data/test/environments/rails41/config/environment.rb +6 -0
  338. data/test/environments/rails41/db/schema.rb +5 -0
  339. data/test/environments/rails42/Gemfile +39 -0
  340. data/test/environments/rails42/Rakefile +11 -0
  341. data/test/environments/rails42/config/application.rb +18 -0
  342. data/test/environments/rails42/config/boot.rb +10 -0
  343. data/test/environments/rails42/config/database.yml +26 -0
  344. data/test/environments/rails42/config/environment.rb +6 -0
  345. data/test/environments/rails42/db/schema.rb +5 -0
  346. data/test/fixtures/cross_agent_tests/README.md +56 -0
  347. data/test/fixtures/cross_agent_tests/attribute_configuration.json +384 -0
  348. data/test/fixtures/cross_agent_tests/aws.json +218 -0
  349. data/test/fixtures/cross_agent_tests/cat_map.json +597 -0
  350. data/test/fixtures/cross_agent_tests/docker_container_id/README.md +6 -0
  351. data/test/fixtures/cross_agent_tests/docker_container_id/cases.json +75 -0
  352. data/test/fixtures/cross_agent_tests/docker_container_id/docker-0.9.1.txt +10 -0
  353. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.0.0.txt +10 -0
  354. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-lxc-driver.txt +10 -0
  355. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-native-driver-fs.txt +10 -0
  356. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-native-driver-systemd.txt +10 -0
  357. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.3.txt +9 -0
  358. data/test/fixtures/cross_agent_tests/docker_container_id/empty.txt +0 -0
  359. data/test/fixtures/cross_agent_tests/docker_container_id/heroku.txt +1 -0
  360. data/test/fixtures/cross_agent_tests/docker_container_id/invalid-characters.txt +9 -0
  361. data/test/fixtures/cross_agent_tests/docker_container_id/invalid-length.txt +9 -0
  362. data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.04-lxc-container.txt +10 -0
  363. data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.04-no-container.txt +10 -0
  364. data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.10-no-container.txt +10 -0
  365. data/test/fixtures/cross_agent_tests/labels.json +133 -0
  366. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/README.md +16 -0
  367. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.colon_obfuscated.txt +3 -0
  368. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.explain.txt +3 -0
  369. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.obfuscated.txt +3 -0
  370. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.query.txt +1 -0
  371. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.colon_obfuscated.txt +2 -0
  372. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.explain.txt +2 -0
  373. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.obfuscated.txt +2 -0
  374. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.query.txt +1 -0
  375. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.colon_obfuscated.txt +2 -0
  376. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.explain.txt +2 -0
  377. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.obfuscated.txt +2 -0
  378. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.query.txt +1 -0
  379. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.colon_obfuscated.txt +2 -0
  380. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.explain.txt +3 -0
  381. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.obfuscated.txt +2 -0
  382. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.query.txt +1 -0
  383. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.colon_obfuscated.txt +2 -0
  384. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.explain.txt +2 -0
  385. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.obfuscated.txt +2 -0
  386. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.query.txt +1 -0
  387. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.colon_obfuscated.txt +2 -0
  388. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.explain.txt +2 -0
  389. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.obfuscated.txt +2 -0
  390. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.query.txt +1 -0
  391. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.colon_obfuscated.txt +5 -0
  392. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.explain.txt +5 -0
  393. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.obfuscated.txt +5 -0
  394. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.query.txt +1 -0
  395. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.colon_obfuscated.txt +2 -0
  396. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.explain.txt +2 -0
  397. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.obfuscated.txt +2 -0
  398. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.query.txt +1 -0
  399. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.colon_obfuscated.txt +5 -0
  400. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.explain.txt +5 -0
  401. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.obfuscated.txt +5 -0
  402. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.query.txt +1 -0
  403. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.colon_obfuscated.txt +2 -0
  404. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.explain.txt +2 -0
  405. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.obfuscated.txt +2 -0
  406. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.query.txt +1 -0
  407. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.colon_obfuscated.txt +2 -0
  408. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.explain.txt +2 -0
  409. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.obfuscated.txt +2 -0
  410. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.query.txt +1 -0
  411. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.colon_obfuscated.txt +3 -0
  412. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.explain.txt +3 -0
  413. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.obfuscated.txt +3 -0
  414. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.query.txt +1 -0
  415. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.colon_obfuscated.txt +2 -0
  416. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.explain.txt +2 -0
  417. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.obfuscated.txt +2 -0
  418. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.query.txt +1 -0
  419. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.colon_obfuscated.txt +2 -0
  420. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.explain.txt +3 -0
  421. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.obfuscated.txt +2 -0
  422. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.query.txt +1 -0
  423. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.colon_obfuscated.txt +2 -0
  424. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.explain.txt +2 -0
  425. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.obfuscated.txt +2 -0
  426. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.query.txt +1 -0
  427. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.colon_obfuscated.txt +2 -0
  428. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.explain.txt +2 -0
  429. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.obfuscated.txt +2 -0
  430. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.query.txt +1 -0
  431. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.colon_obfuscated.txt +2 -0
  432. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.explain.txt +2 -0
  433. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.obfuscated.txt +2 -0
  434. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.query.txt +1 -0
  435. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.colon_obfuscated.txt +2 -0
  436. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.explain.txt +2 -0
  437. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.obfuscated.txt +2 -0
  438. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.query.txt +1 -0
  439. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.colon_obfuscated.txt +2 -0
  440. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.explain.txt +2 -0
  441. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.obfuscated.txt +2 -0
  442. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.query.txt +1 -0
  443. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.colon_obfuscated.txt +2 -0
  444. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.explain.txt +2 -0
  445. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.obfuscated.txt +2 -0
  446. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.query.txt +1 -0
  447. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.colon_obfuscated.txt +2 -0
  448. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.explain.txt +2 -0
  449. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.obfuscated.txt +2 -0
  450. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.query.txt +1 -0
  451. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_1logical.txt +3 -0
  452. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_2logical.txt +14 -0
  453. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_2core_2logical.txt +14 -0
  454. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_4core_4logical.txt +28 -0
  455. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_12core_24logical.txt +575 -0
  456. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_20core_40logical.txt +999 -0
  457. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_2logical.txt +51 -0
  458. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_4logical.txt +28 -0
  459. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_4core_4logical.txt +28 -0
  460. data/test/fixtures/cross_agent_tests/proc_cpuinfo/4pack_4core_4logical.txt +103 -0
  461. data/test/fixtures/cross_agent_tests/proc_cpuinfo/8pack_8core_8logical.txt +199 -0
  462. data/test/fixtures/cross_agent_tests/proc_cpuinfo/README.md +24 -0
  463. data/test/fixtures/cross_agent_tests/proc_cpuinfo/Xpack_Xcore_2logical.txt +43 -0
  464. data/test/fixtures/cross_agent_tests/proc_meminfo/README.md +7 -0
  465. data/test/fixtures/cross_agent_tests/proc_meminfo/meminfo_4096MB.txt +47 -0
  466. data/test/fixtures/cross_agent_tests/rules.json +165 -0
  467. data/test/fixtures/cross_agent_tests/rum_client_config.json +62 -0
  468. data/test/fixtures/cross_agent_tests/rum_footer_insertion_location/close-body-in-comment.html +10 -0
  469. data/test/fixtures/cross_agent_tests/rum_footer_insertion_location/dynamic-iframe.html +19 -0
  470. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/basic.html +10 -0
  471. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/body_with_attributes.html +3 -0
  472. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag.html +11 -0
  473. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_after_x_ua_tag.html +11 -0
  474. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_before_x_ua_tag.html +11 -0
  475. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_with_spaces.html +11 -0
  476. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments1.html +24 -0
  477. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments2.html +24 -0
  478. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag.html +11 -0
  479. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_after_x_ua_tag.html +11 -0
  480. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_before_x_ua_tag.html +11 -0
  481. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/empty_head +4 -0
  482. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes1.html +27 -0
  483. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes2.html +24 -0
  484. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes_mismatch.html +24 -0
  485. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes1.html +25 -0
  486. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes_mismatch.html +25 -0
  487. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/head_with_attributes.html +10 -0
  488. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/incomplete_non_meta_tags.html +10 -0
  489. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_end_header.html +6 -0
  490. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_header.html +7 -0
  491. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_html_and_no_header.html +3 -0
  492. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_start_header.html +9 -0
  493. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/script1.html +19 -0
  494. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/script2.html +17 -0
  495. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag.html +10 -0
  496. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiline.html +11 -0
  497. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiple_tags.html +12 -0
  498. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_spaces_around_equals.html +10 -0
  499. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_others.html +11 -0
  500. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_spaces.html +10 -0
  501. data/test/fixtures/cross_agent_tests/sql_obfuscation/README.md +30 -0
  502. data/test/fixtures/cross_agent_tests/sql_obfuscation/sql_obfuscation.json +365 -0
  503. data/test/fixtures/cross_agent_tests/sql_parsing.json +55 -0
  504. data/test/fixtures/cross_agent_tests/synthetics/README.md +65 -0
  505. data/test/fixtures/cross_agent_tests/synthetics/synthetics.json +317 -0
  506. data/test/fixtures/cross_agent_tests/transaction_segment_terms.json +101 -0
  507. data/test/fixtures/cross_agent_tests/url_clean.json +15 -0
  508. data/test/fixtures/cross_agent_tests/url_domain_extraction.json +35 -0
  509. data/test/helpers/exceptions.rb +16 -0
  510. data/test/helpers/file_searching.rb +28 -0
  511. data/test/helpers/mongo_metric_builder.rb +28 -0
  512. data/test/helpers/runtime_detection.rb +17 -0
  513. data/test/intentional_fail.rb +13 -0
  514. data/test/mmtrix/FAKECHANGELOG +21 -0
  515. data/test/mmtrix/agent/agent/connect_test.rb +308 -0
  516. data/test/mmtrix/agent/agent/start_test.rb +191 -0
  517. data/test/mmtrix/agent/agent/start_worker_thread_test.rb +74 -0
  518. data/test/mmtrix/agent/agent_logger_test.rb +392 -0
  519. data/test/mmtrix/agent/agent_test.rb +631 -0
  520. data/test/mmtrix/agent/agent_test_controller.rb +84 -0
  521. data/test/mmtrix/agent/apdex_from_server_test.rb +13 -0
  522. data/test/mmtrix/agent/attribute_filter_test.rb +218 -0
  523. data/test/mmtrix/agent/attribute_processing_test.rb +165 -0
  524. data/test/mmtrix/agent/audit_logger_test.rb +213 -0
  525. data/test/mmtrix/agent/autostart_test.rb +79 -0
  526. data/test/mmtrix/agent/aws_info_test.rb +61 -0
  527. data/test/mmtrix/agent/busy_calculator_test.rb +98 -0
  528. data/test/mmtrix/agent/commands/agent_command_router_test.rb +256 -0
  529. data/test/mmtrix/agent/commands/agent_command_test.rb +37 -0
  530. data/test/mmtrix/agent/commands/thread_profiler_session_test.rb +215 -0
  531. data/test/mmtrix/agent/commands/xray_session_collection_test.rb +332 -0
  532. data/test/mmtrix/agent/commands/xray_session_test.rb +42 -0
  533. data/test/mmtrix/agent/configuration/default_source_test.rb +226 -0
  534. data/test/mmtrix/agent/configuration/dotted_hash_test.rb +53 -0
  535. data/test/mmtrix/agent/configuration/environment_source_test.rb +201 -0
  536. data/test/mmtrix/agent/configuration/high_security_source_test.rb +83 -0
  537. data/test/mmtrix/agent/configuration/manager_test.rb +460 -0
  538. data/test/mmtrix/agent/configuration/manual_source_test.rb +18 -0
  539. data/test/mmtrix/agent/configuration/orphan_configuration_test.rb +89 -0
  540. data/test/mmtrix/agent/configuration/server_source_test.rb +202 -0
  541. data/test/mmtrix/agent/configuration/yaml_source_test.rb +117 -0
  542. data/test/mmtrix/agent/cross_app_monitor_test.rb +248 -0
  543. data/test/mmtrix/agent/cross_app_tracing_test.rb +71 -0
  544. data/test/mmtrix/agent/custom_event_aggregator_test.rb +88 -0
  545. data/test/mmtrix/agent/database/postgres_explain_obfuscator_test.rb +34 -0
  546. data/test/mmtrix/agent/database/sql_obfuscation_test.rb +59 -0
  547. data/test/mmtrix/agent/database_test.rb +401 -0
  548. data/test/mmtrix/agent/datastores/metric_helper_test.rb +132 -0
  549. data/test/mmtrix/agent/datastores/mongo/metric_translator_test.rb +320 -0
  550. data/test/mmtrix/agent/datastores/mongo/obfuscator_test.rb +91 -0
  551. data/test/mmtrix/agent/datastores/mongo/statement_formatter_test.rb +72 -0
  552. data/test/mmtrix/agent/datastores_test.rb +195 -0
  553. data/test/mmtrix/agent/deprecator_test.rb +52 -0
  554. data/test/mmtrix/agent/encoding_normalizer_test.rb +66 -0
  555. data/test/mmtrix/agent/error_collector_test.rb +618 -0
  556. data/test/mmtrix/agent/event_buffer_test_cases.rb +152 -0
  557. data/test/mmtrix/agent/event_listener_test.rb +70 -0
  558. data/test/mmtrix/agent/event_loop_test.rb +202 -0
  559. data/test/mmtrix/agent/harvester_test.rb +79 -0
  560. data/test/mmtrix/agent/hash_extensions_test.rb +34 -0
  561. data/test/mmtrix/agent/hostname_test.rb +93 -0
  562. data/test/mmtrix/agent/http_clients/uri_util_test.rb +64 -0
  563. data/test/mmtrix/agent/inbound_request_monitor_test.rb +49 -0
  564. data/test/mmtrix/agent/instrumentation/action_controller_subscriber_test.rb +299 -0
  565. data/test/mmtrix/agent/instrumentation/action_view_subscriber_test.rb +239 -0
  566. data/test/mmtrix/agent/instrumentation/active_job_test.rb +20 -0
  567. data/test/mmtrix/agent/instrumentation/active_record_helper_test.rb +77 -0
  568. data/test/mmtrix/agent/instrumentation/active_record_subscriber_test.rb +132 -0
  569. data/test/mmtrix/agent/instrumentation/controller_instrumentation_test.rb +328 -0
  570. data/test/mmtrix/agent/instrumentation/instrumentation_test.rb +14 -0
  571. data/test/mmtrix/agent/instrumentation/metric_frame_test.rb +22 -0
  572. data/test/mmtrix/agent/instrumentation/middleware_proxy_test.rb +257 -0
  573. data/test/mmtrix/agent/instrumentation/middleware_tracing_test.rb +49 -0
  574. data/test/mmtrix/agent/instrumentation/net_instrumentation_test.rb +35 -0
  575. data/test/mmtrix/agent/instrumentation/queue_time_test.rb +103 -0
  576. data/test/mmtrix/agent/instrumentation/rack_test.rb +47 -0
  577. data/test/mmtrix/agent/instrumentation/sequel_helper_test.rb +36 -0
  578. data/test/mmtrix/agent/instrumentation/sinatra/transaction_namer_test.rb +55 -0
  579. data/test/mmtrix/agent/instrumentation/sinatra_test.rb +80 -0
  580. data/test/mmtrix/agent/instrumentation/task_instrumentation_test.rb +196 -0
  581. data/test/mmtrix/agent/javascript_instrumentor_test.rb +340 -0
  582. data/test/mmtrix/agent/memory_logger_test.rb +85 -0
  583. data/test/mmtrix/agent/method_interrobang_test.rb +31 -0
  584. data/test/mmtrix/agent/method_tracer/class_methods/add_method_tracer_test.rb +122 -0
  585. data/test/mmtrix/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +224 -0
  586. data/test/mmtrix/agent/method_tracer_test.rb +474 -0
  587. data/test/mmtrix/agent/method_visibility_test.rb +90 -0
  588. data/test/mmtrix/agent/mmtrix_service_test.rb +1056 -0
  589. data/test/mmtrix/agent/mock_scope_listener.rb +27 -0
  590. data/test/mmtrix/agent/obfuscator_test.rb +77 -0
  591. data/test/mmtrix/agent/parameter_filtering_test.rb +39 -0
  592. data/test/mmtrix/agent/pipe_channel_manager_test.rb +278 -0
  593. data/test/mmtrix/agent/pipe_service_test.rb +145 -0
  594. data/test/mmtrix/agent/rpm_agent_test.rb +94 -0
  595. data/test/mmtrix/agent/rules_engine_test.rb +136 -0
  596. data/test/mmtrix/agent/sampled_buffer_test.rb +106 -0
  597. data/test/mmtrix/agent/sampler_collection_test.rb +90 -0
  598. data/test/mmtrix/agent/sampler_test.rb +66 -0
  599. data/test/mmtrix/agent/samplers/cpu_sampler_test.rb +51 -0
  600. data/test/mmtrix/agent/samplers/vm_sampler_test.rb +349 -0
  601. data/test/mmtrix/agent/sized_buffer_test.rb +29 -0
  602. data/test/mmtrix/agent/sql_sampler_test.rb +403 -0
  603. data/test/mmtrix/agent/stats_engine/gc_profiler_test.rb +188 -0
  604. data/test/mmtrix/agent/stats_engine/metric_stats_test.rb +347 -0
  605. data/test/mmtrix/agent/stats_engine/samplers_test.rb +98 -0
  606. data/test/mmtrix/agent/stats_engine/stats_hash_test.rb +194 -0
  607. data/test/mmtrix/agent/stats_engine_test.rb +32 -0
  608. data/test/mmtrix/agent/stats_test.rb +189 -0
  609. data/test/mmtrix/agent/synthetics_event_buffer_test.rb +54 -0
  610. data/test/mmtrix/agent/synthetics_monitor_test.rb +93 -0
  611. data/test/mmtrix/agent/system_info_test.rb +119 -0
  612. data/test/mmtrix/agent/threading/agent_thread_test.rb +149 -0
  613. data/test/mmtrix/agent/threading/backtrace_node_test.rb +184 -0
  614. data/test/mmtrix/agent/threading/backtrace_service_test.rb +595 -0
  615. data/test/mmtrix/agent/threading/fake_thread.rb +43 -0
  616. data/test/mmtrix/agent/threading/thread_profile_test.rb +272 -0
  617. data/test/mmtrix/agent/threading/threaded_test_case.rb +18 -0
  618. data/test/mmtrix/agent/traced_method_stack_test.rb +187 -0
  619. data/test/mmtrix/agent/transaction/attributes_test.rb +276 -0
  620. data/test/mmtrix/agent/transaction/developer_mode_sample_buffer_test.rb +75 -0
  621. data/test/mmtrix/agent/transaction/slowest_sample_buffer_test.rb +67 -0
  622. data/test/mmtrix/agent/transaction/synthetics_sample_buffer_test.rb +38 -0
  623. data/test/mmtrix/agent/transaction/trace_node_test.rb +361 -0
  624. data/test/mmtrix/agent/transaction/trace_test.rb +394 -0
  625. data/test/mmtrix/agent/transaction/xray_sample_buffer_test.rb +71 -0
  626. data/test/mmtrix/agent/transaction_event_aggregator_test.rb +426 -0
  627. data/test/mmtrix/agent/transaction_interrobang_test.rb +33 -0
  628. data/test/mmtrix/agent/transaction_metrics_test.rb +113 -0
  629. data/test/mmtrix/agent/transaction_sample_builder_test.rb +215 -0
  630. data/test/mmtrix/agent/transaction_sampler_test.rb +849 -0
  631. data/test/mmtrix/agent/transaction_state_test.rb +122 -0
  632. data/test/mmtrix/agent/transaction_test.rb +1435 -0
  633. data/test/mmtrix/agent/transaction_timings_test.rb +91 -0
  634. data/test/mmtrix/agent/utilization_data_test.rb +147 -0
  635. data/test/mmtrix/agent/vm/monotonic_gc_profiler_test.rb +42 -0
  636. data/test/mmtrix/agent/vm/mri_vm_test.rb +42 -0
  637. data/test/mmtrix/agent/vm/rubinius_vm_test.rb +69 -0
  638. data/test/mmtrix/agent/vm/snapshot_test.rb +13 -0
  639. data/test/mmtrix/agent/vm_test.rb +48 -0
  640. data/test/mmtrix/agent/worker_loop_test.rb +98 -0
  641. data/test/mmtrix/agent_test.rb +471 -0
  642. data/test/mmtrix/cli/commands/deployments_test.rb +131 -0
  643. data/test/mmtrix/cli/commands/install_test.rb +27 -0
  644. data/test/mmtrix/coerce_test.rb +95 -0
  645. data/test/mmtrix/collection_helper_test.rb +151 -0
  646. data/test/mmtrix/control/class_methods_test.rb +48 -0
  647. data/test/mmtrix/control/frameworks/rails_test.rb +29 -0
  648. data/test/mmtrix/control/instance_methods_test.rb +50 -0
  649. data/test/mmtrix/control/instrumentation_test.rb +41 -0
  650. data/test/mmtrix/control_test.rb +169 -0
  651. data/test/mmtrix/data_container_tests.rb +76 -0
  652. data/test/mmtrix/dependency_detection_test.rb +155 -0
  653. data/test/mmtrix/dispatcher_test.rb +59 -0
  654. data/test/mmtrix/environment_report_test.rb +107 -0
  655. data/test/mmtrix/evil_server.rb +55 -0
  656. data/test/mmtrix/fake_collector.rb +385 -0
  657. data/test/mmtrix/fake_external_server.rb +65 -0
  658. data/test/mmtrix/fake_instance_metadata_service.rb +45 -0
  659. data/test/mmtrix/fake_rpm_site.rb +35 -0
  660. data/test/mmtrix/fake_server.rb +104 -0
  661. data/test/mmtrix/filtering_test_app.rb +19 -0
  662. data/test/mmtrix/framework_test.rb +58 -0
  663. data/test/mmtrix/http_client_test_cases.rb +621 -0
  664. data/test/mmtrix/json_wrapper_test.rb +32 -0
  665. data/test/mmtrix/language_support_test.rb +104 -0
  666. data/test/mmtrix/latest_changes_test.rb +45 -0
  667. data/test/mmtrix/license_test.rb +128 -0
  668. data/test/mmtrix/load_test.rb +15 -0
  669. data/test/mmtrix/local_environment_test.rb +103 -0
  670. data/test/mmtrix/marshalling_test_cases.rb +140 -0
  671. data/test/mmtrix/metric_data_test.rb +191 -0
  672. data/test/mmtrix/metric_parser/metric_parser_test.rb +17 -0
  673. data/test/mmtrix/metric_spec_test.rb +145 -0
  674. data/test/mmtrix/multiverse_helpers.rb +283 -0
  675. data/test/mmtrix/noticed_error_test.rb +197 -0
  676. data/test/mmtrix/rack/agent_hooks_test.rb +44 -0
  677. data/test/mmtrix/rack/agent_middleware_test.rb +32 -0
  678. data/test/mmtrix/rack/browser_monitoring_test.rb +197 -0
  679. data/test/mmtrix/rack/deferred_instrumentation_test.rb +33 -0
  680. data/test/mmtrix/rack/developer_mode/segment_summary_test.rb +96 -0
  681. data/test/mmtrix/rack/developer_mode_helper_test.rb +136 -0
  682. data/test/mmtrix/rack/developer_mode_test.rb +93 -0
  683. data/test/mmtrix/rack/error_collector_test.rb +77 -0
  684. data/test/mmtrix/transaction_ignoring_test_cases.rb +102 -0
  685. data/test/mmtrix/version_number_test.rb +101 -0
  686. data/test/multiverse/.gitignore +13 -0
  687. data/test/multiverse/README.md +85 -0
  688. data/test/multiverse/lib/multiverse/color.rb +23 -0
  689. data/test/multiverse/lib/multiverse/envfile.rb +66 -0
  690. data/test/multiverse/lib/multiverse/environment.rb +19 -0
  691. data/test/multiverse/lib/multiverse/output_collector.rb +82 -0
  692. data/test/multiverse/lib/multiverse/runner.rb +117 -0
  693. data/test/multiverse/lib/multiverse/suite.rb +528 -0
  694. data/test/multiverse/script/runner +5 -0
  695. data/test/multiverse/suites/active_record/.gitignore +1 -0
  696. data/test/multiverse/suites/active_record/Envfile +73 -0
  697. data/test/multiverse/suites/active_record/Rakefile +9 -0
  698. data/test/multiverse/suites/active_record/active_record_test.rb +568 -0
  699. data/test/multiverse/suites/active_record/app/models/models.rb +34 -0
  700. data/test/multiverse/suites/active_record/ar_method_aliasing.rb +43 -0
  701. data/test/multiverse/suites/active_record/before_suite.rb +23 -0
  702. data/test/multiverse/suites/active_record/config/database.rb +80 -0
  703. data/test/multiverse/suites/active_record/config/database.yml +19 -0
  704. data/test/multiverse/suites/active_record/config/mmtrix.yml +18 -0
  705. data/test/multiverse/suites/active_record/db/migrate/20141105131800_create_users_and_aliases.rb +21 -0
  706. data/test/multiverse/suites/active_record/db/migrate/20141106082200_create_orders_and_shipments.rb +25 -0
  707. data/test/multiverse/suites/active_record/db/migrate/20150413011200_add_timestamps_to_orders.rb +16 -0
  708. data/test/multiverse/suites/active_record/db/migrate/20150414084400_create_groups.rb +21 -0
  709. data/test/multiverse/suites/activemerchant/Envfile +36 -0
  710. data/test/multiverse/suites/activemerchant/activemerchant_test.rb +62 -0
  711. data/test/multiverse/suites/agent_only/Envfile +4 -0
  712. data/test/multiverse/suites/agent_only/agent_attributes_test.rb +168 -0
  713. data/test/multiverse/suites/agent_only/agent_run_id_handling_test.rb +39 -0
  714. data/test/multiverse/suites/agent_only/audit_log_test.rb +58 -0
  715. data/test/multiverse/suites/agent_only/collector_exception_handling_test.rb +87 -0
  716. data/test/multiverse/suites/agent_only/config/mmtrix.yml +27 -0
  717. data/test/multiverse/suites/agent_only/cross_application_tracing_test.rb +94 -0
  718. data/test/multiverse/suites/agent_only/custom_analytics_events_test.rb +67 -0
  719. data/test/multiverse/suites/agent_only/custom_queue_time_test.rb +60 -0
  720. data/test/multiverse/suites/agent_only/encoding_handling_test.rb +130 -0
  721. data/test/multiverse/suites/agent_only/exclusive_time_test.rb +176 -0
  722. data/test/multiverse/suites/agent_only/harvest_timestamps_test.rb +83 -0
  723. data/test/multiverse/suites/agent_only/http_response_code_test.rb +38 -0
  724. data/test/multiverse/suites/agent_only/keepalive_test.rb +24 -0
  725. data/test/multiverse/suites/agent_only/key_transactions_test.rb +118 -0
  726. data/test/multiverse/suites/agent_only/labels_test.rb +83 -0
  727. data/test/multiverse/suites/agent_only/logging_test.rb +162 -0
  728. data/test/multiverse/suites/agent_only/marshaling_test.rb +88 -0
  729. data/test/multiverse/suites/agent_only/pipe_manager_test.rb +41 -0
  730. data/test/multiverse/suites/agent_only/rename_rule_test.rb +91 -0
  731. data/test/multiverse/suites/agent_only/rum_instrumentation_test.rb +97 -0
  732. data/test/multiverse/suites/agent_only/script/env_change.rb +10 -0
  733. data/test/multiverse/suites/agent_only/script/loading.rb +20 -0
  734. data/test/multiverse/suites/agent_only/script/public_api_when_disabled.rb +68 -0
  735. data/test/multiverse/suites/agent_only/script/symbol_env.rb +10 -0
  736. data/test/multiverse/suites/agent_only/service_timeout_test.rb +39 -0
  737. data/test/multiverse/suites/agent_only/set_transaction_name_test.rb +118 -0
  738. data/test/multiverse/suites/agent_only/ssl_test.rb +21 -0
  739. data/test/multiverse/suites/agent_only/start_up_test.rb +74 -0
  740. data/test/multiverse/suites/agent_only/synthetics_test.rb +131 -0
  741. data/test/multiverse/suites/agent_only/testing_app.rb +58 -0
  742. data/test/multiverse/suites/agent_only/thread_profiling_test.rb +160 -0
  743. data/test/multiverse/suites/agent_only/transaction_ignoring_test.rb +42 -0
  744. data/test/multiverse/suites/agent_only/utilization_data_collection_test.rb +110 -0
  745. data/test/multiverse/suites/agent_only/xray_sessions_test.rb +199 -0
  746. data/test/multiverse/suites/bare/Envfile +3 -0
  747. data/test/multiverse/suites/bare/standalone_instrumentation_test.rb +43 -0
  748. data/test/multiverse/suites/capistrano/Capfile +26 -0
  749. data/test/multiverse/suites/capistrano/Envfile +18 -0
  750. data/test/multiverse/suites/capistrano/config/deploy/production.rb +9 -0
  751. data/test/multiverse/suites/capistrano/config/deploy.rb +14 -0
  752. data/test/multiverse/suites/capistrano/config/mmtrix.yml +21 -0
  753. data/test/multiverse/suites/capistrano/deployment_test.rb +54 -0
  754. data/test/multiverse/suites/capistrano2/Capfile +4 -0
  755. data/test/multiverse/suites/capistrano2/Envfile +8 -0
  756. data/test/multiverse/suites/capistrano2/config/deploy.rb +19 -0
  757. data/test/multiverse/suites/capistrano2/config/mmtrix.yml +21 -0
  758. data/test/multiverse/suites/capistrano2/deployment_test.rb +37 -0
  759. data/test/multiverse/suites/config_file_loading/Envfile +13 -0
  760. data/test/multiverse/suites/config_file_loading/config_file_loading_test.rb +213 -0
  761. data/test/multiverse/suites/curb/Envfile +31 -0
  762. data/test/multiverse/suites/curb/config/mmtrix.yml +18 -0
  763. data/test/multiverse/suites/curb/curb_test.rb +213 -0
  764. data/test/multiverse/suites/datamapper/Envfile +30 -0
  765. data/test/multiverse/suites/datamapper/config/mmtrix.yml +20 -0
  766. data/test/multiverse/suites/datamapper/datamapper_test.rb +335 -0
  767. data/test/multiverse/suites/deferred_instrumentation/Envfile +15 -0
  768. data/test/multiverse/suites/deferred_instrumentation/config/mmtrix.yml +20 -0
  769. data/test/multiverse/suites/deferred_instrumentation/sinatra_test.rb +107 -0
  770. data/test/multiverse/suites/delayed_job/Envfile +102 -0
  771. data/test/multiverse/suites/delayed_job/before_suite.rb +33 -0
  772. data/test/multiverse/suites/delayed_job/config/mmtrix.yml +18 -0
  773. data/test/multiverse/suites/delayed_job/delayed_job_sampler_test.rb +128 -0
  774. data/test/multiverse/suites/delayed_job/unsupported_backend_test.rb +21 -0
  775. data/test/multiverse/suites/excon/Envfile +21 -0
  776. data/test/multiverse/suites/excon/config/mmtrix.yml +18 -0
  777. data/test/multiverse/suites/excon/excon_test.rb +81 -0
  778. data/test/multiverse/suites/grape/Envfile +13 -0
  779. data/test/multiverse/suites/grape/config/mmtrix.yml +19 -0
  780. data/test/multiverse/suites/grape/grape_test.rb +202 -0
  781. data/test/multiverse/suites/grape/grape_test_api.rb +64 -0
  782. data/test/multiverse/suites/grape/grape_versioning_test.rb +64 -0
  783. data/test/multiverse/suites/grape/grape_versioning_test_api.rb +72 -0
  784. data/test/multiverse/suites/grape/unsupported_version_test.rb +28 -0
  785. data/test/multiverse/suites/high_security/Envfile +3 -0
  786. data/test/multiverse/suites/high_security/config/mmtrix.yml +70 -0
  787. data/test/multiverse/suites/high_security/high_security_test.rb +214 -0
  788. data/test/multiverse/suites/httpclient/Envfile +13 -0
  789. data/test/multiverse/suites/httpclient/config/mmtrix.yml +18 -0
  790. data/test/multiverse/suites/httpclient/httpclient_test.rb +75 -0
  791. data/test/multiverse/suites/json/Envfile +25 -0
  792. data/test/multiverse/suites/json/config/mmtrix.yml +22 -0
  793. data/test/multiverse/suites/json/json_test.rb +16 -0
  794. data/test/multiverse/suites/marshalling/Envfile +12 -0
  795. data/test/multiverse/suites/marshalling/config/mmtrix.yml +20 -0
  796. data/test/multiverse/suites/marshalling/marshalling_test.rb +16 -0
  797. data/test/multiverse/suites/memcached/Envfile +52 -0
  798. data/test/multiverse/suites/memcached/dalli_test.rb +89 -0
  799. data/test/multiverse/suites/memcached/memcache_client_test.rb +25 -0
  800. data/test/multiverse/suites/memcached/memcache_test_cases.rb +302 -0
  801. data/test/multiverse/suites/memcached/memcached_test.rb +159 -0
  802. data/test/multiverse/suites/mongo/Envfile +69 -0
  803. data/test/multiverse/suites/mongo/config/mmtrix.yml +18 -0
  804. data/test/multiverse/suites/mongo/helpers/mongo_operation_tests.rb +489 -0
  805. data/test/multiverse/suites/mongo/helpers/mongo_replica_set.rb +97 -0
  806. data/test/multiverse/suites/mongo/helpers/mongo_replica_set_test.rb +82 -0
  807. data/test/multiverse/suites/mongo/helpers/mongo_server.rb +241 -0
  808. data/test/multiverse/suites/mongo/helpers/mongo_server_test.rb +176 -0
  809. data/test/multiverse/suites/mongo/mongo_connection_test.rb +39 -0
  810. data/test/multiverse/suites/mongo/mongo_instrumentation_test.rb +39 -0
  811. data/test/multiverse/suites/mongo/mongo_unsupported_version_test.rb +72 -0
  812. data/test/multiverse/suites/net_http/Envfile +4 -0
  813. data/test/multiverse/suites/net_http/config/mmtrix.yml +18 -0
  814. data/test/multiverse/suites/net_http/net_http_test.rb +111 -0
  815. data/test/multiverse/suites/padrino/Envfile +14 -0
  816. data/test/multiverse/suites/padrino/config/mmtrix.yml +20 -0
  817. data/test/multiverse/suites/padrino/padrino_test.rb +52 -0
  818. data/test/multiverse/suites/rack/Envfile +35 -0
  819. data/test/multiverse/suites/rack/builder_map_test.rb +128 -0
  820. data/test/multiverse/suites/rack/example_app.rb +100 -0
  821. data/test/multiverse/suites/rack/http_response_code_test.rb +50 -0
  822. data/test/multiverse/suites/rack/nested_non_rack_app_test.rb +66 -0
  823. data/test/multiverse/suites/rack/rack_auto_instrumentation_test.rb +144 -0
  824. data/test/multiverse/suites/rack/rack_cascade_test.rb +45 -0
  825. data/test/multiverse/suites/rack/rack_env_mutation_test.rb +53 -0
  826. data/test/multiverse/suites/rack/rack_parameter_filtering_test.rb +49 -0
  827. data/test/multiverse/suites/rack/rack_unsupported_version_test.rb +43 -0
  828. data/test/multiverse/suites/rack/url_map_test.rb +117 -0
  829. data/test/multiverse/suites/rails/Envfile +61 -0
  830. data/test/multiverse/suites/rails/action_controller_live_rum_test.rb +39 -0
  831. data/test/multiverse/suites/rails/activejob_test.rb +152 -0
  832. data/test/multiverse/suites/rails/app/views/foos/_foo.html.haml +1 -0
  833. data/test/multiverse/suites/rails/app/views/views/_a_partial.html.erb +2 -0
  834. data/test/multiverse/suites/rails/app/views/views/_mid_partial.html.erb +1 -0
  835. data/test/multiverse/suites/rails/app/views/views/_top_partial.html.erb +3 -0
  836. data/test/multiverse/suites/rails/app/views/views/deep_partial.html.erb +3 -0
  837. data/test/multiverse/suites/rails/app/views/views/haml_view.html.haml +6 -0
  838. data/test/multiverse/suites/rails/app/views/views/index.html.erb +4 -0
  839. data/test/multiverse/suites/rails/app.rb +44 -0
  840. data/test/multiverse/suites/rails/bad_instrumentation_test.rb +29 -0
  841. data/test/multiverse/suites/rails/config/mmtrix.yml +30 -0
  842. data/test/multiverse/suites/rails/dummy.txt +1 -0
  843. data/test/multiverse/suites/rails/error_tracing_test.rb +322 -0
  844. data/test/multiverse/suites/rails/gc_instrumentation_test.rb +93 -0
  845. data/test/multiverse/suites/rails/ignore_test.rb +79 -0
  846. data/test/multiverse/suites/rails/middleware_instrumentation_test.rb +41 -0
  847. data/test/multiverse/suites/rails/middlewares.rb +19 -0
  848. data/test/multiverse/suites/rails/parameter_capture_test.rb +299 -0
  849. data/test/multiverse/suites/rails/queue_time_test.rb +89 -0
  850. data/test/multiverse/suites/rails/rails2_app/app/controllers/application.rb +7 -0
  851. data/test/multiverse/suites/rails/rails2_app/config/boot.rb +127 -0
  852. data/test/multiverse/suites/rails/rails2_app/config/database.yml +18 -0
  853. data/test/multiverse/suites/rails/rails2_app/config/environment.rb +16 -0
  854. data/test/multiverse/suites/rails/rails2_app/config/environments/development.rb +10 -0
  855. data/test/multiverse/suites/rails/rails2_app/config/initializers/load_mmtrix_rpm.rb +9 -0
  856. data/test/multiverse/suites/rails/rails2_app/config/preinitializer.rb +25 -0
  857. data/test/multiverse/suites/rails/rails2_app/config/routes.rb +19 -0
  858. data/test/multiverse/suites/rails/rails2_app/db/schema.rb +5 -0
  859. data/test/multiverse/suites/rails/rails3_app/app_rails3_plus.rb +92 -0
  860. data/test/multiverse/suites/rails/request_statistics_test.rb +192 -0
  861. data/test/multiverse/suites/rails/transaction_ignoring_test.rb +41 -0
  862. data/test/multiverse/suites/rails/view_instrumentation_test.rb +254 -0
  863. data/test/multiverse/suites/resque/Envfile +11 -0
  864. data/test/multiverse/suites/resque/Rakefile +3 -0
  865. data/test/multiverse/suites/resque/config/mmtrix.yml +19 -0
  866. data/test/multiverse/suites/resque/instrumentation_test.rb +155 -0
  867. data/test/multiverse/suites/resque/resque_marshalling_test.rb +53 -0
  868. data/test/multiverse/suites/sequel/Envfile +34 -0
  869. data/test/multiverse/suites/sequel/config/mmtrix.yml +18 -0
  870. data/test/multiverse/suites/sequel/database.rb +57 -0
  871. data/test/multiverse/suites/sequel/sequel_extension_test.rb +142 -0
  872. data/test/multiverse/suites/sequel/sequel_helpers.rb +62 -0
  873. data/test/multiverse/suites/sequel/sequel_plugin_test.rb +230 -0
  874. data/test/multiverse/suites/sequel/sequel_safety_test.rb +30 -0
  875. data/test/multiverse/suites/sidekiq/Envfile +31 -0
  876. data/test/multiverse/suites/sidekiq/after_suite.rb +16 -0
  877. data/test/multiverse/suites/sidekiq/config/mmtrix.yml +20 -0
  878. data/test/multiverse/suites/sidekiq/log/.gitkeep +0 -0
  879. data/test/multiverse/suites/sidekiq/sidekiq_instrumentation_test.rb +219 -0
  880. data/test/multiverse/suites/sidekiq/sidekiq_server.rb +31 -0
  881. data/test/multiverse/suites/sidekiq/test_worker.rb +71 -0
  882. data/test/multiverse/suites/sinatra/Envfile +17 -0
  883. data/test/multiverse/suites/sinatra/config/mmtrix.yml +21 -0
  884. data/test/multiverse/suites/sinatra/ignoring_test.rb +208 -0
  885. data/test/multiverse/suites/sinatra/nested_middleware_test.rb +39 -0
  886. data/test/multiverse/suites/sinatra/sinatra_classic_test.rb +99 -0
  887. data/test/multiverse/suites/sinatra/sinatra_error_tracing_test.rb +45 -0
  888. data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +96 -0
  889. data/test/multiverse/suites/sinatra/sinatra_modular_test.rb +89 -0
  890. data/test/multiverse/suites/sinatra/sinatra_parameter_capture_test.rb +65 -0
  891. data/test/multiverse/suites/sinatra/sinatra_routes_test.rb +49 -0
  892. data/test/multiverse/suites/sinatra/sinatra_test_cases.rb +137 -0
  893. data/test/multiverse/suites/typhoeus/Envfile +57 -0
  894. data/test/multiverse/suites/typhoeus/config/mmtrix.yml +18 -0
  895. data/test/multiverse/suites/typhoeus/typhoeus_test.rb +144 -0
  896. data/test/multiverse/suites/yajl/Envfile +13 -0
  897. data/test/multiverse/suites/yajl/config/mmtrix.yml +21 -0
  898. data/test/multiverse/suites/yajl/yajl_test.rb +18 -0
  899. data/test/multiverse/test/multiverse_test.rb +59 -0
  900. data/test/multiverse/test/suite_examples/one/a/Envfile +3 -0
  901. data/test/multiverse/test/suite_examples/one/a/a_test.rb +14 -0
  902. data/test/multiverse/test/suite_examples/one/a/config/mmtrix.yml +22 -0
  903. data/test/multiverse/test/suite_examples/one/b/Envfile +3 -0
  904. data/test/multiverse/test/suite_examples/one/b/b_test.rb +14 -0
  905. data/test/multiverse/test/suite_examples/one/b/config/mmtrix.yml +22 -0
  906. data/test/multiverse/test/suite_examples/three/a/Envfile +2 -0
  907. data/test/multiverse/test/suite_examples/three/a/fail_test.rb +10 -0
  908. data/test/multiverse/test/suite_examples/three/b/Envfile +2 -0
  909. data/test/multiverse/test/suite_examples/three/b/win_test.rb +10 -0
  910. data/test/multiverse/test/suite_examples/two/a/Envfile +1 -0
  911. data/test/multiverse/test/suite_examples/two/a/fail_test.rb +10 -0
  912. data/test/performance/README.md +182 -0
  913. data/test/performance/lib/performance/baseline.rb +36 -0
  914. data/test/performance/lib/performance/baseline_compare_reporter.rb +103 -0
  915. data/test/performance/lib/performance/baseline_save_reporter.rb +24 -0
  916. data/test/performance/lib/performance/console_reporter.rb +66 -0
  917. data/test/performance/lib/performance/formatting_helpers.rb +22 -0
  918. data/test/performance/lib/performance/hako_client.rb +31 -0
  919. data/test/performance/lib/performance/hako_reporter.rb +26 -0
  920. data/test/performance/lib/performance/instrumentation/cpu_usage.rb +26 -0
  921. data/test/performance/lib/performance/instrumentation/gc_stats.rb +58 -0
  922. data/test/performance/lib/performance/instrumentation/perf_tools.rb +30 -0
  923. data/test/performance/lib/performance/instrumentation/stackprof.rb +46 -0
  924. data/test/performance/lib/performance/instrumentor.rb +96 -0
  925. data/test/performance/lib/performance/json_reporter.rb +15 -0
  926. data/test/performance/lib/performance/platform.rb +37 -0
  927. data/test/performance/lib/performance/reporting.rb +36 -0
  928. data/test/performance/lib/performance/result.rb +104 -0
  929. data/test/performance/lib/performance/runner.rb +221 -0
  930. data/test/performance/lib/performance/table.rb +105 -0
  931. data/test/performance/lib/performance/test_case.rb +152 -0
  932. data/test/performance/lib/performance/timer.rb +40 -0
  933. data/test/performance/lib/performance.rb +38 -0
  934. data/test/performance/script/baselines +102 -0
  935. data/test/performance/script/mega-runner +37 -0
  936. data/test/performance/script/runner +133 -0
  937. data/test/performance/suites/active_record.rb +47 -0
  938. data/test/performance/suites/agent_attributes.rb +62 -0
  939. data/test/performance/suites/config.rb +35 -0
  940. data/test/performance/suites/marshalling.rb +156 -0
  941. data/test/performance/suites/queue_time.rb +21 -0
  942. data/test/performance/suites/rack_middleware.rb +136 -0
  943. data/test/performance/suites/rum_autoinsertion.rb +75 -0
  944. data/test/performance/suites/sql_obfuscation.rb +30 -0
  945. data/test/performance/suites/startup.rb +12 -0
  946. data/test/performance/suites/stats_hash.rb +31 -0
  947. data/test/performance/suites/thread_profiling.rb +116 -0
  948. data/test/performance/suites/trace_execution_scoped.rb +32 -0
  949. data/test/performance/suites/transaction_tracing.rb +106 -0
  950. data/test/script/build_test_gem.sh +57 -0
  951. data/test/script/ci.sh +170 -0
  952. data/test/script/ci_agent-tests_runner.sh +82 -0
  953. data/test/script/ci_bench.sh +52 -0
  954. data/test/script/ci_multiverse_runner.sh +63 -0
  955. data/test/script/path_hash.rb +49 -0
  956. data/test/test_helper.rb +266 -0
  957. data/ui/helpers/developer_mode_helper.rb +324 -0
  958. data/ui/helpers/google_pie_chart.rb +53 -0
  959. data/ui/views/layouts/mmtrix_default.rhtml +48 -0
  960. data/ui/views/mmtrix/_explain_plans.rhtml +27 -0
  961. data/ui/views/mmtrix/_sample.rhtml +20 -0
  962. data/ui/views/mmtrix/_segment.rhtml +28 -0
  963. data/ui/views/mmtrix/_segment_limit_message.rhtml +1 -0
  964. data/ui/views/mmtrix/_segment_row.rhtml +12 -0
  965. data/ui/views/mmtrix/_show_sample_detail.rhtml +24 -0
  966. data/ui/views/mmtrix/_show_sample_sql.rhtml +24 -0
  967. data/ui/views/mmtrix/_show_sample_summary.rhtml +3 -0
  968. data/ui/views/mmtrix/_sql_row.rhtml +16 -0
  969. data/ui/views/mmtrix/_stack_trace.rhtml +15 -0
  970. data/ui/views/mmtrix/_table.rhtml +12 -0
  971. data/ui/views/mmtrix/explain_sql.rhtml +43 -0
  972. data/ui/views/mmtrix/file/images/arrow-close.png +0 -0
  973. data/ui/views/mmtrix/file/images/arrow-open.png +0 -0
  974. data/ui/views/mmtrix/file/images/blue_bar.gif +0 -0
  975. data/ui/views/mmtrix/file/images/file_icon.png +0 -0
  976. data/ui/views/mmtrix/file/images/gray_bar.gif +0 -0
  977. data/ui/views/mmtrix/file/images/mmtrix-rpm-desktop.gif +0 -0
  978. data/ui/views/mmtrix/file/images/mmtrix_rpm_desktop.gif +0 -0
  979. data/ui/views/mmtrix/file/images/textmate.png +0 -0
  980. data/ui/views/mmtrix/file/javascript/jquery-1.4.2.js +6243 -0
  981. data/ui/views/mmtrix/file/javascript/transaction_sample.js +123 -0
  982. data/ui/views/mmtrix/file/stylesheets/style.css +490 -0
  983. data/ui/views/mmtrix/index.rhtml +70 -0
  984. data/ui/views/mmtrix/sample_not_found.rhtml +2 -0
  985. data/ui/views/mmtrix/show_sample.rhtml +81 -0
  986. data/ui/views/mmtrix/threads.rhtml +45 -0
  987. data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection/version.rb +7 -0
  988. data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection.rb +122 -0
  989. data/vendor/gems/metric_parser-0.1.0.pre1/.specification +116 -0
  990. data/vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb +5 -0
  991. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/action_mailer.rb +18 -0
  992. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/active_merchant.rb +35 -0
  993. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/active_record.rb +37 -0
  994. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/apdex.rb +93 -0
  995. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/background_transaction.rb +11 -0
  996. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/client.rb +50 -0
  997. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/controller.rb +71 -0
  998. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/controller_cpu.rb +47 -0
  999. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/controller_ext.rb +21 -0
  1000. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/database.rb +52 -0
  1001. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/database_pool.rb +28 -0
  1002. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/dot_net.rb +32 -0
  1003. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/dot_net_parser.rb +21 -0
  1004. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/errors.rb +15 -0
  1005. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/external.rb +59 -0
  1006. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/frontend.rb +44 -0
  1007. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/gc.rb +24 -0
  1008. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/hibernate_session.rb +11 -0
  1009. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/java.rb +35 -0
  1010. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/java_parser.rb +21 -0
  1011. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/jsp.rb +38 -0
  1012. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/jsp_tag.rb +11 -0
  1013. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/mem_cache.rb +59 -0
  1014. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/metric_parser.rb +138 -0
  1015. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/middleware.rb +34 -0
  1016. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/nested.rb +24 -0
  1017. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/orm.rb +31 -0
  1018. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/other_transaction.rb +44 -0
  1019. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/servlet.rb +11 -0
  1020. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/servlet_context_listener.rb +11 -0
  1021. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/servlet_filter.rb +11 -0
  1022. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/servlet_init.rb +11 -0
  1023. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/solr.rb +31 -0
  1024. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/solr_request_handler.rb +19 -0
  1025. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/spring.rb +58 -0
  1026. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/spring_controller.rb +10 -0
  1027. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/spring_view.rb +10 -0
  1028. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/struts_action.rb +24 -0
  1029. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/struts_result.rb +24 -0
  1030. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/version.rb +9 -0
  1031. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/view.rb +74 -0
  1032. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/web_frontend.rb +22 -0
  1033. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/web_service.rb +18 -0
  1034. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/web_transaction.rb +137 -0
  1035. data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser.rb +70 -0
  1036. metadata +1263 -0
metadata ADDED
@@ -0,0 +1,1263 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mmtrix_rpm
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Lotus Song
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-07-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 10.1.0
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 10.1.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: minitest
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 4.7.5
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: 4.7.5
41
+ - !ruby/object:Gem::Dependency
42
+ name: mocha
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: 0.13.0
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 0.13.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: yard
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rails
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ~>
74
+ - !ruby/object:Gem::Version
75
+ version: 3.2.13
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ~>
81
+ - !ruby/object:Gem::Version
82
+ version: 3.2.13
83
+ - !ruby/object:Gem::Dependency
84
+ name: pry
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ~>
88
+ - !ruby/object:Gem::Version
89
+ version: 0.9.12
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ~>
95
+ - !ruby/object:Gem::Version
96
+ version: 0.9.12
97
+ - !ruby/object:Gem::Dependency
98
+ name: hometown
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ~>
102
+ - !ruby/object:Gem::Version
103
+ version: 0.2.5
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ~>
109
+ - !ruby/object:Gem::Version
110
+ version: 0.2.5
111
+ - !ruby/object:Gem::Dependency
112
+ name: guard
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - '>='
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: guard-minitest
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - '>='
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - '>='
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: rb-fsevent
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - '>='
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - '>='
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: i18n
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - '='
158
+ - !ruby/object:Gem::Version
159
+ version: 0.6.11
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - '='
165
+ - !ruby/object:Gem::Version
166
+ version: 0.6.11
167
+ - !ruby/object:Gem::Dependency
168
+ name: sqlite3
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - '>='
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - '>='
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ description: |
182
+ Mmtrix is a performance management system, developed by Mmtrix,
183
+ Inc (http://www.mmtrix.com). Mmtrix provides you with deep
184
+ information about the performance of your web application as it runs
185
+ in production. The Mmtrix Ruby Agent is dual-purposed as a either a
186
+ Gem or plugin, hosted on
187
+ http://github.com/mmtrix/rpm/
188
+ email: support@mmtrix.com
189
+ executables:
190
+ - mongrel_rpm
191
+ - mmtrix_cmd
192
+ - mmtrix
193
+ - nrdebug
194
+ extensions: []
195
+ extra_rdoc_files:
196
+ - CHANGELOG
197
+ - LICENSE
198
+ - README.md
199
+ - GUIDELINES_FOR_CONTRIBUTING.md
200
+ - mmtrix.yml
201
+ files:
202
+ - .gitignore
203
+ - .project
204
+ - .travis.yml
205
+ - .yardopts
206
+ - CHANGELOG
207
+ - GUIDELINES_FOR_CONTRIBUTING.md
208
+ - Gemfile
209
+ - Guardfile
210
+ - LICENSE
211
+ - README.md
212
+ - Rakefile
213
+ - bin/mmtrix
214
+ - bin/mmtrix_cmd
215
+ - bin/mongrel_rpm
216
+ - bin/nrdebug
217
+ - cert/cacert.pem
218
+ - config.dot
219
+ - config/database.yml
220
+ - init.rb
221
+ - install.rb
222
+ - lib/conditional_vendored_dependency_detection.rb
223
+ - lib/conditional_vendored_metric_parser.rb
224
+ - lib/mmtrix/agent.rb
225
+ - lib/mmtrix/agent/agent.rb
226
+ - lib/mmtrix/agent/agent_logger.rb
227
+ - lib/mmtrix/agent/attribute_filter.rb
228
+ - lib/mmtrix/agent/attribute_processing.rb
229
+ - lib/mmtrix/agent/audit_logger.rb
230
+ - lib/mmtrix/agent/autostart.rb
231
+ - lib/mmtrix/agent/aws_info.rb
232
+ - lib/mmtrix/agent/busy_calculator.rb
233
+ - lib/mmtrix/agent/chained_call.rb
234
+ - lib/mmtrix/agent/commands/agent_command.rb
235
+ - lib/mmtrix/agent/commands/agent_command_router.rb
236
+ - lib/mmtrix/agent/commands/thread_profiler_session.rb
237
+ - lib/mmtrix/agent/commands/xray_session.rb
238
+ - lib/mmtrix/agent/commands/xray_session_collection.rb
239
+ - lib/mmtrix/agent/configuration.rb
240
+ - lib/mmtrix/agent/configuration/default_source.rb
241
+ - lib/mmtrix/agent/configuration/dotted_hash.rb
242
+ - lib/mmtrix/agent/configuration/environment_source.rb
243
+ - lib/mmtrix/agent/configuration/high_security_source.rb
244
+ - lib/mmtrix/agent/configuration/manager.rb
245
+ - lib/mmtrix/agent/configuration/manual_source.rb
246
+ - lib/mmtrix/agent/configuration/mask_defaults.rb
247
+ - lib/mmtrix/agent/configuration/server_source.rb
248
+ - lib/mmtrix/agent/configuration/yaml_source.rb
249
+ - lib/mmtrix/agent/cross_app_monitor.rb
250
+ - lib/mmtrix/agent/cross_app_tracing.rb
251
+ - lib/mmtrix/agent/custom_event_aggregator.rb
252
+ - lib/mmtrix/agent/database.rb
253
+ - lib/mmtrix/agent/database/obfuscation_helpers.rb
254
+ - lib/mmtrix/agent/database/obfuscator.rb
255
+ - lib/mmtrix/agent/database/postgres_explain_obfuscator.rb
256
+ - lib/mmtrix/agent/datastores.rb
257
+ - lib/mmtrix/agent/datastores/metric_helper.rb
258
+ - lib/mmtrix/agent/datastores/mongo.rb
259
+ - lib/mmtrix/agent/datastores/mongo/metric_translator.rb
260
+ - lib/mmtrix/agent/datastores/mongo/obfuscator.rb
261
+ - lib/mmtrix/agent/datastores/mongo/statement_formatter.rb
262
+ - lib/mmtrix/agent/deprecator.rb
263
+ - lib/mmtrix/agent/encoding_normalizer.rb
264
+ - lib/mmtrix/agent/error_collector.rb
265
+ - lib/mmtrix/agent/event_buffer.rb
266
+ - lib/mmtrix/agent/event_listener.rb
267
+ - lib/mmtrix/agent/event_loop.rb
268
+ - lib/mmtrix/agent/harvester.rb
269
+ - lib/mmtrix/agent/hash_extensions.rb
270
+ - lib/mmtrix/agent/hostname.rb
271
+ - lib/mmtrix/agent/http_clients/curb_wrappers.rb
272
+ - lib/mmtrix/agent/http_clients/excon_wrappers.rb
273
+ - lib/mmtrix/agent/http_clients/httpclient_wrappers.rb
274
+ - lib/mmtrix/agent/http_clients/net_http_wrappers.rb
275
+ - lib/mmtrix/agent/http_clients/typhoeus_wrappers.rb
276
+ - lib/mmtrix/agent/http_clients/uri_util.rb
277
+ - lib/mmtrix/agent/inbound_request_monitor.rb
278
+ - lib/mmtrix/agent/instrumentation.rb
279
+ - lib/mmtrix/agent/instrumentation/action_controller_subscriber.rb
280
+ - lib/mmtrix/agent/instrumentation/action_view_subscriber.rb
281
+ - lib/mmtrix/agent/instrumentation/active_job.rb
282
+ - lib/mmtrix/agent/instrumentation/active_merchant.rb
283
+ - lib/mmtrix/agent/instrumentation/active_record.rb
284
+ - lib/mmtrix/agent/instrumentation/active_record_4.rb
285
+ - lib/mmtrix/agent/instrumentation/active_record_helper.rb
286
+ - lib/mmtrix/agent/instrumentation/active_record_subscriber.rb
287
+ - lib/mmtrix/agent/instrumentation/acts_as_solr.rb
288
+ - lib/mmtrix/agent/instrumentation/authlogic.rb
289
+ - lib/mmtrix/agent/instrumentation/controller_instrumentation.rb
290
+ - lib/mmtrix/agent/instrumentation/curb.rb
291
+ - lib/mmtrix/agent/instrumentation/data_mapper.rb
292
+ - lib/mmtrix/agent/instrumentation/delayed_job_instrumentation.rb
293
+ - lib/mmtrix/agent/instrumentation/evented_subscriber.rb
294
+ - lib/mmtrix/agent/instrumentation/excon.rb
295
+ - lib/mmtrix/agent/instrumentation/excon/connection.rb
296
+ - lib/mmtrix/agent/instrumentation/excon/middleware.rb
297
+ - lib/mmtrix/agent/instrumentation/grape.rb
298
+ - lib/mmtrix/agent/instrumentation/httpclient.rb
299
+ - lib/mmtrix/agent/instrumentation/ignore_actions.rb
300
+ - lib/mmtrix/agent/instrumentation/memcache.rb
301
+ - lib/mmtrix/agent/instrumentation/merb/controller.rb
302
+ - lib/mmtrix/agent/instrumentation/merb/errors.rb
303
+ - lib/mmtrix/agent/instrumentation/metric_frame.rb
304
+ - lib/mmtrix/agent/instrumentation/middleware_proxy.rb
305
+ - lib/mmtrix/agent/instrumentation/middleware_tracing.rb
306
+ - lib/mmtrix/agent/instrumentation/mongo.rb
307
+ - lib/mmtrix/agent/instrumentation/net.rb
308
+ - lib/mmtrix/agent/instrumentation/padrino.rb
309
+ - lib/mmtrix/agent/instrumentation/passenger_instrumentation.rb
310
+ - lib/mmtrix/agent/instrumentation/queue_time.rb
311
+ - lib/mmtrix/agent/instrumentation/rack.rb
312
+ - lib/mmtrix/agent/instrumentation/rails/action_controller.rb
313
+ - lib/mmtrix/agent/instrumentation/rails/action_web_service.rb
314
+ - lib/mmtrix/agent/instrumentation/rails/errors.rb
315
+ - lib/mmtrix/agent/instrumentation/rails3/action_controller.rb
316
+ - lib/mmtrix/agent/instrumentation/rails3/errors.rb
317
+ - lib/mmtrix/agent/instrumentation/rails4/action_controller.rb
318
+ - lib/mmtrix/agent/instrumentation/rails4/action_view.rb
319
+ - lib/mmtrix/agent/instrumentation/rails4/errors.rb
320
+ - lib/mmtrix/agent/instrumentation/rails_middleware.rb
321
+ - lib/mmtrix/agent/instrumentation/rainbows_instrumentation.rb
322
+ - lib/mmtrix/agent/instrumentation/resque.rb
323
+ - lib/mmtrix/agent/instrumentation/rubyprof.rb
324
+ - lib/mmtrix/agent/instrumentation/sequel.rb
325
+ - lib/mmtrix/agent/instrumentation/sequel_helper.rb
326
+ - lib/mmtrix/agent/instrumentation/sidekiq.rb
327
+ - lib/mmtrix/agent/instrumentation/sinatra.rb
328
+ - lib/mmtrix/agent/instrumentation/sinatra/ignorer.rb
329
+ - lib/mmtrix/agent/instrumentation/sinatra/transaction_namer.rb
330
+ - lib/mmtrix/agent/instrumentation/sunspot.rb
331
+ - lib/mmtrix/agent/instrumentation/typhoeus.rb
332
+ - lib/mmtrix/agent/internal_agent_error.rb
333
+ - lib/mmtrix/agent/javascript_instrumentor.rb
334
+ - lib/mmtrix/agent/log_once.rb
335
+ - lib/mmtrix/agent/memory_logger.rb
336
+ - lib/mmtrix/agent/method_tracer.rb
337
+ - lib/mmtrix/agent/method_tracer_helpers.rb
338
+ - lib/mmtrix/agent/mmtrix_service.rb
339
+ - lib/mmtrix/agent/mmtrix_service/encoders.rb
340
+ - lib/mmtrix/agent/mmtrix_service/json_marshaller.rb
341
+ - lib/mmtrix/agent/mmtrix_service/marshaller.rb
342
+ - lib/mmtrix/agent/mmtrix_service/pruby_marshaller.rb
343
+ - lib/mmtrix/agent/null_logger.rb
344
+ - lib/mmtrix/agent/obfuscator.rb
345
+ - lib/mmtrix/agent/parameter_filtering.rb
346
+ - lib/mmtrix/agent/pipe_channel_manager.rb
347
+ - lib/mmtrix/agent/pipe_service.rb
348
+ - lib/mmtrix/agent/rules_engine.rb
349
+ - lib/mmtrix/agent/rules_engine/replacement_rule.rb
350
+ - lib/mmtrix/agent/rules_engine/segment_terms_rule.rb
351
+ - lib/mmtrix/agent/sampled_buffer.rb
352
+ - lib/mmtrix/agent/sampler.rb
353
+ - lib/mmtrix/agent/sampler_collection.rb
354
+ - lib/mmtrix/agent/samplers/cpu_sampler.rb
355
+ - lib/mmtrix/agent/samplers/delayed_job_sampler.rb
356
+ - lib/mmtrix/agent/samplers/memory_sampler.rb
357
+ - lib/mmtrix/agent/samplers/object_sampler.rb
358
+ - lib/mmtrix/agent/samplers/vm_sampler.rb
359
+ - lib/mmtrix/agent/sized_buffer.rb
360
+ - lib/mmtrix/agent/sql_sampler.rb
361
+ - lib/mmtrix/agent/stats.rb
362
+ - lib/mmtrix/agent/stats_engine.rb
363
+ - lib/mmtrix/agent/stats_engine/gc_profiler.rb
364
+ - lib/mmtrix/agent/stats_engine/metric_stats.rb
365
+ - lib/mmtrix/agent/stats_engine/samplers.rb
366
+ - lib/mmtrix/agent/stats_engine/stats_hash.rb
367
+ - lib/mmtrix/agent/supported_versions.rb
368
+ - lib/mmtrix/agent/synthetics_event_buffer.rb
369
+ - lib/mmtrix/agent/synthetics_monitor.rb
370
+ - lib/mmtrix/agent/system_info.rb
371
+ - lib/mmtrix/agent/threading/agent_thread.rb
372
+ - lib/mmtrix/agent/threading/backtrace_node.rb
373
+ - lib/mmtrix/agent/threading/backtrace_service.rb
374
+ - lib/mmtrix/agent/threading/thread_profile.rb
375
+ - lib/mmtrix/agent/traced_method_stack.rb
376
+ - lib/mmtrix/agent/transaction.rb
377
+ - lib/mmtrix/agent/transaction/attributes.rb
378
+ - lib/mmtrix/agent/transaction/developer_mode_sample_buffer.rb
379
+ - lib/mmtrix/agent/transaction/slowest_sample_buffer.rb
380
+ - lib/mmtrix/agent/transaction/synthetics_sample_buffer.rb
381
+ - lib/mmtrix/agent/transaction/trace.rb
382
+ - lib/mmtrix/agent/transaction/trace_node.rb
383
+ - lib/mmtrix/agent/transaction/transaction_sample_buffer.rb
384
+ - lib/mmtrix/agent/transaction/xray_sample_buffer.rb
385
+ - lib/mmtrix/agent/transaction_event_aggregator.rb
386
+ - lib/mmtrix/agent/transaction_metrics.rb
387
+ - lib/mmtrix/agent/transaction_sample_builder.rb
388
+ - lib/mmtrix/agent/transaction_sampler.rb
389
+ - lib/mmtrix/agent/transaction_state.rb
390
+ - lib/mmtrix/agent/transaction_timings.rb
391
+ - lib/mmtrix/agent/utilization_data.rb
392
+ - lib/mmtrix/agent/vm.rb
393
+ - lib/mmtrix/agent/vm/jruby_vm.rb
394
+ - lib/mmtrix/agent/vm/monotonic_gc_profiler.rb
395
+ - lib/mmtrix/agent/vm/mri_vm.rb
396
+ - lib/mmtrix/agent/vm/rubinius_vm.rb
397
+ - lib/mmtrix/agent/vm/snapshot.rb
398
+ - lib/mmtrix/agent/worker_loop.rb
399
+ - lib/mmtrix/build.rb
400
+ - lib/mmtrix/cli/command.rb
401
+ - lib/mmtrix/cli/commands/deployments.rb
402
+ - lib/mmtrix/cli/commands/install.rb
403
+ - lib/mmtrix/coerce.rb
404
+ - lib/mmtrix/collection_helper.rb
405
+ - lib/mmtrix/control.rb
406
+ - lib/mmtrix/control/class_methods.rb
407
+ - lib/mmtrix/control/frameworks.rb
408
+ - lib/mmtrix/control/frameworks/external.rb
409
+ - lib/mmtrix/control/frameworks/merb.rb
410
+ - lib/mmtrix/control/frameworks/rails.rb
411
+ - lib/mmtrix/control/frameworks/rails3.rb
412
+ - lib/mmtrix/control/frameworks/rails4.rb
413
+ - lib/mmtrix/control/frameworks/ruby.rb
414
+ - lib/mmtrix/control/frameworks/sinatra.rb
415
+ - lib/mmtrix/control/instance_methods.rb
416
+ - lib/mmtrix/control/instrumentation.rb
417
+ - lib/mmtrix/control/server_methods.rb
418
+ - lib/mmtrix/delayed_job_injection.rb
419
+ - lib/mmtrix/environment_report.rb
420
+ - lib/mmtrix/helper.rb
421
+ - lib/mmtrix/json_wrapper.rb
422
+ - lib/mmtrix/language_support.rb
423
+ - lib/mmtrix/latest_changes.rb
424
+ - lib/mmtrix/local_environment.rb
425
+ - lib/mmtrix/merbtasks.rb
426
+ - lib/mmtrix/metric_data.rb
427
+ - lib/mmtrix/metric_spec.rb
428
+ - lib/mmtrix/metrics.rb
429
+ - lib/mmtrix/noticed_error.rb
430
+ - lib/mmtrix/okjson.rb
431
+ - lib/mmtrix/rack.rb
432
+ - lib/mmtrix/rack/agent_hooks.rb
433
+ - lib/mmtrix/rack/agent_middleware.rb
434
+ - lib/mmtrix/rack/browser_monitoring.rb
435
+ - lib/mmtrix/rack/developer_mode.rb
436
+ - lib/mmtrix/rack/developer_mode/segment_summary.rb
437
+ - lib/mmtrix/rack/error_collector.rb
438
+ - lib/mmtrix/recipes.rb
439
+ - lib/mmtrix/recipes/capistrano3.rb
440
+ - lib/mmtrix/recipes/capistrano_legacy.rb
441
+ - lib/mmtrix/timer_lib.rb
442
+ - lib/mmtrix/version.rb
443
+ - lib/mmtrix_rpm.rb
444
+ - lib/sequel/extensions/mmtrix_instrumentation.rb
445
+ - lib/sequel/plugins/mmtrix_instrumentation.rb
446
+ - lib/tasks/all.rb
447
+ - lib/tasks/config.html.erb
448
+ - lib/tasks/config.rake
449
+ - lib/tasks/config.text.erb
450
+ - lib/tasks/install.rake
451
+ - lib/tasks/multiverse.rake
452
+ - lib/tasks/multiverse.rb
453
+ - lib/tasks/tests.rake
454
+ - lib/tasks/versions.html.erb
455
+ - lib/tasks/versions.rake
456
+ - lib/tasks/versions.txt.erb
457
+ - mmtrix.yml
458
+ - mmtrix_rpm.gemspec
459
+ - recipes/mmtrix.rb
460
+ - test/agent_helper.rb
461
+ - test/config/mmtrix.yml
462
+ - test/config/test.cert.crt
463
+ - test/config/test.cert.key
464
+ - test/config/test_control.rb
465
+ - test/environments/.gitignore
466
+ - test/environments/lib/environments/runner.rb
467
+ - test/environments/norails/Gemfile
468
+ - test/environments/norails/Rakefile
469
+ - test/environments/rails21/Gemfile
470
+ - test/environments/rails21/Rakefile
471
+ - test/environments/rails21/app/controllers/application.rb
472
+ - test/environments/rails21/config/boot.rb
473
+ - test/environments/rails21/config/database.yml
474
+ - test/environments/rails21/config/environment.rb
475
+ - test/environments/rails21/config/environments/development.rb
476
+ - test/environments/rails21/config/environments/production.rb
477
+ - test/environments/rails21/config/environments/test.rb
478
+ - test/environments/rails21/config/routes.rb
479
+ - test/environments/rails21/db/schema.rb
480
+ - test/environments/rails22/Gemfile
481
+ - test/environments/rails22/Rakefile
482
+ - test/environments/rails22/app/controllers/application.rb
483
+ - test/environments/rails22/config/boot.rb
484
+ - test/environments/rails22/config/database.yml
485
+ - test/environments/rails22/config/environment.rb
486
+ - test/environments/rails22/config/environments/development.rb
487
+ - test/environments/rails22/config/environments/production.rb
488
+ - test/environments/rails22/config/environments/test.rb
489
+ - test/environments/rails22/config/routes.rb
490
+ - test/environments/rails22/db/schema.rb
491
+ - test/environments/rails23/Gemfile
492
+ - test/environments/rails23/Rakefile
493
+ - test/environments/rails23/app/controllers/application.rb
494
+ - test/environments/rails23/config/boot.rb
495
+ - test/environments/rails23/config/database.yml
496
+ - test/environments/rails23/config/environment.rb
497
+ - test/environments/rails23/config/environments/production.rb
498
+ - test/environments/rails23/config/environments/test.rb
499
+ - test/environments/rails23/config/preinitializer.rb
500
+ - test/environments/rails23/config/routes.rb
501
+ - test/environments/rails23/db/schema.rb
502
+ - test/environments/rails30/Gemfile
503
+ - test/environments/rails30/Rakefile
504
+ - test/environments/rails30/config/application.rb
505
+ - test/environments/rails30/config/boot.rb
506
+ - test/environments/rails30/config/database.yml
507
+ - test/environments/rails30/config/environment.rb
508
+ - test/environments/rails30/config/initializers/new_rails_defaults.rb
509
+ - test/environments/rails30/db/schema.rb
510
+ - test/environments/rails31/Gemfile
511
+ - test/environments/rails31/Rakefile
512
+ - test/environments/rails31/config/application.rb
513
+ - test/environments/rails31/config/boot.rb
514
+ - test/environments/rails31/config/database.yml
515
+ - test/environments/rails31/config/environment.rb
516
+ - test/environments/rails31/config/initializers/new_rails_defaults.rb
517
+ - test/environments/rails31/db/schema.rb
518
+ - test/environments/rails32/Gemfile
519
+ - test/environments/rails32/Rakefile
520
+ - test/environments/rails32/config/application.rb
521
+ - test/environments/rails32/config/boot.rb
522
+ - test/environments/rails32/config/database.yml
523
+ - test/environments/rails32/config/environment.rb
524
+ - test/environments/rails32/db/schema.rb
525
+ - test/environments/rails40/Gemfile
526
+ - test/environments/rails40/Rakefile
527
+ - test/environments/rails40/config/application.rb
528
+ - test/environments/rails40/config/boot.rb
529
+ - test/environments/rails40/config/database.yml
530
+ - test/environments/rails40/config/environment.rb
531
+ - test/environments/rails40/db/schema.rb
532
+ - test/environments/rails41/Gemfile
533
+ - test/environments/rails41/Rakefile
534
+ - test/environments/rails41/config/application.rb
535
+ - test/environments/rails41/config/boot.rb
536
+ - test/environments/rails41/config/database.yml
537
+ - test/environments/rails41/config/environment.rb
538
+ - test/environments/rails41/db/schema.rb
539
+ - test/environments/rails42/Gemfile
540
+ - test/environments/rails42/Rakefile
541
+ - test/environments/rails42/config/application.rb
542
+ - test/environments/rails42/config/boot.rb
543
+ - test/environments/rails42/config/database.yml
544
+ - test/environments/rails42/config/environment.rb
545
+ - test/environments/rails42/db/schema.rb
546
+ - test/fixtures/cross_agent_tests/README.md
547
+ - test/fixtures/cross_agent_tests/attribute_configuration.json
548
+ - test/fixtures/cross_agent_tests/aws.json
549
+ - test/fixtures/cross_agent_tests/cat_map.json
550
+ - test/fixtures/cross_agent_tests/docker_container_id/README.md
551
+ - test/fixtures/cross_agent_tests/docker_container_id/cases.json
552
+ - test/fixtures/cross_agent_tests/docker_container_id/docker-0.9.1.txt
553
+ - test/fixtures/cross_agent_tests/docker_container_id/docker-1.0.0.txt
554
+ - test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-lxc-driver.txt
555
+ - test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-native-driver-fs.txt
556
+ - test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-native-driver-systemd.txt
557
+ - test/fixtures/cross_agent_tests/docker_container_id/docker-1.3.txt
558
+ - test/fixtures/cross_agent_tests/docker_container_id/empty.txt
559
+ - test/fixtures/cross_agent_tests/docker_container_id/heroku.txt
560
+ - test/fixtures/cross_agent_tests/docker_container_id/invalid-characters.txt
561
+ - test/fixtures/cross_agent_tests/docker_container_id/invalid-length.txt
562
+ - test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.04-lxc-container.txt
563
+ - test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.04-no-container.txt
564
+ - test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.10-no-container.txt
565
+ - test/fixtures/cross_agent_tests/labels.json
566
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/README.md
567
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.colon_obfuscated.txt
568
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.explain.txt
569
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.obfuscated.txt
570
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.query.txt
571
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.colon_obfuscated.txt
572
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.explain.txt
573
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.obfuscated.txt
574
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.query.txt
575
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.colon_obfuscated.txt
576
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.explain.txt
577
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.obfuscated.txt
578
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.query.txt
579
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.colon_obfuscated.txt
580
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.explain.txt
581
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.obfuscated.txt
582
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.query.txt
583
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.colon_obfuscated.txt
584
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.explain.txt
585
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.obfuscated.txt
586
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.query.txt
587
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.colon_obfuscated.txt
588
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.explain.txt
589
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.obfuscated.txt
590
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.query.txt
591
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.colon_obfuscated.txt
592
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.explain.txt
593
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.obfuscated.txt
594
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.query.txt
595
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.colon_obfuscated.txt
596
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.explain.txt
597
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.obfuscated.txt
598
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.query.txt
599
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.colon_obfuscated.txt
600
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.explain.txt
601
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.obfuscated.txt
602
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.query.txt
603
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.colon_obfuscated.txt
604
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.explain.txt
605
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.obfuscated.txt
606
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.query.txt
607
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.colon_obfuscated.txt
608
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.explain.txt
609
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.obfuscated.txt
610
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.query.txt
611
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.colon_obfuscated.txt
612
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.explain.txt
613
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.obfuscated.txt
614
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.query.txt
615
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.colon_obfuscated.txt
616
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.explain.txt
617
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.obfuscated.txt
618
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.query.txt
619
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.colon_obfuscated.txt
620
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.explain.txt
621
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.obfuscated.txt
622
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.query.txt
623
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.colon_obfuscated.txt
624
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.explain.txt
625
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.obfuscated.txt
626
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.query.txt
627
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.colon_obfuscated.txt
628
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.explain.txt
629
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.obfuscated.txt
630
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.query.txt
631
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.colon_obfuscated.txt
632
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.explain.txt
633
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.obfuscated.txt
634
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.query.txt
635
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.colon_obfuscated.txt
636
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.explain.txt
637
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.obfuscated.txt
638
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.query.txt
639
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.colon_obfuscated.txt
640
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.explain.txt
641
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.obfuscated.txt
642
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.query.txt
643
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.colon_obfuscated.txt
644
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.explain.txt
645
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.obfuscated.txt
646
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.query.txt
647
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.colon_obfuscated.txt
648
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.explain.txt
649
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.obfuscated.txt
650
+ - test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.query.txt
651
+ - test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_1logical.txt
652
+ - test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_2logical.txt
653
+ - test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_2core_2logical.txt
654
+ - test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_4core_4logical.txt
655
+ - test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_12core_24logical.txt
656
+ - test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_20core_40logical.txt
657
+ - test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_2logical.txt
658
+ - test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_4logical.txt
659
+ - test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_4core_4logical.txt
660
+ - test/fixtures/cross_agent_tests/proc_cpuinfo/4pack_4core_4logical.txt
661
+ - test/fixtures/cross_agent_tests/proc_cpuinfo/8pack_8core_8logical.txt
662
+ - test/fixtures/cross_agent_tests/proc_cpuinfo/README.md
663
+ - test/fixtures/cross_agent_tests/proc_cpuinfo/Xpack_Xcore_2logical.txt
664
+ - test/fixtures/cross_agent_tests/proc_meminfo/README.md
665
+ - test/fixtures/cross_agent_tests/proc_meminfo/meminfo_4096MB.txt
666
+ - test/fixtures/cross_agent_tests/rules.json
667
+ - test/fixtures/cross_agent_tests/rum_client_config.json
668
+ - test/fixtures/cross_agent_tests/rum_footer_insertion_location/close-body-in-comment.html
669
+ - test/fixtures/cross_agent_tests/rum_footer_insertion_location/dynamic-iframe.html
670
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/basic.html
671
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/body_with_attributes.html
672
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag.html
673
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_after_x_ua_tag.html
674
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_before_x_ua_tag.html
675
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_with_spaces.html
676
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments1.html
677
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments2.html
678
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag.html
679
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_after_x_ua_tag.html
680
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_before_x_ua_tag.html
681
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/empty_head
682
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes1.html
683
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes2.html
684
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes_mismatch.html
685
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes1.html
686
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes_mismatch.html
687
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/head_with_attributes.html
688
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/incomplete_non_meta_tags.html
689
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_end_header.html
690
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_header.html
691
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_html_and_no_header.html
692
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_start_header.html
693
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/script1.html
694
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/script2.html
695
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag.html
696
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiline.html
697
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiple_tags.html
698
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_spaces_around_equals.html
699
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_others.html
700
+ - test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_spaces.html
701
+ - test/fixtures/cross_agent_tests/sql_obfuscation/README.md
702
+ - test/fixtures/cross_agent_tests/sql_obfuscation/sql_obfuscation.json
703
+ - test/fixtures/cross_agent_tests/sql_parsing.json
704
+ - test/fixtures/cross_agent_tests/synthetics/README.md
705
+ - test/fixtures/cross_agent_tests/synthetics/synthetics.json
706
+ - test/fixtures/cross_agent_tests/transaction_segment_terms.json
707
+ - test/fixtures/cross_agent_tests/url_clean.json
708
+ - test/fixtures/cross_agent_tests/url_domain_extraction.json
709
+ - test/helpers/exceptions.rb
710
+ - test/helpers/file_searching.rb
711
+ - test/helpers/mongo_metric_builder.rb
712
+ - test/helpers/runtime_detection.rb
713
+ - test/intentional_fail.rb
714
+ - test/mmtrix/FAKECHANGELOG
715
+ - test/mmtrix/agent/agent/connect_test.rb
716
+ - test/mmtrix/agent/agent/start_test.rb
717
+ - test/mmtrix/agent/agent/start_worker_thread_test.rb
718
+ - test/mmtrix/agent/agent_logger_test.rb
719
+ - test/mmtrix/agent/agent_test.rb
720
+ - test/mmtrix/agent/agent_test_controller.rb
721
+ - test/mmtrix/agent/apdex_from_server_test.rb
722
+ - test/mmtrix/agent/attribute_filter_test.rb
723
+ - test/mmtrix/agent/attribute_processing_test.rb
724
+ - test/mmtrix/agent/audit_logger_test.rb
725
+ - test/mmtrix/agent/autostart_test.rb
726
+ - test/mmtrix/agent/aws_info_test.rb
727
+ - test/mmtrix/agent/busy_calculator_test.rb
728
+ - test/mmtrix/agent/commands/agent_command_router_test.rb
729
+ - test/mmtrix/agent/commands/agent_command_test.rb
730
+ - test/mmtrix/agent/commands/thread_profiler_session_test.rb
731
+ - test/mmtrix/agent/commands/xray_session_collection_test.rb
732
+ - test/mmtrix/agent/commands/xray_session_test.rb
733
+ - test/mmtrix/agent/configuration/default_source_test.rb
734
+ - test/mmtrix/agent/configuration/dotted_hash_test.rb
735
+ - test/mmtrix/agent/configuration/environment_source_test.rb
736
+ - test/mmtrix/agent/configuration/high_security_source_test.rb
737
+ - test/mmtrix/agent/configuration/manager_test.rb
738
+ - test/mmtrix/agent/configuration/manual_source_test.rb
739
+ - test/mmtrix/agent/configuration/orphan_configuration_test.rb
740
+ - test/mmtrix/agent/configuration/server_source_test.rb
741
+ - test/mmtrix/agent/configuration/yaml_source_test.rb
742
+ - test/mmtrix/agent/cross_app_monitor_test.rb
743
+ - test/mmtrix/agent/cross_app_tracing_test.rb
744
+ - test/mmtrix/agent/custom_event_aggregator_test.rb
745
+ - test/mmtrix/agent/database/postgres_explain_obfuscator_test.rb
746
+ - test/mmtrix/agent/database/sql_obfuscation_test.rb
747
+ - test/mmtrix/agent/database_test.rb
748
+ - test/mmtrix/agent/datastores/metric_helper_test.rb
749
+ - test/mmtrix/agent/datastores/mongo/metric_translator_test.rb
750
+ - test/mmtrix/agent/datastores/mongo/obfuscator_test.rb
751
+ - test/mmtrix/agent/datastores/mongo/statement_formatter_test.rb
752
+ - test/mmtrix/agent/datastores_test.rb
753
+ - test/mmtrix/agent/deprecator_test.rb
754
+ - test/mmtrix/agent/encoding_normalizer_test.rb
755
+ - test/mmtrix/agent/error_collector_test.rb
756
+ - test/mmtrix/agent/event_buffer_test_cases.rb
757
+ - test/mmtrix/agent/event_listener_test.rb
758
+ - test/mmtrix/agent/event_loop_test.rb
759
+ - test/mmtrix/agent/harvester_test.rb
760
+ - test/mmtrix/agent/hash_extensions_test.rb
761
+ - test/mmtrix/agent/hostname_test.rb
762
+ - test/mmtrix/agent/http_clients/uri_util_test.rb
763
+ - test/mmtrix/agent/inbound_request_monitor_test.rb
764
+ - test/mmtrix/agent/instrumentation/action_controller_subscriber_test.rb
765
+ - test/mmtrix/agent/instrumentation/action_view_subscriber_test.rb
766
+ - test/mmtrix/agent/instrumentation/active_job_test.rb
767
+ - test/mmtrix/agent/instrumentation/active_record_helper_test.rb
768
+ - test/mmtrix/agent/instrumentation/active_record_subscriber_test.rb
769
+ - test/mmtrix/agent/instrumentation/controller_instrumentation_test.rb
770
+ - test/mmtrix/agent/instrumentation/instrumentation_test.rb
771
+ - test/mmtrix/agent/instrumentation/metric_frame_test.rb
772
+ - test/mmtrix/agent/instrumentation/middleware_proxy_test.rb
773
+ - test/mmtrix/agent/instrumentation/middleware_tracing_test.rb
774
+ - test/mmtrix/agent/instrumentation/net_instrumentation_test.rb
775
+ - test/mmtrix/agent/instrumentation/queue_time_test.rb
776
+ - test/mmtrix/agent/instrumentation/rack_test.rb
777
+ - test/mmtrix/agent/instrumentation/sequel_helper_test.rb
778
+ - test/mmtrix/agent/instrumentation/sinatra/transaction_namer_test.rb
779
+ - test/mmtrix/agent/instrumentation/sinatra_test.rb
780
+ - test/mmtrix/agent/instrumentation/task_instrumentation_test.rb
781
+ - test/mmtrix/agent/javascript_instrumentor_test.rb
782
+ - test/mmtrix/agent/memory_logger_test.rb
783
+ - test/mmtrix/agent/method_interrobang_test.rb
784
+ - test/mmtrix/agent/method_tracer/class_methods/add_method_tracer_test.rb
785
+ - test/mmtrix/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb
786
+ - test/mmtrix/agent/method_tracer_test.rb
787
+ - test/mmtrix/agent/method_visibility_test.rb
788
+ - test/mmtrix/agent/mmtrix_service_test.rb
789
+ - test/mmtrix/agent/mock_scope_listener.rb
790
+ - test/mmtrix/agent/obfuscator_test.rb
791
+ - test/mmtrix/agent/parameter_filtering_test.rb
792
+ - test/mmtrix/agent/pipe_channel_manager_test.rb
793
+ - test/mmtrix/agent/pipe_service_test.rb
794
+ - test/mmtrix/agent/rpm_agent_test.rb
795
+ - test/mmtrix/agent/rules_engine_test.rb
796
+ - test/mmtrix/agent/sampled_buffer_test.rb
797
+ - test/mmtrix/agent/sampler_collection_test.rb
798
+ - test/mmtrix/agent/sampler_test.rb
799
+ - test/mmtrix/agent/samplers/cpu_sampler_test.rb
800
+ - test/mmtrix/agent/samplers/vm_sampler_test.rb
801
+ - test/mmtrix/agent/sized_buffer_test.rb
802
+ - test/mmtrix/agent/sql_sampler_test.rb
803
+ - test/mmtrix/agent/stats_engine/gc_profiler_test.rb
804
+ - test/mmtrix/agent/stats_engine/metric_stats_test.rb
805
+ - test/mmtrix/agent/stats_engine/samplers_test.rb
806
+ - test/mmtrix/agent/stats_engine/stats_hash_test.rb
807
+ - test/mmtrix/agent/stats_engine_test.rb
808
+ - test/mmtrix/agent/stats_test.rb
809
+ - test/mmtrix/agent/synthetics_event_buffer_test.rb
810
+ - test/mmtrix/agent/synthetics_monitor_test.rb
811
+ - test/mmtrix/agent/system_info_test.rb
812
+ - test/mmtrix/agent/threading/agent_thread_test.rb
813
+ - test/mmtrix/agent/threading/backtrace_node_test.rb
814
+ - test/mmtrix/agent/threading/backtrace_service_test.rb
815
+ - test/mmtrix/agent/threading/fake_thread.rb
816
+ - test/mmtrix/agent/threading/thread_profile_test.rb
817
+ - test/mmtrix/agent/threading/threaded_test_case.rb
818
+ - test/mmtrix/agent/traced_method_stack_test.rb
819
+ - test/mmtrix/agent/transaction/attributes_test.rb
820
+ - test/mmtrix/agent/transaction/developer_mode_sample_buffer_test.rb
821
+ - test/mmtrix/agent/transaction/slowest_sample_buffer_test.rb
822
+ - test/mmtrix/agent/transaction/synthetics_sample_buffer_test.rb
823
+ - test/mmtrix/agent/transaction/trace_node_test.rb
824
+ - test/mmtrix/agent/transaction/trace_test.rb
825
+ - test/mmtrix/agent/transaction/xray_sample_buffer_test.rb
826
+ - test/mmtrix/agent/transaction_event_aggregator_test.rb
827
+ - test/mmtrix/agent/transaction_interrobang_test.rb
828
+ - test/mmtrix/agent/transaction_metrics_test.rb
829
+ - test/mmtrix/agent/transaction_sample_builder_test.rb
830
+ - test/mmtrix/agent/transaction_sampler_test.rb
831
+ - test/mmtrix/agent/transaction_state_test.rb
832
+ - test/mmtrix/agent/transaction_test.rb
833
+ - test/mmtrix/agent/transaction_timings_test.rb
834
+ - test/mmtrix/agent/utilization_data_test.rb
835
+ - test/mmtrix/agent/vm/monotonic_gc_profiler_test.rb
836
+ - test/mmtrix/agent/vm/mri_vm_test.rb
837
+ - test/mmtrix/agent/vm/rubinius_vm_test.rb
838
+ - test/mmtrix/agent/vm/snapshot_test.rb
839
+ - test/mmtrix/agent/vm_test.rb
840
+ - test/mmtrix/agent/worker_loop_test.rb
841
+ - test/mmtrix/agent_test.rb
842
+ - test/mmtrix/cli/commands/deployments_test.rb
843
+ - test/mmtrix/cli/commands/install_test.rb
844
+ - test/mmtrix/coerce_test.rb
845
+ - test/mmtrix/collection_helper_test.rb
846
+ - test/mmtrix/control/class_methods_test.rb
847
+ - test/mmtrix/control/frameworks/rails_test.rb
848
+ - test/mmtrix/control/instance_methods_test.rb
849
+ - test/mmtrix/control/instrumentation_test.rb
850
+ - test/mmtrix/control_test.rb
851
+ - test/mmtrix/data_container_tests.rb
852
+ - test/mmtrix/dependency_detection_test.rb
853
+ - test/mmtrix/dispatcher_test.rb
854
+ - test/mmtrix/environment_report_test.rb
855
+ - test/mmtrix/evil_server.rb
856
+ - test/mmtrix/fake_collector.rb
857
+ - test/mmtrix/fake_external_server.rb
858
+ - test/mmtrix/fake_instance_metadata_service.rb
859
+ - test/mmtrix/fake_rpm_site.rb
860
+ - test/mmtrix/fake_server.rb
861
+ - test/mmtrix/filtering_test_app.rb
862
+ - test/mmtrix/framework_test.rb
863
+ - test/mmtrix/http_client_test_cases.rb
864
+ - test/mmtrix/json_wrapper_test.rb
865
+ - test/mmtrix/language_support_test.rb
866
+ - test/mmtrix/latest_changes_test.rb
867
+ - test/mmtrix/license_test.rb
868
+ - test/mmtrix/load_test.rb
869
+ - test/mmtrix/local_environment_test.rb
870
+ - test/mmtrix/marshalling_test_cases.rb
871
+ - test/mmtrix/metric_data_test.rb
872
+ - test/mmtrix/metric_parser/metric_parser_test.rb
873
+ - test/mmtrix/metric_spec_test.rb
874
+ - test/mmtrix/multiverse_helpers.rb
875
+ - test/mmtrix/noticed_error_test.rb
876
+ - test/mmtrix/rack/agent_hooks_test.rb
877
+ - test/mmtrix/rack/agent_middleware_test.rb
878
+ - test/mmtrix/rack/browser_monitoring_test.rb
879
+ - test/mmtrix/rack/deferred_instrumentation_test.rb
880
+ - test/mmtrix/rack/developer_mode/segment_summary_test.rb
881
+ - test/mmtrix/rack/developer_mode_helper_test.rb
882
+ - test/mmtrix/rack/developer_mode_test.rb
883
+ - test/mmtrix/rack/error_collector_test.rb
884
+ - test/mmtrix/transaction_ignoring_test_cases.rb
885
+ - test/mmtrix/version_number_test.rb
886
+ - test/multiverse/.gitignore
887
+ - test/multiverse/README.md
888
+ - test/multiverse/lib/multiverse/color.rb
889
+ - test/multiverse/lib/multiverse/envfile.rb
890
+ - test/multiverse/lib/multiverse/environment.rb
891
+ - test/multiverse/lib/multiverse/output_collector.rb
892
+ - test/multiverse/lib/multiverse/runner.rb
893
+ - test/multiverse/lib/multiverse/suite.rb
894
+ - test/multiverse/script/runner
895
+ - test/multiverse/suites/active_record/.gitignore
896
+ - test/multiverse/suites/active_record/Envfile
897
+ - test/multiverse/suites/active_record/Rakefile
898
+ - test/multiverse/suites/active_record/active_record_test.rb
899
+ - test/multiverse/suites/active_record/app/models/models.rb
900
+ - test/multiverse/suites/active_record/ar_method_aliasing.rb
901
+ - test/multiverse/suites/active_record/before_suite.rb
902
+ - test/multiverse/suites/active_record/config/database.rb
903
+ - test/multiverse/suites/active_record/config/database.yml
904
+ - test/multiverse/suites/active_record/config/mmtrix.yml
905
+ - test/multiverse/suites/active_record/db/migrate/20141105131800_create_users_and_aliases.rb
906
+ - test/multiverse/suites/active_record/db/migrate/20141106082200_create_orders_and_shipments.rb
907
+ - test/multiverse/suites/active_record/db/migrate/20150413011200_add_timestamps_to_orders.rb
908
+ - test/multiverse/suites/active_record/db/migrate/20150414084400_create_groups.rb
909
+ - test/multiverse/suites/activemerchant/Envfile
910
+ - test/multiverse/suites/activemerchant/activemerchant_test.rb
911
+ - test/multiverse/suites/agent_only/Envfile
912
+ - test/multiverse/suites/agent_only/agent_attributes_test.rb
913
+ - test/multiverse/suites/agent_only/agent_run_id_handling_test.rb
914
+ - test/multiverse/suites/agent_only/audit_log_test.rb
915
+ - test/multiverse/suites/agent_only/collector_exception_handling_test.rb
916
+ - test/multiverse/suites/agent_only/config/mmtrix.yml
917
+ - test/multiverse/suites/agent_only/cross_application_tracing_test.rb
918
+ - test/multiverse/suites/agent_only/custom_analytics_events_test.rb
919
+ - test/multiverse/suites/agent_only/custom_queue_time_test.rb
920
+ - test/multiverse/suites/agent_only/encoding_handling_test.rb
921
+ - test/multiverse/suites/agent_only/exclusive_time_test.rb
922
+ - test/multiverse/suites/agent_only/harvest_timestamps_test.rb
923
+ - test/multiverse/suites/agent_only/http_response_code_test.rb
924
+ - test/multiverse/suites/agent_only/keepalive_test.rb
925
+ - test/multiverse/suites/agent_only/key_transactions_test.rb
926
+ - test/multiverse/suites/agent_only/labels_test.rb
927
+ - test/multiverse/suites/agent_only/logging_test.rb
928
+ - test/multiverse/suites/agent_only/marshaling_test.rb
929
+ - test/multiverse/suites/agent_only/pipe_manager_test.rb
930
+ - test/multiverse/suites/agent_only/rename_rule_test.rb
931
+ - test/multiverse/suites/agent_only/rum_instrumentation_test.rb
932
+ - test/multiverse/suites/agent_only/script/env_change.rb
933
+ - test/multiverse/suites/agent_only/script/loading.rb
934
+ - test/multiverse/suites/agent_only/script/public_api_when_disabled.rb
935
+ - test/multiverse/suites/agent_only/script/symbol_env.rb
936
+ - test/multiverse/suites/agent_only/service_timeout_test.rb
937
+ - test/multiverse/suites/agent_only/set_transaction_name_test.rb
938
+ - test/multiverse/suites/agent_only/ssl_test.rb
939
+ - test/multiverse/suites/agent_only/start_up_test.rb
940
+ - test/multiverse/suites/agent_only/synthetics_test.rb
941
+ - test/multiverse/suites/agent_only/testing_app.rb
942
+ - test/multiverse/suites/agent_only/thread_profiling_test.rb
943
+ - test/multiverse/suites/agent_only/transaction_ignoring_test.rb
944
+ - test/multiverse/suites/agent_only/utilization_data_collection_test.rb
945
+ - test/multiverse/suites/agent_only/xray_sessions_test.rb
946
+ - test/multiverse/suites/bare/Envfile
947
+ - test/multiverse/suites/bare/standalone_instrumentation_test.rb
948
+ - test/multiverse/suites/capistrano/Capfile
949
+ - test/multiverse/suites/capistrano/Envfile
950
+ - test/multiverse/suites/capistrano/config/deploy.rb
951
+ - test/multiverse/suites/capistrano/config/deploy/production.rb
952
+ - test/multiverse/suites/capistrano/config/mmtrix.yml
953
+ - test/multiverse/suites/capistrano/deployment_test.rb
954
+ - test/multiverse/suites/capistrano2/Capfile
955
+ - test/multiverse/suites/capistrano2/Envfile
956
+ - test/multiverse/suites/capistrano2/config/deploy.rb
957
+ - test/multiverse/suites/capistrano2/config/mmtrix.yml
958
+ - test/multiverse/suites/capistrano2/deployment_test.rb
959
+ - test/multiverse/suites/config_file_loading/Envfile
960
+ - test/multiverse/suites/config_file_loading/config_file_loading_test.rb
961
+ - test/multiverse/suites/curb/Envfile
962
+ - test/multiverse/suites/curb/config/mmtrix.yml
963
+ - test/multiverse/suites/curb/curb_test.rb
964
+ - test/multiverse/suites/datamapper/Envfile
965
+ - test/multiverse/suites/datamapper/config/mmtrix.yml
966
+ - test/multiverse/suites/datamapper/datamapper_test.rb
967
+ - test/multiverse/suites/deferred_instrumentation/Envfile
968
+ - test/multiverse/suites/deferred_instrumentation/config/mmtrix.yml
969
+ - test/multiverse/suites/deferred_instrumentation/sinatra_test.rb
970
+ - test/multiverse/suites/delayed_job/Envfile
971
+ - test/multiverse/suites/delayed_job/before_suite.rb
972
+ - test/multiverse/suites/delayed_job/config/mmtrix.yml
973
+ - test/multiverse/suites/delayed_job/delayed_job_sampler_test.rb
974
+ - test/multiverse/suites/delayed_job/unsupported_backend_test.rb
975
+ - test/multiverse/suites/excon/Envfile
976
+ - test/multiverse/suites/excon/config/mmtrix.yml
977
+ - test/multiverse/suites/excon/excon_test.rb
978
+ - test/multiverse/suites/grape/Envfile
979
+ - test/multiverse/suites/grape/config/mmtrix.yml
980
+ - test/multiverse/suites/grape/grape_test.rb
981
+ - test/multiverse/suites/grape/grape_test_api.rb
982
+ - test/multiverse/suites/grape/grape_versioning_test.rb
983
+ - test/multiverse/suites/grape/grape_versioning_test_api.rb
984
+ - test/multiverse/suites/grape/unsupported_version_test.rb
985
+ - test/multiverse/suites/high_security/Envfile
986
+ - test/multiverse/suites/high_security/config/mmtrix.yml
987
+ - test/multiverse/suites/high_security/high_security_test.rb
988
+ - test/multiverse/suites/httpclient/Envfile
989
+ - test/multiverse/suites/httpclient/config/mmtrix.yml
990
+ - test/multiverse/suites/httpclient/httpclient_test.rb
991
+ - test/multiverse/suites/json/Envfile
992
+ - test/multiverse/suites/json/config/mmtrix.yml
993
+ - test/multiverse/suites/json/json_test.rb
994
+ - test/multiverse/suites/marshalling/Envfile
995
+ - test/multiverse/suites/marshalling/config/mmtrix.yml
996
+ - test/multiverse/suites/marshalling/marshalling_test.rb
997
+ - test/multiverse/suites/memcached/Envfile
998
+ - test/multiverse/suites/memcached/dalli_test.rb
999
+ - test/multiverse/suites/memcached/memcache_client_test.rb
1000
+ - test/multiverse/suites/memcached/memcache_test_cases.rb
1001
+ - test/multiverse/suites/memcached/memcached_test.rb
1002
+ - test/multiverse/suites/mongo/Envfile
1003
+ - test/multiverse/suites/mongo/config/mmtrix.yml
1004
+ - test/multiverse/suites/mongo/helpers/mongo_operation_tests.rb
1005
+ - test/multiverse/suites/mongo/helpers/mongo_replica_set.rb
1006
+ - test/multiverse/suites/mongo/helpers/mongo_replica_set_test.rb
1007
+ - test/multiverse/suites/mongo/helpers/mongo_server.rb
1008
+ - test/multiverse/suites/mongo/helpers/mongo_server_test.rb
1009
+ - test/multiverse/suites/mongo/mongo_connection_test.rb
1010
+ - test/multiverse/suites/mongo/mongo_instrumentation_test.rb
1011
+ - test/multiverse/suites/mongo/mongo_unsupported_version_test.rb
1012
+ - test/multiverse/suites/net_http/Envfile
1013
+ - test/multiverse/suites/net_http/config/mmtrix.yml
1014
+ - test/multiverse/suites/net_http/net_http_test.rb
1015
+ - test/multiverse/suites/padrino/Envfile
1016
+ - test/multiverse/suites/padrino/config/mmtrix.yml
1017
+ - test/multiverse/suites/padrino/padrino_test.rb
1018
+ - test/multiverse/suites/rack/Envfile
1019
+ - test/multiverse/suites/rack/builder_map_test.rb
1020
+ - test/multiverse/suites/rack/example_app.rb
1021
+ - test/multiverse/suites/rack/http_response_code_test.rb
1022
+ - test/multiverse/suites/rack/nested_non_rack_app_test.rb
1023
+ - test/multiverse/suites/rack/rack_auto_instrumentation_test.rb
1024
+ - test/multiverse/suites/rack/rack_cascade_test.rb
1025
+ - test/multiverse/suites/rack/rack_env_mutation_test.rb
1026
+ - test/multiverse/suites/rack/rack_parameter_filtering_test.rb
1027
+ - test/multiverse/suites/rack/rack_unsupported_version_test.rb
1028
+ - test/multiverse/suites/rack/url_map_test.rb
1029
+ - test/multiverse/suites/rails/Envfile
1030
+ - test/multiverse/suites/rails/action_controller_live_rum_test.rb
1031
+ - test/multiverse/suites/rails/activejob_test.rb
1032
+ - test/multiverse/suites/rails/app.rb
1033
+ - test/multiverse/suites/rails/app/views/foos/_foo.html.haml
1034
+ - test/multiverse/suites/rails/app/views/views/_a_partial.html.erb
1035
+ - test/multiverse/suites/rails/app/views/views/_mid_partial.html.erb
1036
+ - test/multiverse/suites/rails/app/views/views/_top_partial.html.erb
1037
+ - test/multiverse/suites/rails/app/views/views/deep_partial.html.erb
1038
+ - test/multiverse/suites/rails/app/views/views/haml_view.html.haml
1039
+ - test/multiverse/suites/rails/app/views/views/index.html.erb
1040
+ - test/multiverse/suites/rails/bad_instrumentation_test.rb
1041
+ - test/multiverse/suites/rails/config/mmtrix.yml
1042
+ - test/multiverse/suites/rails/dummy.txt
1043
+ - test/multiverse/suites/rails/error_tracing_test.rb
1044
+ - test/multiverse/suites/rails/gc_instrumentation_test.rb
1045
+ - test/multiverse/suites/rails/ignore_test.rb
1046
+ - test/multiverse/suites/rails/middleware_instrumentation_test.rb
1047
+ - test/multiverse/suites/rails/middlewares.rb
1048
+ - test/multiverse/suites/rails/parameter_capture_test.rb
1049
+ - test/multiverse/suites/rails/queue_time_test.rb
1050
+ - test/multiverse/suites/rails/rails2_app/app/controllers/application.rb
1051
+ - test/multiverse/suites/rails/rails2_app/config/boot.rb
1052
+ - test/multiverse/suites/rails/rails2_app/config/database.yml
1053
+ - test/multiverse/suites/rails/rails2_app/config/environment.rb
1054
+ - test/multiverse/suites/rails/rails2_app/config/environments/development.rb
1055
+ - test/multiverse/suites/rails/rails2_app/config/initializers/load_mmtrix_rpm.rb
1056
+ - test/multiverse/suites/rails/rails2_app/config/preinitializer.rb
1057
+ - test/multiverse/suites/rails/rails2_app/config/routes.rb
1058
+ - test/multiverse/suites/rails/rails2_app/db/schema.rb
1059
+ - test/multiverse/suites/rails/rails3_app/app_rails3_plus.rb
1060
+ - test/multiverse/suites/rails/request_statistics_test.rb
1061
+ - test/multiverse/suites/rails/transaction_ignoring_test.rb
1062
+ - test/multiverse/suites/rails/view_instrumentation_test.rb
1063
+ - test/multiverse/suites/resque/Envfile
1064
+ - test/multiverse/suites/resque/Rakefile
1065
+ - test/multiverse/suites/resque/config/mmtrix.yml
1066
+ - test/multiverse/suites/resque/instrumentation_test.rb
1067
+ - test/multiverse/suites/resque/resque_marshalling_test.rb
1068
+ - test/multiverse/suites/sequel/Envfile
1069
+ - test/multiverse/suites/sequel/config/mmtrix.yml
1070
+ - test/multiverse/suites/sequel/database.rb
1071
+ - test/multiverse/suites/sequel/sequel_extension_test.rb
1072
+ - test/multiverse/suites/sequel/sequel_helpers.rb
1073
+ - test/multiverse/suites/sequel/sequel_plugin_test.rb
1074
+ - test/multiverse/suites/sequel/sequel_safety_test.rb
1075
+ - test/multiverse/suites/sidekiq/Envfile
1076
+ - test/multiverse/suites/sidekiq/after_suite.rb
1077
+ - test/multiverse/suites/sidekiq/config/mmtrix.yml
1078
+ - test/multiverse/suites/sidekiq/log/.gitkeep
1079
+ - test/multiverse/suites/sidekiq/sidekiq_instrumentation_test.rb
1080
+ - test/multiverse/suites/sidekiq/sidekiq_server.rb
1081
+ - test/multiverse/suites/sidekiq/test_worker.rb
1082
+ - test/multiverse/suites/sinatra/Envfile
1083
+ - test/multiverse/suites/sinatra/config/mmtrix.yml
1084
+ - test/multiverse/suites/sinatra/ignoring_test.rb
1085
+ - test/multiverse/suites/sinatra/nested_middleware_test.rb
1086
+ - test/multiverse/suites/sinatra/sinatra_classic_test.rb
1087
+ - test/multiverse/suites/sinatra/sinatra_error_tracing_test.rb
1088
+ - test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb
1089
+ - test/multiverse/suites/sinatra/sinatra_modular_test.rb
1090
+ - test/multiverse/suites/sinatra/sinatra_parameter_capture_test.rb
1091
+ - test/multiverse/suites/sinatra/sinatra_routes_test.rb
1092
+ - test/multiverse/suites/sinatra/sinatra_test_cases.rb
1093
+ - test/multiverse/suites/typhoeus/Envfile
1094
+ - test/multiverse/suites/typhoeus/config/mmtrix.yml
1095
+ - test/multiverse/suites/typhoeus/typhoeus_test.rb
1096
+ - test/multiverse/suites/yajl/Envfile
1097
+ - test/multiverse/suites/yajl/config/mmtrix.yml
1098
+ - test/multiverse/suites/yajl/yajl_test.rb
1099
+ - test/multiverse/test/multiverse_test.rb
1100
+ - test/multiverse/test/suite_examples/one/a/Envfile
1101
+ - test/multiverse/test/suite_examples/one/a/a_test.rb
1102
+ - test/multiverse/test/suite_examples/one/a/config/mmtrix.yml
1103
+ - test/multiverse/test/suite_examples/one/b/Envfile
1104
+ - test/multiverse/test/suite_examples/one/b/b_test.rb
1105
+ - test/multiverse/test/suite_examples/one/b/config/mmtrix.yml
1106
+ - test/multiverse/test/suite_examples/three/a/Envfile
1107
+ - test/multiverse/test/suite_examples/three/a/fail_test.rb
1108
+ - test/multiverse/test/suite_examples/three/b/Envfile
1109
+ - test/multiverse/test/suite_examples/three/b/win_test.rb
1110
+ - test/multiverse/test/suite_examples/two/a/Envfile
1111
+ - test/multiverse/test/suite_examples/two/a/fail_test.rb
1112
+ - test/performance/README.md
1113
+ - test/performance/lib/performance.rb
1114
+ - test/performance/lib/performance/baseline.rb
1115
+ - test/performance/lib/performance/baseline_compare_reporter.rb
1116
+ - test/performance/lib/performance/baseline_save_reporter.rb
1117
+ - test/performance/lib/performance/console_reporter.rb
1118
+ - test/performance/lib/performance/formatting_helpers.rb
1119
+ - test/performance/lib/performance/hako_client.rb
1120
+ - test/performance/lib/performance/hako_reporter.rb
1121
+ - test/performance/lib/performance/instrumentation/cpu_usage.rb
1122
+ - test/performance/lib/performance/instrumentation/gc_stats.rb
1123
+ - test/performance/lib/performance/instrumentation/perf_tools.rb
1124
+ - test/performance/lib/performance/instrumentation/stackprof.rb
1125
+ - test/performance/lib/performance/instrumentor.rb
1126
+ - test/performance/lib/performance/json_reporter.rb
1127
+ - test/performance/lib/performance/platform.rb
1128
+ - test/performance/lib/performance/reporting.rb
1129
+ - test/performance/lib/performance/result.rb
1130
+ - test/performance/lib/performance/runner.rb
1131
+ - test/performance/lib/performance/table.rb
1132
+ - test/performance/lib/performance/test_case.rb
1133
+ - test/performance/lib/performance/timer.rb
1134
+ - test/performance/script/baselines
1135
+ - test/performance/script/mega-runner
1136
+ - test/performance/script/runner
1137
+ - test/performance/suites/active_record.rb
1138
+ - test/performance/suites/agent_attributes.rb
1139
+ - test/performance/suites/config.rb
1140
+ - test/performance/suites/marshalling.rb
1141
+ - test/performance/suites/queue_time.rb
1142
+ - test/performance/suites/rack_middleware.rb
1143
+ - test/performance/suites/rum_autoinsertion.rb
1144
+ - test/performance/suites/sql_obfuscation.rb
1145
+ - test/performance/suites/startup.rb
1146
+ - test/performance/suites/stats_hash.rb
1147
+ - test/performance/suites/thread_profiling.rb
1148
+ - test/performance/suites/trace_execution_scoped.rb
1149
+ - test/performance/suites/transaction_tracing.rb
1150
+ - test/script/build_test_gem.sh
1151
+ - test/script/ci.sh
1152
+ - test/script/ci_agent-tests_runner.sh
1153
+ - test/script/ci_bench.sh
1154
+ - test/script/ci_multiverse_runner.sh
1155
+ - test/script/path_hash.rb
1156
+ - test/test_helper.rb
1157
+ - ui/helpers/developer_mode_helper.rb
1158
+ - ui/helpers/google_pie_chart.rb
1159
+ - ui/views/layouts/mmtrix_default.rhtml
1160
+ - ui/views/mmtrix/_explain_plans.rhtml
1161
+ - ui/views/mmtrix/_sample.rhtml
1162
+ - ui/views/mmtrix/_segment.rhtml
1163
+ - ui/views/mmtrix/_segment_limit_message.rhtml
1164
+ - ui/views/mmtrix/_segment_row.rhtml
1165
+ - ui/views/mmtrix/_show_sample_detail.rhtml
1166
+ - ui/views/mmtrix/_show_sample_sql.rhtml
1167
+ - ui/views/mmtrix/_show_sample_summary.rhtml
1168
+ - ui/views/mmtrix/_sql_row.rhtml
1169
+ - ui/views/mmtrix/_stack_trace.rhtml
1170
+ - ui/views/mmtrix/_table.rhtml
1171
+ - ui/views/mmtrix/explain_sql.rhtml
1172
+ - ui/views/mmtrix/file/images/arrow-close.png
1173
+ - ui/views/mmtrix/file/images/arrow-open.png
1174
+ - ui/views/mmtrix/file/images/blue_bar.gif
1175
+ - ui/views/mmtrix/file/images/file_icon.png
1176
+ - ui/views/mmtrix/file/images/gray_bar.gif
1177
+ - ui/views/mmtrix/file/images/mmtrix-rpm-desktop.gif
1178
+ - ui/views/mmtrix/file/images/mmtrix_rpm_desktop.gif
1179
+ - ui/views/mmtrix/file/images/textmate.png
1180
+ - ui/views/mmtrix/file/javascript/jquery-1.4.2.js
1181
+ - ui/views/mmtrix/file/javascript/transaction_sample.js
1182
+ - ui/views/mmtrix/file/stylesheets/style.css
1183
+ - ui/views/mmtrix/index.rhtml
1184
+ - ui/views/mmtrix/sample_not_found.rhtml
1185
+ - ui/views/mmtrix/show_sample.rhtml
1186
+ - ui/views/mmtrix/threads.rhtml
1187
+ - vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection.rb
1188
+ - vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection/version.rb
1189
+ - vendor/gems/metric_parser-0.1.0.pre1/.specification
1190
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb
1191
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser.rb
1192
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/action_mailer.rb
1193
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/active_merchant.rb
1194
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/active_record.rb
1195
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/apdex.rb
1196
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/background_transaction.rb
1197
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/client.rb
1198
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/controller.rb
1199
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/controller_cpu.rb
1200
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/controller_ext.rb
1201
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/database.rb
1202
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/database_pool.rb
1203
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/dot_net.rb
1204
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/dot_net_parser.rb
1205
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/errors.rb
1206
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/external.rb
1207
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/frontend.rb
1208
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/gc.rb
1209
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/hibernate_session.rb
1210
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/java.rb
1211
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/java_parser.rb
1212
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/jsp.rb
1213
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/jsp_tag.rb
1214
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/mem_cache.rb
1215
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/metric_parser.rb
1216
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/middleware.rb
1217
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/nested.rb
1218
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/orm.rb
1219
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/other_transaction.rb
1220
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/servlet.rb
1221
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/servlet_context_listener.rb
1222
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/servlet_filter.rb
1223
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/servlet_init.rb
1224
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/solr.rb
1225
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/solr_request_handler.rb
1226
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/spring.rb
1227
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/spring_controller.rb
1228
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/spring_view.rb
1229
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/struts_action.rb
1230
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/struts_result.rb
1231
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/version.rb
1232
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/view.rb
1233
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/web_frontend.rb
1234
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/web_service.rb
1235
+ - vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/web_transaction.rb
1236
+ homepage: http://www.github.com/mmtrix/rpm
1237
+ licenses:
1238
+ - Mmtrix
1239
+ - MIT
1240
+ - Ruby
1241
+ metadata: {}
1242
+ post_install_message:
1243
+ rdoc_options: []
1244
+ require_paths:
1245
+ - lib
1246
+ required_ruby_version: !ruby/object:Gem::Requirement
1247
+ requirements:
1248
+ - - '>='
1249
+ - !ruby/object:Gem::Version
1250
+ version: 1.8.7
1251
+ required_rubygems_version: !ruby/object:Gem::Requirement
1252
+ requirements:
1253
+ - - '>'
1254
+ - !ruby/object:Gem::Version
1255
+ version: 1.3.1
1256
+ requirements: []
1257
+ rubyforge_project:
1258
+ rubygems_version: 2.4.8
1259
+ signing_key:
1260
+ specification_version: 4
1261
+ summary: Mmtrix Ruby Agent
1262
+ test_files: []
1263
+ has_rdoc: