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
data/CHANGELOG ADDED
@@ -0,0 +1,2342 @@
1
+ # Mmtrix Ruby Agent Release Notes #
2
+
3
+ ## v3.12.1 ##
4
+
5
+ * More granular Database metrics for ActiveRecord 3 and 4
6
+
7
+ Database metrics recorded for non-SELECT operations (UPDATE, INSERT, DELETE,
8
+ etc.) on ActiveRecord 3 and 4 now include the model name that the query was
9
+ being executed against, allowing you to view these queries broken down by
10
+ model on the Datastores page. Thanks to Bill Kayser for reporting this issue!
11
+
12
+ * Support for Multiverse testing third party gems
13
+
14
+ The Ruby agent has rich support for testing multiple gem versions, but
15
+ previously that wasn't accessible to third party gems. Now you can now
16
+ simply `require 'task/multiverse'` in your Rakefile to access the same
17
+ test:multiverse task that Mmtrix uses itself. For more details, see:
18
+
19
+ https://docs.mmtrix.com/docs/agents/ruby-agent/frameworks/third-party-instrumentation#testing-your-extension
20
+
21
+ * Use Sidekiq 3.x's error handler
22
+
23
+ Sidekiq 3.x+ provides an error handler for internal and middleware related
24
+ failures. Failures at these points were previously unseen by the Ruby agent,
25
+ but now they are properly traced.
26
+
27
+ * Better error messages for common configuration problems with Capistrano
28
+
29
+ Templating errors in mmtrix.yml would result in obscure error messages
30
+ during Capistrano deployments. These messages now more properly reflect the
31
+ root cause of the errors.
32
+
33
+ * mmtrix_ignore methods allow strings
34
+
35
+ The mmtrix_ignore methods previously only supported passing symbols, and
36
+ would quietly ignore any strings passed. Now strings can be passed as well
37
+ to get the intuitive ignoring behavior you'd expect.
38
+
39
+ * Replace DNS resolver for Resque jobs with Resolv
40
+
41
+ In some circumstances customers with a very high number of short-lived Resque
42
+ jobs were experiencing deadlocks during DNS resolution. Resolv is an all Ruby
43
+ DNS resolver that replaces the libc implementation to prevent these deadlocks.
44
+
45
+ ## v3.12.0 ##
46
+
47
+ * Flexible capturing of attributes
48
+
49
+ The Ruby agent now allows you more control over exactly which request
50
+ parameters and job arguments are attached to transaction traces, traced
51
+ errors, and Insights events. For details, see:
52
+
53
+ https://docs.mmtrix.com/docs/agents/ruby-agent/ruby-agent-attributes
54
+
55
+ * Fixed missing URIs in traces for retried Excon requests
56
+
57
+ If Excon's idempotent option retried a request, the transaction trace node
58
+ for the call would miss having the URI assigned. This has been fixed.
59
+
60
+ * Capturing request parameters from rescued exceptions in Grape
61
+
62
+ If an exception was handled via a rescue_from in Grape, request parameters
63
+ were not properly set on the error trace. This has been fixed. Thanks to
64
+ Ankit Shah for helping us spot the bug.
65
+
66
+ ## v3.11.2 ##
67
+
68
+ * Better naming for Rack::URLMap
69
+
70
+ If a Rack app made direct use of Rack::URLMap, instrumentation would miss
71
+ out on using the clearest naming based on the app class. This has been
72
+ fixed.
73
+
74
+ * Avoid performance regression in makara database adapter
75
+
76
+ Delegation in the makara database adapter caused performance issues when the
77
+ agent looked up a connection in the pool. The agent now uses a faster
78
+ lookup to work around this problem in makara, and allocates less as well.
79
+ Thanks Mike Nelson for the help in resolving this!
80
+
81
+ * Allow audit logging to STDOUT
82
+
83
+ Previously audit logs of the agent's communication with Mmtrix could only
84
+ write to a file. This prevented using the feature on cloud providers like
85
+ Heroku. Now STDOUT is an allowed destination for `audit_log.path`. Logging
86
+ can also be restricted to certain endpoints via `audit_log.endpoints`.
87
+
88
+ For more information see https://docs.mmtrix.com/docs/agents/ruby-agent/installation-configuration/ruby-agent-configuration#audit_log
89
+
90
+ * Fix for crash during startup when Rails required but not used
91
+
92
+ If an application requires Rails but wasn't actually running it, the Ruby
93
+ agent would fail during startup. This has been fixed.
94
+
95
+ * Use IO.select explicitly in the event loop
96
+
97
+ If an application adds their own select method to Object/Kernel or mixes in a
98
+ module that overrides the select method (as with ActionView::Helpers) we would
99
+ previously have used their implementation instead of the intended IO.select,
100
+ leading to all sorts of unusual errors. We now explicitly reference IO.select
101
+ in the event loop to avoid these issues.
102
+
103
+ * Fix for background thread hangs on old Linux kernels
104
+
105
+ When running under Ruby 1.8.7 on Linux kernel versions 2.6.11 and earlier,
106
+ the background thread used by the agent to report data would hang, leading
107
+ to no data being reported. This has been be fixed.
108
+
109
+ ## v3.11.1 ##
110
+
111
+ If an application adds their own select method to Object/Kernel or mixes in a
112
+ module that overrides the select method (as with ActionView::Helpers) we would
113
+ previously have used their implementation instead of the intended IO.select,
114
+ leading to all sorts of unusual errors. We now explicitly reference IO.select
115
+ in the event loop to avoid these issues.
116
+
117
+ * Fix for background thread hangs on old Linux kernels
118
+
119
+ When running under Ruby 1.8.7 on Linux kernel versions 2.6.11 and earlier,
120
+ the background thread used by the agent to report data would hang, leading
121
+ to no data being reported. This has been be fixed.
122
+
123
+ ## v3.11.1 ##
124
+
125
+ The Ruby agent incorrectly rescued exceptions at a point which caused
126
+ sequel_pg 1.6.11 to segfault. This has been fixed. Thanks to Oldrich
127
+ Vetesnik for the report!
128
+
129
+ ## v3.11.0 ##
130
+
131
+ * Unified view for SQL database and NoSQL datastore products.
132
+
133
+ The response time charts in the application overview page will now include
134
+ NoSQL datastores, such as MongoDB, and also the product name of existing SQL
135
+ databases such as MySQL, Postgres, etc.
136
+
137
+ The Databases page will now enable the filtering of metrics and operations
138
+ by product, and includes a table listing all operations.
139
+
140
+ For existing SQL databases, in addition to the existing breakdown of SQL
141
+ statements and operations, the queries are now also associated with the
142
+ database product being used.
143
+
144
+ For NoSQL datastores, such as MongoDB, we have now added information about
145
+ operations performed against those products, similar to what is being done
146
+ for SQL databases.
147
+
148
+ Because this introduces a notable change to how SQL database metrics are
149
+ collected, it is important that you upgrade the agent version on all hosts.
150
+ If you are unable to transition to the latest agent version on all hosts at
151
+ the same time, you can still access old and new metric data for SQL
152
+ databases, but the information will be split across two separate views.
153
+
154
+ For more information see https://docs.mmtrix.com/docs/apm/applications-menu/monitoring/databases-slow-queries-dashboard
155
+
156
+ * Track background transactions as Key Transactions
157
+
158
+ In prior versions of the Ruby agent, only web transactions could be tracked
159
+ as Key Transactions. This functionality is now available to all
160
+ transactions, including custom Apdex values and X-Ray sessions.
161
+
162
+ For more information see https://docs.mmtrix.com/docs/apm/selected-transactions/key-transactions/key-transactions-tracking-important-transactions-or-events
163
+
164
+ * More support and documentation for third-party extensions
165
+
166
+ It's always been possible to write extension gems for the Ruby agent, but
167
+ now there's one location with best practices and recommendations to guide
168
+ you in writing extensions. Check out
169
+ https://docs.mmtrix.com/docs/agents/ruby-agent/frameworks/third-party-instrumentation
170
+
171
+ We've also added simpler APIs for tracing datastores and testing your
172
+ extensions. It's our way of giving back to everyone who's helped build on
173
+ the agent over the years. <3
174
+
175
+ * Fix for anonymous class middleware naming
176
+
177
+ Metric names based off anonymous middlewares lacked a class name in the UI.
178
+ The Ruby agent will now look for a superclass, or default to AnonymousClass
179
+ in those cases.
180
+
181
+ * Improved exit behavior in the presence of Sinatra
182
+
183
+ The agent uses an `at_exit` hook to ensure data from the last < 60s before a
184
+ process exits is sent to Mmtrix. Previously, this hook was skipped if
185
+ Sinatra::Application was defined. This unfortunately missed data for
186
+ short-lived background processes that required, but didn't run, Sinatra. Now
187
+ the agent only skips its `at_exit` hook if Sinatra actually runs from
188
+ `at_exit`.
189
+
190
+ ## v3.10.0 ##
191
+
192
+ * Support for the Grape framework
193
+
194
+ We now instrument the Grape REST API framework! To avoid conflicts with the
195
+ third-party mmtrix-grape gem, our instrumentation will not be installed if
196
+ mmtrix-grape is present in the Gemfile.
197
+
198
+ For more details, see https://docs.mmtrix.com/docs/agents/ruby-agent/frameworks/grape-instrumentation
199
+
200
+ * Automatic Cross Application Tracing support for all Rack applications
201
+
202
+ Previously Rack apps not using Rails or Sinatra needed to include the
203
+ AgentHooks middleware to get Cross Application Tracing support. With
204
+ these changes, this is no longer necessary. Any explicit references to
205
+ AgentHooks can be removed unless the `disable_middleware_instrumentation`
206
+ setting is set to `true`.
207
+
208
+ * Metrics no longer reported from Puma master processes
209
+
210
+ When using Puma's cluster mode with the preload_app! configuration directive,
211
+ the agent will no longer start its reporting thread in the Puma master
212
+ process. This should result in more accurate instance counts, and more
213
+ accurate stats on the Ruby VMs page (since the master process will be
214
+ excluded).
215
+
216
+ * Better support for Sinatra apps used with Rack::Cascade
217
+
218
+ Previously, using a Sinatra application as part of a Rack::Cascade chain would
219
+ cause all transactions to be named after the Sinatra application, rather than
220
+ allowing downstream applications to set the transaction name when the Sinatra
221
+ application returned a 404 response. This has been fixed.
222
+
223
+ * Updated support for Rubinius 2.3+ metrics
224
+
225
+ Rubinius 2.3 introduced a new system for gathering metrics from the
226
+ underlying VM. Data capture for the Ruby VM's page has been updated to take
227
+ advantage of these. Thanks Yorick Peterse for the contribution!
228
+
229
+ * Fix for missing ActiveJob traced errors
230
+
231
+ ActiveJobs processed by backends where the Ruby agent lacked existing
232
+ instrumentation missed reporting traced errors. This did not impact
233
+ ActiveJobs used with Sidekiq or Resque, and has been fixed.
234
+
235
+ * Fix possible crash in middleware tracing
236
+
237
+ In rare circumstances, a failure in the agent early during tracing of a web
238
+ request could lead to a cascading error when trying to capture the HTTP status
239
+ code of the request. This has been fixed. Thanks to Michal Cichra for the fix!
240
+
241
+ ## v3.9.9 ##
242
+
243
+ * Support for Ruby 2.2
244
+
245
+ A new version of Ruby is available, and the Ruby agent is ready to run on
246
+ it. We've been testing things out since the early previews so you can
247
+ upgrade to the latest and greatest and use Mmtrix right away to see how
248
+ the new Ruby's performing for you.
249
+
250
+ * Support for Rails 4.2 and ActiveJob
251
+
252
+ Not only is a new Ruby available, but a new Rails is out too! The Ruby agent
253
+ provides all the usual support for Rails that you'd expect, and we
254
+ instrument the newly released ActiveJob framework that's part of 4.2.
255
+
256
+ * Security fix for handling of error responses from Mmtrix servers
257
+
258
+ This release fixes a potential security issue wherein an attacker who was able
259
+ to impersonate Mmtrix's servers could have triggered arbitrary code
260
+ execution in agent's host processes by sending a specially-crafted error
261
+ response to a data submission request.
262
+
263
+ This issue is mitigated by the fact that the agent uses SSL certificate
264
+ checking in order to verify the identity of the Mmtrix servers to which it
265
+ connects. SSL is enabled by default by the agent, and can be enforced
266
+ account-wide by enabling High Security Mode for your account:
267
+
268
+ https://docs.mmtrix.com/docs/accounts-partnerships/accounts/security/high-security
269
+
270
+ * Fix for transactions with invalid URIs
271
+
272
+ If an application used the agent's `ignore_url_regexes` config setting to
273
+ ignore certain transactions, but received an invalid URI, the agent would
274
+ fail to record the transaction. This has been fixed.
275
+
276
+ * Fixed incompatibility with mmtrix-grape
277
+
278
+ The 3.9.8 release of the Ruby agent included disabled prototyped
279
+ instrumentation for the Grape API framework. This introduced an
280
+ incompatibility with the existing third party extension mmtrix-grape. This
281
+ has been fixed. Mmtrix-grape continues to be the right solution until
282
+ full agent support for Grape is available.
283
+
284
+ ## v3.9.8 ##
285
+
286
+ * Custom Insights events API
287
+
288
+ In addition to attaching custom parameters to the events that the Ruby agent
289
+ generates automatically for each transaction, you can now record custom event
290
+ types into Insights with the new Mmtrix::Agent.record_custom_event API.
291
+
292
+ For details, see https://docs.mmtrix.com/docs/insights/mmtrix-insights/adding-querying-data/inserting-custom-events-mmtrix-agents
293
+
294
+ * Reduced memory usage for idling applications
295
+
296
+ Idling applications using the agent could previously appear to leak memory
297
+ because of native allocations during creation of new SSL connections to our
298
+ servers. These native allocations didn't factor into triggering Ruby's
299
+ garbage collector.
300
+
301
+ The agent will now re-use a single TCP connection to our servers for as long
302
+ as possible, resulting in improved memory usage for applications that are
303
+ idling and not having GC triggered for other reasons.
304
+
305
+ * Don't write to stderr during CPU sampling
306
+
307
+ The Ruby agent's code for gathering CPU information would write error
308
+ messages to stderr on some FreeBSD systems. This has been fixed.
309
+
310
+ * LocalJumpError on Rails 2.x
311
+
312
+ Under certain conditions, Rails 2.x controller instrumentation could fail
313
+ with a LocalJumpError when an action was not being traced. This has been
314
+ fixed.
315
+
316
+ * Fixed config lookup in warbler packaged apps
317
+
318
+ When running a Ruby application from a standalone warbler .jar file on
319
+ JRuby, the packaged config/mmtrix.yml was not properly found. This has
320
+ been fixed, and thanks to Bob Beaty for the help getting it fixed!
321
+
322
+ * Hash iteration failure in middleware
323
+
324
+ If a background thread iterated over the keys in the Rack env hash, it could
325
+ cause failures in Mmtrix's AgentHooks middleware. This has been fixed.
326
+
327
+ ## v3.9.7 ##
328
+
329
+ * Support for Mmtrix Synthetics
330
+
331
+ The Ruby agent now gives you additional information for requests from New
332
+ Mmtrix Synthetics. More transaction traces and events give you a clearer look
333
+ into how your application is performing around the world.
334
+
335
+ For more details, see https://docs.mmtrix.com/docs/synthetics/mmtrix-synthetics/getting-started/mmtrix-synthetics
336
+
337
+ * Support for multiple job per fork gems with Resque
338
+
339
+ The resque-jobs-per-fork and resque-multi-job-forks gems alter Resque to
340
+ fork every N jobs instead of every job. This previously caused issues for
341
+ the Ruby agent, but those have been resolved. These gems are fully supported.
342
+
343
+ Running Resque with the FORK_PER_JOB=false environment variable setting is
344
+ also supported now.
345
+
346
+ For more details on our Resque support, see https://docs.mmtrix.com/docs/agents/ruby-agent/background-jobs/resque-instrumentation
347
+
348
+ * Support agent when starting Resque Pool from Rake task
349
+
350
+ When running resque-pool with its provided rake tasks, the agent would not
351
+ start up properly. Thanks Tiago Sousa for the fix!
352
+
353
+ * Fix for DelayedJob + Rails 4.x queue depth metrics
354
+
355
+ The Ruby agent periodically records DelayedJob queuedepth as a metric, but
356
+ this didn't work properly in Rails 4.x applications. This has been fixed.
357
+ Thanks Jonathan del Strother for his help with the issue!
358
+
359
+ * Fix for failure in background transactions with rules.ignore_url_regexes
360
+
361
+ The recently added feature for ignoring transactions via URL regexes caused
362
+ errors for non-web transactions. This has been fixed.
363
+
364
+ * Rename the TransactionNamer.name method to TransactionNamer.name_for
365
+
366
+ The internal TransactionNamer class had a class method called 'name', with a
367
+ different signature than the existing Class#name method and could cause
368
+ problems when trying to introspect instances of the class.
369
+
370
+ Thanks to Dennis Taylor for contributing this fix!
371
+
372
+ ## v3.9.6 ##
373
+
374
+ * Rails 4.2 ActiveJob support
375
+
376
+ A new version of Rails is coming! One of the highlight features is
377
+ ActiveJob, a framework for interacting with background job processors. This
378
+ release of the Ruby agent adds instrumentation to give you insight into
379
+ ActiveJob, whether you're just testing it out or running it for real.
380
+
381
+ Metrics are recorded around enqueuing ActiveJobs, and background transactions
382
+ are started for any ActiveJob performed where the agent didn't already
383
+ provide specific instrumentation (such as DelayedJob, Resque and Sidekiq).
384
+
385
+ Since Rails 4.2 is still in beta we'd love to hear any feedback on this
386
+ instrumentation so it'll be rock solid for the general release!
387
+
388
+ * Ruby 2.2.0-preview1 updates
389
+
390
+ Ruby 2.2.0 is on its way later in the year, and the Ruby agent is ready for
391
+ it. Updates to the GC stats and various other small changes have already been
392
+ applied, and our automated tests are running against 2.2.0 so the agent will
393
+ be ready on release day.
394
+
395
+ * Ignoring transactions by URL
396
+
397
+ While you could always ignore transactions by controller and action, the
398
+ Ruby agent previously lacked a way to ignore by specific URLs or patterns
399
+ without code changes. This release adds the config setting,
400
+ `rules.ignore_url_regexes` to ignore specific transactions based on the
401
+ request URL as well. For more information, see the documentation at:
402
+ https://docs.mmtrix.com/docs/agents/ruby-agent/installation-configuration/ignoring-specific-transactions#config-ignoring
403
+
404
+ * Better dependency detection in non-Rack applications
405
+
406
+ The Ruby agent runs dependency detection at key points in the Rack and Rails
407
+ lifecycle, but non-Rails apps could occasionally miss out instrumenting late
408
+ loaded libraries. The agent now runs an additional dependency detection
409
+ during manual_start to more seamlessly install instrumentation in any app.
410
+
411
+ * Excluding /mmtrix routes from developer mode
412
+
413
+ Recent changes to track time in middleware resulted in Mmtrix's developer
414
+ mode capturing its own page views in the list. This has been fixed. Thanks
415
+ to Ignatius Reza Lesmana for the report!
416
+
417
+ * Spikes in external time
418
+
419
+ Timeouts during certain external HTTP requests could result in incorrect
420
+ large spikes in the time recorded by the agent. This has been fixed.
421
+
422
+ * Recognize browser_monitoring.auto_instrument setting in non-Rails apps
423
+
424
+ The `browser_monitoring.auto_instrument` config setting disables
425
+ auto-injection of JavaScript into your pages, but was not properly obeyed in
426
+ Sinatra and other non-Rails contexts. This has been fixed.
427
+
428
+ * Failures to gather CPU thread time on JRuby
429
+
430
+ JRuby running on certain JVM's and operating systems (FreeBSD in particular)
431
+ did not always support the method being used to gather CPU burn metrics.
432
+ This would result in a failure during those transactions. This has been
433
+ fixed.
434
+
435
+ * Fix for rare race condition in Resque instrumentation
436
+
437
+ A race condition in the agent's Resque instrumentation that could cause rare
438
+ Resque job failures in high-throughput Resque setups has been fixed. This bug
439
+ would manifest as an exception with the following error message:
440
+ "RuntimeError: can't add a new key into hash during iteration" and a backtrace
441
+ leading through the PipeChannelManager class in the agent.
442
+
443
+ ## v3.9.5 ##
444
+
445
+ * Per-dyno data on Heroku
446
+
447
+ When running on Heroku, data from the agent can now be broken out by dyno
448
+ name, allowing you to more easily see what's happening on a per-dyno level.
449
+ Dynos on Heroku are now treated in the same way that distinct hosts on other
450
+ platforms work.
451
+
452
+ By default, 'scheduler' and 'run' dyno names will be aggregated into
453
+ 'scheduler.*' and 'run.*' to avoid unbounded growth in the number of reported
454
+ hostnames.
455
+
456
+ Read more about this feature on our Heroku docs page:
457
+ https://docs.mmtrix.com/docs/agents/ruby-agent/miscellaneous/ruby-agent-heroku
458
+
459
+ * HTTP response codes in Insights events
460
+
461
+ The Ruby agent will now capture HTTP response codes from Rack applications
462
+ (including Rails and Sinatra apps) and include them under the httpResponseCode
463
+ attribute on events sent to Insights.
464
+
465
+ * Stricter limits on memory usage of SQL traces
466
+
467
+ The agent now imposes stricter limits on the number of distinct SQL traces
468
+ that it will buffer in memory at any point in time, leading to more
469
+ predictable memory consumption even in exceptional circumstances.
470
+
471
+ * Improved reliability of thread profiling
472
+
473
+ Several issues that would previously have prevented the successful completion
474
+ and transmission of thread profiles to Mmtrix's servers have been fixed.
475
+
476
+ These issues were related to the use of recursion in processing thread
477
+ profiles, and have been addressed by both limiting the maximum depth of the
478
+ backtraces recorded in thread profiles, and eliminating the agent's use of
479
+ recursion in processing profile data.
480
+
481
+ * Allow tracing Rails view helpers with add_method_tracer
482
+
483
+ Previously, attempting to trace a Rails view helper method using
484
+ add_method_tracer on the view helper module would lead to a NoMethodError
485
+ when the traced method was called (undefined method `trace_execution_scoped').
486
+ This has been fixed.
487
+
488
+ This issue was an instance of the Ruby 'dynamic module inclusion' or 'double
489
+ inclusion' problem. Usage of add_method_tracer now no longer relies upon the
490
+ target class having actually picked up the trace_execution_scoped method from
491
+ the Mmtrix::Agent::MethodTracer module.
492
+
493
+ * Improved performance of queue time parsing
494
+
495
+ The number of objects allocated while parsing the front-end timestamps on
496
+ incoming HTTP requests has been significantly reduced.
497
+
498
+ Thanks to Aleksei Magusev for the contribution!
499
+
500
+ ## v3.9.4 ##
501
+
502
+ * Allow agent to use alternate certificate stores
503
+
504
+ When connecting via SSL to Mmtrix services, the Ruby agent verifies its
505
+ connection via a certificate bundle shipped with the agent. This had problems
506
+ with certain proxy configurations, so the `ca_bundle_path` setting in
507
+ mmtrix.yml can now override where the agent locates the cert bundle to use.
508
+
509
+ For more information see the documentation at:
510
+ https://docs.mmtrix.com/docs/agents/ruby-agent/installation-configuration/ssl-settings-ruby-agent
511
+
512
+ * Rails 4.2 beta in tests
513
+
514
+ Although still in beta, a new version of Rails is on its way! We're
515
+ already running our automated test suites against the beta to ensure New
516
+ Mmtrix is ready the day the next Rails is released.
517
+
518
+ * ActiveRecord 4 cached queries fix
519
+
520
+ Queries that were hitting in the ActiveRecord 4.x query cache were
521
+ incorrectly being counted as database time by the agent.
522
+
523
+ * Fix for error in mmtrix.yml loading
524
+
525
+ If your application ran with a RAILS_ENV that was not listed in mmtrix.yml
526
+ recent agent versions would give a NameError rather than a helpful message.
527
+ This has been fixed. Thanks Oleksiy Kovyrin for the patch!
528
+
529
+ ## v3.9.3 ##
530
+
531
+ * Fix to prevent proxy credentials transmission
532
+
533
+ This update prevents proxy credentials set in the agent config file from
534
+ being transmitted to Mmtrix.
535
+
536
+ ## v3.9.2 ##
537
+
538
+ * Added API for ignoring transactions
539
+
540
+ This release adds three new API calls for ignoring transactions:
541
+
542
+ - `Mmtrix::Agent.ignore_transaction`
543
+ - `Mmtrix::Agent.ignore_apdex`
544
+ - `Mmtrix::Agent.ignore_enduser`
545
+
546
+ The first of these ignores a transaction completely: nothing about it will be
547
+ reported to Mmtrix. The second ignores only the Apdex metric for a single
548
+ transaction. The third disables javascript injection for browser monitoring
549
+ for the current transaction.
550
+
551
+ These methods differ from the existing mmtrix_ignore_* method in that they
552
+ may be called *during* a transaction based on some dynamic runtime criteria,
553
+ as opposed to at the class level on startup.
554
+
555
+ See the docs for more details on how to use these methods:
556
+ https://docs.mmtrix.com/docs/agents/ruby-agent/installation-and-configuration/ignoring-specific-transactions
557
+
558
+ * Improved SQL obfuscation
559
+
560
+ SQL queries containing string literals ending in backslash ('\') characters
561
+ would previously not have been obfuscated correctly by the Ruby agent prior to
562
+ transmission to Mmtrix. In addition, SQL comments were left un-obfuscated.
563
+ This has been fixed, and the test coverage for SQL obfuscation has been
564
+ improved.
565
+
566
+ * mmtrix_ignore* methods now work when called in a superclass
567
+
568
+ The mmtrix_ignore* family of methods previously did not apply to subclasses
569
+ of the class from which it was called, meaning that Rails controllers
570
+ inheriting from a single base class where mmtrix_ignore had been called
571
+ would not be ignored. This has been fixed.
572
+
573
+ * Fix for rare crashes in Rack::Request#params on Sinatra apps
574
+
575
+ Certain kinds of malformed HTTP requests could previously have caused
576
+ unhandled exceptions in the Ruby agent's Sinatra instrumentation, in the
577
+ Rack::Request#params method. This has been fixed.
578
+
579
+ * Improved handling for rare errors caused by timeouts in Excon requests
580
+
581
+ In some rare cases, the agent would emit a warning message in its log file and
582
+ abort instrumentation of a transaction if a timeout occurred during an
583
+ Excon request initiated from within that transaction. This has been fixed.
584
+
585
+ * Improved behavior when the agent is misconfigured
586
+
587
+ When the agent is misconfigured by attempting to shut it down without
588
+ it ever having been started, or by attempting to disable instrumentation after
589
+ instrumentation has already been installed, the agent will no longer raise an
590
+ exception, but will instead log an error to its log file.
591
+
592
+ * Fix for ignore_error_filter not working in some configurations
593
+
594
+ The ignore_error_filter method allows you to specify a block to be evaluated
595
+ in order to determine whether a given error should be ignored by the agent.
596
+ If the agent was initially disabled, and then later enabled with a call to
597
+ manual_start, the ignore_error_filter would not work. This has been fixed.
598
+
599
+ * Fix for Capistrano 3 ignoring mmtrix_revision
600
+
601
+ Mmtrix's Capistrano recipes support passing parameters to control the
602
+ values recorded with deployments, but user provided :mmtrix_revision was
603
+ incorrectly overwritten. This has been fixed.
604
+
605
+ * Agent errors logged with ruby-prof in production
606
+
607
+ If the ruby-prof gem was available in an environment without Mmtrix's
608
+ developer mode enabled, the agent would generate errors to its log. This has
609
+ been fixed.
610
+
611
+ * Tighter requirements on naming for configuration environment variables
612
+
613
+ The agent would previously assume any environment variable containing
614
+ 'MMTRIX' was a configuration setting. It now looks for this string as a
615
+ prefix only.
616
+
617
+ Thanks to Chad Woolley for the contribution!
618
+
619
+ ## v3.9.1 ##
620
+
621
+ * Ruby 1.8.7 users: upgrade or add JSON gem now
622
+
623
+ Ruby 1.8.7 is end-of-lifed, and not receiving security updates, so we strongly
624
+ encourage all users with apps on 1.8.7 to upgrade.
625
+
626
+ If you're not able to upgrade yet, be aware that a coming release of the Ruby
627
+ agent will require users of Ruby 1.8.7 to have the 'json' gem available within
628
+ their applications in order to continue sending data to Mmtrix.
629
+
630
+ For more details, see:
631
+ https://docs.mmtrix.com/docs/ruby/ruby-1.8.7-support
632
+
633
+ * Support for new Cross Application Trace view
634
+
635
+ This release enhances cross application tracing with a visualization of
636
+ the cross application calls that a specific Transaction Trace is involved
637
+ in. The new visualization helps you spot bottlenecks in external services
638
+ within Transaction Traces and gives you an end-to-end understanding
639
+ of how the transaction trace is used by other applications and services.
640
+ This leads to faster problem diagnosis and better collaboration across
641
+ teams. All agents involved in the cross application communication must
642
+ be upgraded to see the complete graph. You can view cross application
643
+ traces from in the Transaction Trace drill-down.
644
+
645
+ * High security mode V2
646
+
647
+ The Ruby agent now supports V2 of Mmtrix's high security mode. To enable
648
+ it, you must add 'high_security: true' to your mmtrix.yml file, *and* enable
649
+ high security mode through the Mmtrix web interface. The local agent
650
+ setting must be in agreement with the server-side setting, or the agent will
651
+ shut down and no data will be collected.
652
+
653
+ Customers who already had the server-side high security mode setting enabled
654
+ must add 'high_security: true' to their agent configuration files when
655
+ upgrading to this release.
656
+
657
+ For details on high security mode, see:
658
+ http://docs.mmtrix.com/docs/accounts-partnerships/accounts/security/high-security
659
+
660
+ * Improved memcached instrumentation
661
+
662
+ More accurate instrumentation for the 'cas' command when using version 1.8.0
663
+ or later of the memcached gem. Previous versions of the agent would count all
664
+ time spent in the block given to 'cas' as memcache time, but 1.8.0 and later
665
+ allows us to more accurately measure just the time spent talking to memcache.
666
+
667
+ Many thanks to Francis Bogsanyi for contributing this change!
668
+
669
+ * Improved support for Rails apps launched from outside the app root directory
670
+
671
+ The Ruby agent attempts to resolve the location of its configuration file at
672
+ runtime relative to the directory that the host process is started from.
673
+
674
+ In cases where the host process was started from outside of the application's
675
+ root directory (for example, if the process is started from from '/'), it will
676
+ now also attempt to locate its configuration file based on the value of
677
+ Rails.root for Rails applications.
678
+
679
+ * Better compatibility with ActionController::Live
680
+
681
+ Browser Application Monitoring auto-injection can cause request failures under
682
+ certain circumstances when used with ActionController::Live, so the agent will
683
+ now automatically detect usage of ActionController::Live, and not attempt
684
+ auto-injection for those requests (even if auto-instrumentation is otherwise
685
+ enabled).
686
+
687
+ Many thanks to Rodrigo Rosenfeld Rosas for help diagnosing this issue!
688
+
689
+ * Fix for occasional spikes in external services time
690
+
691
+ Certain kinds of failures during HTTP requests made by an application could
692
+ have previously resulted in the Ruby agent reporting erroneously large amounts
693
+ of time spent in outgoing HTTP requests. This issue manifested most obviously
694
+ in spikes on the 'Web external' band on the main overview graph. This issue
695
+ has now been fixed.
696
+
697
+ * Fix 'rake mmtrix:install' for Rails 4 applications
698
+
699
+ The mmtrix:install rake task was previously not working for Rails 4
700
+ applications and has been fixed.
701
+
702
+ Thanks to Murahashi Sanemat Kenichi for contributing this fix!
703
+
704
+ ## v3.9.0 ##
705
+
706
+ * Rack middleware instrumentation
707
+
708
+ The Ruby agent now automatically instruments Rack middlewares!
709
+
710
+ This means that the agent can now give you a more complete picture of your
711
+ application's response time, including time spent in middleware. It also means
712
+ that requests which previously weren't captured by the agent because they
713
+ never made it to the bottom of your middleware stack (usually a Rails or
714
+ Sinatra application) will now be captured.
715
+
716
+ After installing this version of the Ruby agent, you'll see a new 'Middleware'
717
+ band on your application's overview graph, and individual middlewares will
718
+ appear in transaction breakdown charts and transaction traces.
719
+
720
+ The agent can instrument middlewares that are added from a config.ru file via
721
+ Rack::Builder, or via Rails' middleware stack in Rails 3.0+.
722
+
723
+ This instrumentation may be disabled with the
724
+ disable_middlware_instrumentation configuration setting.
725
+
726
+ For more details, see the documentation for this feature:
727
+
728
+ - http://docs.mmtrix.com/docs/ruby/rack-middlewares
729
+ - http://docs.mmtrix.com/docs/ruby/middleware-upgrade-changes
730
+
731
+ * Capistrano 3.x support
732
+
733
+ Recording application deployments using Capistrano 3.x is now supported.
734
+
735
+ Many thanks to Jennifer Page for the contribution!
736
+
737
+ * Better support for Sidekiq's Delayed extensions
738
+
739
+ Sidekiq jobs executed via the Delayed extensions (e.g. the #delay method) will
740
+ now be named after the actual class that #delay was invoked against, and will
741
+ have their job arguments correctly captured if the sidekiq.capture_params
742
+ configuration setting is enabled.
743
+
744
+ Many thanks to printercu for the contribution!
745
+
746
+ * Improved Apdex calculation with ignored error classes
747
+
748
+ Previously, a transaction resulting in an exception that bubbled up to the top
749
+ level would always be counted as failing for the purposes of Apdex
750
+ calculations (unless the transaction name was ignored entirely). Now,
751
+ exceptions whose classes have been ignored by the
752
+ error_collector.ignore_errors configuration setting will not cause a
753
+ transaction to be automatically counted as failing.
754
+
755
+ * Allow URIs that are not parseable by stdlib's URI if addressable is present
756
+
757
+ There are some URIs that are valid by RFC 3986, but not parseable by Ruby's
758
+ stdlib URI class. The Ruby agent will now attempt to use the addressable gem
759
+ to parse URIs if it is present, allowing requests against these problematic
760
+ URIs to be instrumented.
761
+
762
+ Many thanks to Craig R Webster and Amir Yalon for their help with this issue!
763
+
764
+ * More robust error collection from Resque processes
765
+
766
+ Previously, traced errors where the exception class was defined in the Resque
767
+ worker but not in the Resque master process would not be correctly handled by
768
+ the agent. This has been fixed.
769
+
770
+ * Allow Sinatra apps to set the Mmtrix environment without setting RACK_ENV
771
+
772
+ The MM_TRIX_ENV environment variable may now be used to specify the
773
+ environment the agent should use from its configuration file, independently of
774
+ RACK_ENV.
775
+
776
+ Many thanks to Mario Izquierdo for the contribution!
777
+
778
+ * Better error handling in Browser Application Monitoring injection
779
+
780
+ The agent middleware that injects the JavaScript code necessary for Browser
781
+ Application Monitoring now does a better job of catching errors that might
782
+ occur during the injection process.
783
+
784
+ * Allow disabling of Net::HTTP instrumentation
785
+
786
+ Most instrumentation in the Ruby agent can be disabled easily via a
787
+ configuration setting. Our Net::HTTP instrumentation was previously an
788
+ exception, but now it can also be disabled with the disable_net_http
789
+ configuration setting.
790
+
791
+ * Make Rails constant presence check more defensive
792
+
793
+ The Ruby agent now guards against the (rare) case where an application has a
794
+ Rails constant defined, but no Rails::VERSION constant (because Rails is not
795
+ actually present).
796
+
797
+ Many thanks to Vladimir Kiselev for the contribution!
798
+
799
+ ## v3.8.1 ##
800
+
801
+ * Better handling for Rack applications implemented as middlewares
802
+
803
+ When using a Sinatra application as a middleware around another app (for
804
+ example, a Rails app), or manually instrumenting a Rack middleware wrapped
805
+ around another application, the agent would previously generate two separate
806
+ transaction names in the Mmtrix UI (one for the middleware, and one for
807
+ the inner application).
808
+
809
+ As of this release, the agent will instead unify these two parts into a single
810
+ transaction in the UI. The unified name will be the name assigned to the
811
+ inner-most traced transaction by default. Calls to
812
+ Mmtrix::Agent.set_transaction_name will continue to override the default
813
+ names assigned by the agent's instrumentation code.
814
+
815
+ This change also makes it possible to run X-Ray sessions against transactions
816
+ of the 'inner' application in cases where one instrumented app is wrapped in
817
+ another that's implemented as a middleware.
818
+
819
+ * Support for mongo-1.10.0
820
+
821
+ The Ruby agent now instruments version 1.10.0 of the mongo gem (versions 1.8.x
822
+ and 1.9.x were already supported, and continue to be).
823
+
824
+ * Allow setting configuration file path via an option to manual_start
825
+
826
+ Previously, passing the :config_path option to Mmtrix::Agent.manual_start
827
+ would not actually affect the location that the agent would use to look for
828
+ its configuration file. This has been fixed, and the log messages emitted when
829
+ a configuration file is not found should now be more helpful.
830
+
831
+ ## v3.8.0 ##
832
+
833
+ * Better support for forking and daemonizing dispatchers (e.g. Puma, Unicorn)
834
+
835
+ The agent should now work out-of-the box with no special configuration on
836
+ servers that fork or daemonize themselves (such as Unicorn or Puma in some
837
+ configurations). The agent's background thread will be automatically restarted
838
+ after the first transaction processed within each child process.
839
+
840
+ This change means it's no longer necessary to set the
841
+ 'restart_thread_in_children setting' in your agent configuration file if you
842
+ were doing so previously.
843
+
844
+ * Rails 4.1 support
845
+
846
+ Rails 4.1 has shipped, and the Ruby agent is ready for it! We've been running
847
+ our test suites against the release candidates with no significant issues, so
848
+ we're happy to announce full compatibility with this new release of Rails.
849
+
850
+ * Ruby VM measurements
851
+
852
+ The Ruby agent now records more detailed information about the performance and
853
+ behavior of the Ruby VM, mainly focused around Ruby's garbage collector. This
854
+ information is exposed on the new 'Ruby VM' tab in the UI. For details about
855
+ what is recorded, see:
856
+
857
+ http://docs.mmtrix.com/docs/ruby/ruby-vm-stats
858
+
859
+ * Separate in-transaction GC timings for web and background processes
860
+
861
+ Previously, an application with GC instrumentation enabled, and both web and
862
+ background processes reporting in to it would show an overly inflated GC band
863
+ on the application overview graph, because data from both web and non-web
864
+ transactions would be included. This has been fixed, and GC time during web
865
+ and non-web transactions is now tracked separately.
866
+
867
+ * More accurate GC measurements on multi-threaded web servers
868
+
869
+ The agent could previously have reported inaccurate GC times on multi-threaded
870
+ web servers such as Puma. It will now correctly report GC timings in
871
+ multi-threaded contexts.
872
+
873
+ * Improved ActiveMerchant instrumentation
874
+
875
+ The agent will now trace the store, unstore, and update methods on
876
+ ActiveMerchant gateways. In addition, a bug preventing ActiveMerchant
877
+ instrumentation from working on Ruby 1.9+ has been fixed.
878
+
879
+ Thanks to Troex Nevelin for the contribution!
880
+
881
+ * More robust Real User Monitoring script injection with charset meta tags
882
+
883
+ Previous versions of the agent with Real User Monitoring enabled could have
884
+ injected JavaScript code into the page above a charset meta tag. By the HTML5
885
+ spec, the charset tag must appear in the first 1024 bytes of the page, so the
886
+ Ruby agent will now attempt to inject RUM script after a charset tag, if one
887
+ is present.
888
+
889
+ * More robust connection sequence with Mmtrix servers
890
+
891
+ A rare bug that could cause the agent's initial connection handshake with
892
+ Mmtrix servers to silently fail has been fixed, and better logging has been
893
+ added to the related code path to ease diagnosis of any future issues.
894
+
895
+ * Prevent over-counting of queue time with nested transactions
896
+
897
+ When using add_transaction_tracer on methods called from within a Rails or
898
+ Sinatra action, it was previously possible to get inflated queue time
899
+ measurements, because queue time would be recorded for both the outer
900
+ transaction (the Rails or Sinatra action) and the inner transaction (the
901
+ method given to add_transaction_tracer). This has been fixed, so only the
902
+ outermost transaction will now record queue time.
903
+
904
+ ## v3.7.3 ##
905
+
906
+ * Obfuscation for PostgreSQL explain plans
907
+
908
+ Fixes an agent bug with PostgreSQL where parameters from the original query
909
+ could appear in explain plans sent to Mmtrix servers, even when SQL
910
+ obfuscation was enabled. Parameters from the query are now masked in explain
911
+ plans prior to transmission when transaction_tracer.record_sql is set to
912
+ 'obfuscated' (the default setting).
913
+
914
+ For more information, see:
915
+ https://docs.mmtrix.com/docs/traces/security-for-postgresql-explain-plans
916
+
917
+ * More accurate categorization of SQL statements
918
+
919
+ Some SQL SELECT statements that were previously being mis-categorized as
920
+ 'SQL - OTHER' will now correctly be tagged as 'SQL - SELECT'. This
921
+ particularly affected ActiveRecord users using PostgreSQL.
922
+
923
+ * More reliable Typhoeus instrumentation
924
+
925
+ Fixed an issue where an exception raised from a user-specified on_complete
926
+ block would cause our Typhoeus instrumentation to fail to record the request.
927
+
928
+ * Fix for Puma 2.8.0 cluster mode (3.7.3.204)
929
+
930
+ Puma's 2.8.0 release renamed a hook Mmtrix used to support Puma's cluster
931
+ mode. This resulted in missing data for users running Puma. Thanks Benjamin
932
+ Kudria for the fix!
933
+
934
+ * Fix for deployment command bug (3.7.3.204)
935
+
936
+ Problems with file loading order could result in `mmtrix deployments`
937
+ failing with an unrecognized command error. This has been fixed.
938
+
939
+ ## v3.7.2 ##
940
+
941
+ * Mongo instrumentation improvements
942
+
943
+ Users of the 'mongo' MongoDB client gem will get more detailed instrumentation
944
+ including support for some operations that were not previously captured, and
945
+ separation of aggregate metrics for web transactions from background jobs.
946
+
947
+ An issue with ensure_index when passed a symbol or string was also fixed.
948
+ Thanks Maxime RETY for the report!
949
+
950
+ * More accurate error tracing in Rails 4
951
+
952
+ Traced errors in Rails 4 applications will now be correctly associated with
953
+ the transaction they occurred in, and custom attributes attached to the
954
+ transaction will be correctly attached to the traced error as well.
955
+
956
+ * More accurate partial-rendering metrics for Rails 4
957
+
958
+ View partials are now correctly treated as sub-components of the containing
959
+ template render in Rails 4 applications, meaning that the app server breakdown
960
+ graphs for Rails 4 transactions should be more accurate and useful.
961
+
962
+ * Improved Unicorn 4.8.0 compatibility
963
+
964
+ A rare issue that could lead to spurious traced errors on app startup for
965
+ applications using Unicorn 4.8.0 has been fixed.
966
+
967
+ * meta_request gem compatibility
968
+
969
+ An incompatibility with the meta_request gem has been fixed.
970
+
971
+ * Typhoeus 0.6.4+ compatibility
972
+
973
+ A potential crash with Typhoeus 0.6.4+ when passing a URI object instead of a
974
+ String instance to one of Typhoeus's HTTP request methods has been fixed.
975
+
976
+ * Sequel single threaded mode fix
977
+
978
+ The agent will no longer attempt to run EXPLAIN queries for slow SQL
979
+ statements issued using the Sequel gem in single-threaded mode, since
980
+ doing so could potentially cause crashes.
981
+
982
+ * Additional functionality for add_custom_parameters
983
+
984
+ Calling add_custom_parameters adds parameters to the system codenamed
985
+ Rubicon. For more information, see http://mmtrix.com/software-analytics
986
+
987
+ * Update gem signing cert (3.7.2.195)
988
+
989
+ The certificate used to sign mmtrix_rpm expired in February. This patch
990
+ updates that for clients installing with verification.
991
+
992
+ ## v3.7.1 ##
993
+
994
+ * MongoDB support
995
+
996
+ The Ruby agent provides support for the mongo gem, versions 1.8 and 1.9!
997
+ Mongo calls are captured for transaction traces along with their parameters,
998
+ and time spent in Mongo shows up on the Database tab.
999
+
1000
+ Support for more Mongo gems and more UI goodness will be coming, so watch
1001
+ http://docs.mmtrix.com/docs/ruby/mongo for up-to-date status.
1002
+
1003
+ * Harvest thread restarts for forked and daemonized processes
1004
+
1005
+ Historically framework specific code was necessary for the Ruby agent to
1006
+ successfully report data after an app forked or daemonized. Gems or scripts
1007
+ with daemonizing modes had to wait for agent support or find workarounds.
1008
+
1009
+ With 3.7.1 setting `restart_thread_in_children: true` in your mmtrix.yml
1010
+ automatically restarts the agent in child processes without requiring custom
1011
+ code. For now the feature is opt-in, but future releases may default it on.
1012
+
1013
+ * Fix for missing HTTP time
1014
+
1015
+ The agent previously did not include connection establishment time for
1016
+ outgoing Net::HTTP requests. This has been corrected, and reported HTTP
1017
+ timings should now be more accurate.
1018
+
1019
+ * Fix for Mongo ensure_index instrumentation (3.7.1.182)
1020
+
1021
+ The Mongo instrumentation for ensure_index in 3.7.1.180 was not properly
1022
+ calling through to the uninstrumented version of this method. This has been
1023
+ fixed in 3.7.1.182. Thanks to Yuki Miyauchi for the fix!
1024
+
1025
+ * Correct first reported metric timespan for forking dispatchers (3.7.1.188)
1026
+
1027
+ The first time a newly-forked process (in some configurations) reported metric
1028
+ data, it would use the startup time of the parent process as the start time
1029
+ for that metric data instead of its own start time. This has been fixed.
1030
+
1031
+ ## v3.7.0 ##
1032
+
1033
+ * Official Rubinius support (for Rubinius >= 2.2.1)
1034
+
1035
+ We're happy to say that all known issues with the Ruby agent running on
1036
+ Rubinius have been resolved as of Rubinius version 2.2.1! See
1037
+ http://docs.mmtrix.com/docs/ruby/rubinius for the most up-to-date status.
1038
+
1039
+ * RUM injection updates
1040
+
1041
+ The Ruby agent's code for both automatic and manual injection of Real User
1042
+ Monitoring scripts has been improved. No application changes are required, but
1043
+ the new injection logic is simpler, faster, more robust, and paves the way for
1044
+ future improvements to Real User Monitoring.
1045
+
1046
+ * More robust communication with Mmtrix
1047
+
1048
+ Failures when transmitting data to Mmtrix could cause data to be held over
1049
+ unnecessarily to a later harvest. This has been improved both to handle
1050
+ errors more robustly and consistently, and to send data as soon as possible.
1051
+
1052
+ * Fix for agent not restarting on server-side config changes
1053
+
1054
+ A bug in 3.6.9 caused the agent to not reset correctly after server-side
1055
+ config changes. New settings would not be received without a full process
1056
+ restart. This has been fixed.
1057
+
1058
+ * Blacklisting rake spec tasks
1059
+
1060
+ A blacklist helps the agent avoid starting during rake tasks. Some default
1061
+ RSpec tasks were missing. Thanks for the contribution Kohei Hasegawa!
1062
+
1063
+ ## v3.6.9 ##
1064
+
1065
+ * Experimental Rubinius 2.x support
1066
+
1067
+ The agent is now being tested against the latest version of Rubinius. While
1068
+ support is still considered experimental, you can track the progress at
1069
+ http://docs.mmtrix.com/docs/ruby/rubinius for up to date status.
1070
+
1071
+ * Capture arguments for Resque and Sidekiq jobs
1072
+
1073
+ The agent can optionally record arguments for your Resque and Sidekiq jobs on
1074
+ transaction traces and traced errors. This is disabled by default, but may be
1075
+ enabled by setting resque.capture_params or sidekiq.capture_params.
1076
+
1077
+ Thanks to Juan Ignacio Pumarino, Ken Mayer, Paul Henry, and Eric Saxby for
1078
+ their help with this feature!
1079
+
1080
+ * Supported versions rake task and documentation
1081
+
1082
+ We've improved our documentation for what Ruby and gem versions we support.
1083
+ Run `rake mmtrix:supported_versions` or see the latest agent's versions at
1084
+ https://docs.mmtrix.com/docs/ruby/supported-frameworks.
1085
+
1086
+ * ActiveRecord 4.0 explain plans for JRuby and Rubinius
1087
+
1088
+ The agent's ActiveRecord 4.0 instrumentation could not gather SQL explain
1089
+ plans on JRuby by default because of a dependency on ObjectSpace, which isn't
1090
+ avialable by default. This has been fixed.
1091
+
1092
+ * Fix for Curb http_put_with_mmtrix
1093
+
1094
+ A bug in the agent caused PUT calls in the Curb gem to crash. This has been
1095
+ fixed. Thanks to Michael D'Auria and Kirk Diggler for the contributions!
1096
+
1097
+ * Fix for head position on RUM injection
1098
+
1099
+ Certain unusual HTML documents resulted in browser monitoring injecting
1100
+ incorrect content. Thanks Alex McHale for the contribution!
1101
+
1102
+ * Specify the Content-Type header in developer mode
1103
+
1104
+ Thanks Jared Ning for the contribution!
1105
+
1106
+ ## v3.6.8 ##
1107
+
1108
+ * X-Ray Sessions support
1109
+
1110
+ X-Ray Sessions provide more targeted transaction trace samples and thread
1111
+ profiling for web transactions. For full details see our X-Ray sessions
1112
+ documentation at https://mmtrix.com/docs/site/xray-sessions.
1113
+
1114
+ * Percentiles and Histograms
1115
+
1116
+ The Ruby Agent now captures data that provides percentile and histogram views
1117
+ in the Mmtrix UI.
1118
+
1119
+ * CPU metrics re-enabled for JRuby >= 1.7.0
1120
+
1121
+ To work around a JRuby bug, the Ruby agent stopped gathering CPU metrics on
1122
+ that platform. With the bug fixed, the agent can gather those metrics again.
1123
+ Thanks Bram de Vries for the contribution!
1124
+
1125
+ * Missing Resque transaction traces (3.6.8.168)
1126
+
1127
+ A bug in 3.6.8.164 prevented transaction traces in Resque jobs from being
1128
+ communicated back to Mmtrix. 3.6.8.168 fixes this.
1129
+
1130
+ * Retry on initial connect (3.6.8.168)
1131
+
1132
+ Failure to contact Mmtrix on agent start-up would not properly retry. This
1133
+ has been fixed.
1134
+
1135
+ * Fix potential memory leak on failure to send to Mmtrix (3.6.8.168)
1136
+
1137
+ 3.6.8.164 introduced a potential memory leak when transmission of some kinds
1138
+ of data to Mmtrix servers failed. 3.6.8.168 fixes this.
1139
+
1140
+ ## v3.6.7 ##
1141
+
1142
+ * Resque-pool support
1143
+
1144
+ Resque processes started via the resque-pool gem weren't recognized by the
1145
+ Ruby agent. The agent now starts correctly in those worker processes.
1146
+
1147
+ * Environment-based configuration
1148
+
1149
+ All settings in mmtrix.yml can now be configured via environment variables.
1150
+ See https://mmtrix.com/docs/ruby/ruby-agent-configuration for full details.
1151
+
1152
+ * Additional locking option for Resque (3.6.7.159)
1153
+
1154
+ There have been reports of worker process deadlocks in Resque when using the
1155
+ Ruby agent. An optional lock is now available to avoid those deadlocks. See
1156
+ https://mmtrix.com/docs/ruby/resque-instrumentation for more details.
1157
+
1158
+ * HTTP connection setup timeout (3.6.7.159)
1159
+
1160
+ HTTP initialization in the agent lacked an appropriate timeout,
1161
+ leading to dropouts in reporting under certain network error conditions.
1162
+
1163
+ * Unnecessary requests from Resque jobs (3.6.7.159)
1164
+
1165
+ An issue causing Resque jobs to unnecessarily make requests against Mmtrix
1166
+ servers was fixed.
1167
+
1168
+ * Fix compatibility issues with excon and curb instrumentation
1169
+
1170
+ This release of the agent fixes a warning seen under certain circumstances
1171
+ with the excon gem (most notably, when excon was used by fog), as well as
1172
+ a bug with the curb instrumentation that conflicted with the feedzirra gem.
1173
+
1174
+ * Allow license key to be set by Capistrano variables
1175
+
1176
+ A license key can be passed via a Capistrano variable where previously it
1177
+ could only be in mmtrix.yml. Thanks Chris Marshall for the contribution!
1178
+
1179
+ * Make HTTP client instrumentation aware of "Host" request header
1180
+
1181
+ If a "Host" header is set explicitly on an HTTP request, that hostname will
1182
+ be used for external metrics. Thanks Mislav Marohnić for the contribution!
1183
+
1184
+ * Fix ActiveSupport::Concern warnings with MethodTracer
1185
+
1186
+ Including Mmtrix::Agent::MethodTracer in a class using Concerns could cause
1187
+ deprecation warnings. Thanks Mike Połtyn for the contribution!
1188
+
1189
+ * Fix Authlogic constant name
1190
+
1191
+ Code checking for the Authlogic module was using in the wrong case. Thanks
1192
+ Dharam Gollapudi for the contribution!
1193
+
1194
+ ## v3.6.6 ##
1195
+
1196
+ * HTTPClient and Curb support
1197
+
1198
+ The Ruby agent now supports the HTTPClient and Curb HTTP libraries! Cross
1199
+ application tracing and more is fully supported for these libraries. For more
1200
+ details see https://mmtrix.com/docs/ruby/ruby-http-clients.
1201
+
1202
+ * Sinatra startup improvements
1203
+
1204
+ In earlier agent versions, mmtrix_rpm had to be required after Sinatra to
1205
+ get instrumentation. Now the agent should start when your Sinatra app starts
1206
+ up in rackup, thin, unicorn, or similar web servers.
1207
+
1208
+ * Puma clustered mode support
1209
+
1210
+ Clustered mode in Puma was not reporting data without manually adding a hook
1211
+ to Puma's configuration. The agent will now automatically add this hook.
1212
+
1213
+ * SSL certificate verification
1214
+
1215
+ Early versions of the agent's SSL support provided an option to skip
1216
+ certificate verification. This option has been removed.
1217
+
1218
+ ## v3.6.5 ##
1219
+
1220
+ * Rails 4.0 Support
1221
+
1222
+ The Ruby agent is all set for the recent general release of Rails 4.0! We've
1223
+ been tracking the RC's, and that work paid off. Versions 3.6.5 and 3.6.4 of
1224
+ the Ruby agent should work fine with Rails 4.0.0.
1225
+
1226
+ * Excon and Typhoeus support
1227
+
1228
+ The Ruby agent now supports the Excon and Typhoeus HTTP libraries! For more
1229
+ details see https://mmtrix.com/docs/ruby/ruby-http-clients.
1230
+
1231
+ ## v3.6.4 ##
1232
+
1233
+ * Exception Whitelist
1234
+
1235
+ We've improved exception message handling for applications running in
1236
+ high security mode. Enabling 'high_security' now removes exception messages
1237
+ entirely rather than simply obfuscating any SQL.
1238
+
1239
+ By default this feature affects all exceptions, though you can configure a
1240
+ whitelist of exceptions whose messages should be left intact.
1241
+
1242
+ More details: https://mmtrix.com/docs/ruby/ruby-agent-configuration
1243
+
1244
+ * Fix a race condition affecting some Rails applications at startup
1245
+
1246
+ Some Rails applications using mmtrix_rpm were affected by a race condition
1247
+ at startup that manifested as an error when model classes with associations
1248
+ were first loaded. The cause of these errors has been addressed by moving the
1249
+ generation of the agent's EnvironmentReport on startup from a background
1250
+ thread to the main thread.
1251
+
1252
+ ## v3.6.3 ##
1253
+
1254
+ * Better Sinatra Support
1255
+
1256
+ A number of improvements have been made to our Sinatra instrumentation.
1257
+ More details: https://mmtrix.com/docs/ruby/sinatra-support-in-the-ruby-agent
1258
+
1259
+ Sinatra instrumentation has been updated to more accurately reflect the final
1260
+ route that was actually executed, taking pass and conditions into account.
1261
+
1262
+ Mmtrix middlewares for error collection, real user monitoring, and cross
1263
+ application tracing are automatically inserted into the middleware stack.
1264
+
1265
+ Ignoring routes, similar to functionality available to Rails controllers, is
1266
+ now available in Sinatra as well.
1267
+
1268
+ Routes in 1.4 are properly formatting in transaction names. Thanks Zachary
1269
+ Anker for the contribution!
1270
+
1271
+ * Padrino Support
1272
+
1273
+ Along with improving our support of Sinatra, we've also extended that to
1274
+ supporting Padrino, a framework that builds on Sinatra. Web transactions
1275
+ should show up in Mmtrix now for Padrino apps automatically. The agent has
1276
+ been tested against the latest Padrino in versions 0.11.x and 0.10.x.
1277
+
1278
+ * Main overview graph only shows web transactions
1279
+
1280
+ In the past database times from background jobs mixed with other web transaction
1281
+ metrics in the main overview graph. This often skewed graphs. A common workaround
1282
+ was to send background jobs to a separate application, but that should no longer
1283
+ be necessary as the overview graphs now only represent web transactions.
1284
+
1285
+ ## v3.6.2 ##
1286
+
1287
+ * Sequel support
1288
+
1289
+ The Ruby agent now supports Sequel, a database toolkit for Ruby. This
1290
+ includes capturing SQL calls and model operations in transaction traces, and
1291
+ recording slow SQL calls. See https://mmtrix.com/docs/ruby/sequel-instrumentation
1292
+ for full details.
1293
+
1294
+ * Thread profiling fix
1295
+
1296
+ The prior release of the agent (version 3.6.1) broke thread profiling. A
1297
+ profile would appear to run, but return no data. This has been fixed.
1298
+
1299
+ * Fix for over-counted Net::HTTP calls
1300
+
1301
+ Under some circumstances, calls into Net::HTTP were being counted twice in
1302
+ metrics and transaction traces. This has been fixed.
1303
+
1304
+ * Missing traced errors for Resque applications
1305
+
1306
+ Traced errors weren't displaying for some Resque workers, although the errors
1307
+ were factored into the overall count graphs. This has been fixed, and traced
1308
+ errors should be available again after upgrading the agent.
1309
+
1310
+ ## v3.6.1 ##
1311
+
1312
+ * Full URIs for HTTP requests are recorded in transaction traces
1313
+
1314
+ When recording a transaction trace node for an outgoing HTTP call via
1315
+ Net::HTTP, the agent will now save the full URI (instead of just the hostname)
1316
+ for the request. Embedded credentials, the query string, and the fragment will
1317
+ be stripped from the URI before it is saved.
1318
+
1319
+ * Simplify Agent Autostart Logic
1320
+
1321
+ Previously the agent would only start when it detected a supported
1322
+ "Dispatcher", meaning a known web server or background task framework. This
1323
+ was problematic for customers using webservers that the agent was not
1324
+ configured to detect (e.g. Puma). Now the agent will attempt to report any
1325
+ time it detects it is running in a monitored environment (e.g. production).
1326
+ There are two exceptions to this. The agent will not autostart in a rails
1327
+ console or irb session or when the process was invoked by a rake task (e.g.
1328
+ rake assets:precompile). The MMTRIX_ENABLE environment variable can be set
1329
+ to true or false to force the agent to start or not start.
1330
+
1331
+ * Don't attempt to resolve collector hostname when proxy is in use
1332
+
1333
+ When a proxy is configured, the agent will not attempt to lookup and cache the
1334
+ IP address of Mmtrix server to which it is sending data, since DNS may not
1335
+ be available in some environments. Thanks to Bill Kirtley for the contribution
1336
+
1337
+ * Added Mmtrix::Agent.set_transaction_name and Mmtrix::Agent.get_transaction_name
1338
+
1339
+ Ordinarily the name of your transaction is defined up-front, but if you'd like to
1340
+ change the name of a transaction while it is still running you can use
1341
+ **Mmtrix::Agent.set_transaction_name()**. Similarly, if you need to know the name
1342
+ of the currently running transaction, you can use **Mmtrix::Agent.get_transaction_name()**.
1343
+
1344
+ ## v3.6.0 ##
1345
+
1346
+ * Sidekiq support
1347
+
1348
+ The Ruby agent now supports the Sidekiq background job framework. Traces from
1349
+ Sidekiq jobs will automatically show up in the Background tasks on Mmtrix
1350
+ similar to Resque and Delayed::Job tasks.
1351
+
1352
+ * Improved thread safety
1353
+
1354
+ The primary metrics data structures in the Ruby agent are now thread safe.
1355
+ This should provide better reliability for the agent under JRuby and threaded
1356
+ scenarios such as Sidekiq or Puma.
1357
+
1358
+ * More robust environment report
1359
+
1360
+ The agent's analysis of the local environment (e.g. OS, Processors, loaded
1361
+ gems) will now work in a wider variety of app environments, including
1362
+ Sinatra.
1363
+
1364
+ * Experimental Rainbows! support
1365
+
1366
+ The Ruby agent now automatically detects and instruments the Rainbows! web
1367
+ server. This support is considered experimental at present, and has not been
1368
+ tested with all dispatch modes.
1369
+
1370
+ Thanks to Joseph Chen for the contribution.
1371
+
1372
+ * Fix a potential file descriptor leak in Resque instrumentation
1373
+
1374
+ A file descriptor leak that occurred when DontPerform exceptions were used to
1375
+ abort processing of a job has been fixed. This should allow the Resque
1376
+ instrumentation work correctly with the resque-lonely_job gem.
1377
+
1378
+ ## v3.5.8 ##
1379
+
1380
+ * Key Transactions
1381
+
1382
+ The Ruby agent now supports Key Transactions! Check out more details on the
1383
+ feature at https://mmtrix.com/docs/site/key-transactions
1384
+
1385
+ * Ruby 2.0
1386
+
1387
+ The Ruby agent is compatible with Ruby 2.0.0 which was just released.
1388
+
1389
+ * Improved Sinatra instrumentation
1390
+
1391
+ Several cases around the use of conditions and pass in Sinatra are now
1392
+ better supported by the Ruby agent. Thanks Konstantin for the help!
1393
+
1394
+ * Outbound HTTP headers
1395
+
1396
+ Adds a 'X-Mmtrix-ID' header to outbound Net::HTTP requests. This change
1397
+ helps improve the correlation of performance between services in a service-
1398
+ oriented architecture for a forthcoming feature. In the meantime, to disable
1399
+ the header, set this in your mmtrix.yml:
1400
+
1401
+ cross_application_tracer:
1402
+ enabled: false
1403
+
1404
+ * Automatically detect Resque dispatcher
1405
+
1406
+ The agent does better auto-detection for the Resque worker process.
1407
+ This should reduce the need to set MM_TRIX_DISPATCHER=resque directly.
1408
+
1409
+ ## v3.5.7 ##
1410
+
1411
+ * Resolved some issues with tracking of frontend queue time, particularly
1412
+ when the agent is running on an app hosted on Heroku. The agent will now
1413
+ more reliably parse the headers described in
1414
+ https://mmtrix.com/docs/features/tracking-front-end-time and will
1415
+ automatically detect whether the times provided are in seconds,
1416
+ milliseconds or microseconds.
1417
+
1418
+ ## v3.5.6 ##
1419
+
1420
+ * Use HTTPS by default
1421
+
1422
+ The agent now defaults to using SSL when it communicates with Mmtrix's
1423
+ servers. By default is already configured Mmtrix does not transmit any
1424
+ sensitive information (e.g. SQL parameters are masked), but SSL adds an
1425
+ additional layer of security. Upgrading customers may need to remove the
1426
+ "ssl: false" directive from their mmtrix.yml to enable ssl. Customers on
1427
+ Jruby may need to install the jruby-openssl gem to take advantage of this
1428
+ feature.
1429
+
1430
+ * Fix two Resque-related issues
1431
+
1432
+ Fixes a possible hang on exit of an instrumented Resque master process
1433
+ (https://github.com/defunkt/resque/issues/578), as well as a file descriptor
1434
+ leak that could occur during startup of the Resque master process.
1435
+
1436
+ * Fix for error graph over 100%
1437
+
1438
+ Some errors were double counted toward the overall error total. This
1439
+ resulted in graphs with error percentages over 100%. This duplication did
1440
+ not impact the specific error traces captured, only the total metric.
1441
+
1442
+ * Notice gracefully handled errors in Sinatra
1443
+
1444
+ When show_exceptions was set to false in Sinatra, errors weren't caught
1445
+ by Mmtrix's error collector. Now handled errors also have the chance
1446
+ to get reported back.
1447
+
1448
+ * Ruby 2.0 compatibility fixes
1449
+
1450
+ Ruby 2.0 no longer finds protected methods by default, but will with a flag.
1451
+ http://tenderlovemaking.com/2012/09/07/protected-methods-and-ruby-2-0.html
1452
+
1453
+ Thanks Ravil Bayramgalin and Charlie Somerville for the fixes.
1454
+
1455
+ * Auto-detect Trinidad as dispatcher
1456
+
1457
+ Code already existing for detecting Trinidad as a dispatcher, but was only
1458
+ accessible via an ENV variable. This now auto-detects on startup. Thanks
1459
+ Robert Rasmussen for catching that.
1460
+
1461
+ * Coercion of types in collector communication
1462
+
1463
+ Certain metrics can be recorded with a Ruby Rational type, which JSON
1464
+ serializes as a string rather than a floating point value. We now treat
1465
+ coerce each outgoing value, and log issues before sending the data.
1466
+
1467
+ * Developer mode fix for chart error
1468
+
1469
+ Added require to fix a NameError in developer mode for summary page. Thanks
1470
+ to Ryan B. Harvey.
1471
+
1472
+ * Don't touch deprecated RAILS_ROOT if on Rails 3
1473
+
1474
+ Under some odd startup conditions, we would look for the RAILS_ROOT constant
1475
+ after failing to find the ::Rails.root in a Rails 3 app, causing deprecation
1476
+ warnings. Thanks for Adrian Irving-Beer for the fix.
1477
+
1478
+ ## v3.5.5 ##
1479
+
1480
+ * Add thread profiling support
1481
+
1482
+ Thread profiling performs statistical sampling of backtraces of all threads
1483
+ within your Ruby processes. This feature requires MRI >= 1.9.2, and is
1484
+ controlled via the Mmtrix web UI. JRuby support (in 1.9.x compat mode) is
1485
+ considered experimental, due to issues with JRuby's Thread#backtrace.
1486
+
1487
+ * Add audit logging capability
1488
+
1489
+ The agent can now log all of the data it sends to the Mmtrix servers to
1490
+ a special log file for human inspection. This feature is off by default, and
1491
+ can be enabled by setting the audit_log.enabled configuration key to true.
1492
+ You may also control the location of the audit log with the audit_log.path key.
1493
+
1494
+ * Use config system for dispatcher, framework, and config file detection
1495
+
1496
+ Several aspects of the agent's configuration were not being handled by the
1497
+ configuration system. Detection/configuration of the dispatcher (e.g. passenger,
1498
+ unicorn, resque), framework (e.g. rails3, sinatra), and mmtrix.yml
1499
+ location are now handled via the Agent environment, manual, and default
1500
+ configuration sources.
1501
+
1502
+ * Updates to logging across the agent
1503
+
1504
+ We've carefully reviewed the logging messages that the agent outputs, adding
1505
+ details in some cases, and removing unnecessary clutter. We've also altered
1506
+ the startup sequence to ensure that we don't spam STDOUT with messages
1507
+ during initialization.
1508
+
1509
+ * Fix passing environment to manual_start()
1510
+
1511
+ Thanks to Justin Hannus. The :env key, when passed to Agent.manual_start,
1512
+ can again be used to specify which section of mmtrix.yml is loaded.
1513
+
1514
+ * Rails 4 support
1515
+
1516
+ This release includes preliminary support for Rails 4 as of 4.0.0.beta.
1517
+ Rails 4 is still in development, but the agent should work as expected for
1518
+ people who are experimenting with the beta.
1519
+
1520
+ ## v3.5.4 ##
1521
+
1522
+ * Add queue time support for sinatra apps
1523
+
1524
+ Sinatra applications can now take advantage of front end queue time
1525
+ reporting. Thanks to Winfield Peterson for this contribution.
1526
+
1527
+ * Simplify queue time configuration for nginx 1.2.6+
1528
+
1529
+ Beginning in version 1.2.6, recently released as a development version, the
1530
+ $msec variable can be used to set an http header. This change allows front
1531
+ end queue time to be tracked in Mmtrix simply by adding this line to the
1532
+ nginx config:
1533
+
1534
+ proxy_set_header X-Queue-Start "t=${msec}000"
1535
+
1536
+ It will no longer be necessary to compile a patched version of nginx or
1537
+ compile in the perl or lua module to enable this functionality.
1538
+
1539
+ Thanks to Lawrence Pit for the contribution.
1540
+
1541
+ * Report back build number and stage along with version info
1542
+
1543
+ In the 3.5.3 series the agent would fail to report its full version number
1544
+ to Mmtrix's environment report. For example it would report its version
1545
+ as 3.5.3 instead of 3.5.3.25 or 3.5.3.25.beta. The agent will now report
1546
+ its complete version number as defined in mmtrix_rpm.gemspec.
1547
+
1548
+ * The host and the port that the agent reports to can now be set from environment vars
1549
+
1550
+ The host can be set with MM_TRIX_HOST and the port with MM_TRIX_PORT. These setting
1551
+ will override any other settings in your mmtrix.yml.
1552
+
1553
+ * Fix RUM reporting to multiple applications
1554
+
1555
+ When the agent is configured to report to multiple "roll up" applications
1556
+ RUM did not work correctly.
1557
+
1558
+ ## v3.5.3 ##
1559
+
1560
+ * Update the collector protocol to use JSON and Ruby primitives
1561
+
1562
+ The communication between the agent and the Mmtrix will not longer be
1563
+ marshaled Ruby objects, but rather JSON in the case of Ruby 1.9 and marshaled
1564
+ Ruby primitives in the case of 1.8. This results in greater harvest efficiency
1565
+ as well as feature parity with other Mmtrix agents.
1566
+
1567
+ * Fix incorrect application of conditions in sinatra instrumentation
1568
+
1569
+ The agent's sinatra instrumentation was causing sinatra's conditions to
1570
+ be incorrectly applied in some obscure cases. The bug was triggered
1571
+ when a condition was present on a lower priority route that would match
1572
+ the current request, except for the presence of a higher priority route.
1573
+
1574
+ ## v3.5.2 ##
1575
+
1576
+ * Simplified process of running agent test suite and documented code
1577
+ contribution process in GUIDELINES_FOR_CONTRIBUTING.
1578
+
1579
+ ## v3.5.1 ##
1580
+
1581
+ * Enabling Memory Profiling on Lion and Mountain Lion
1582
+
1583
+ The agent's list of supported platforms for memory profiling wasn't correctly checking
1584
+ for more recent versions of OS X.
1585
+
1586
+ * Fixed an arity issue encountered when calling mmtrix_notice_error from Rails applications.
1587
+
1588
+ * End user queue time was not being properly reported, works properly now.
1589
+
1590
+ * Server-side configuration for ignoring errors was not being heeded by agent.
1591
+
1592
+ * Better handling of a thread safety issue.
1593
+
1594
+ Some issues may remain, which we are working to address, but they should be gracefully handled
1595
+ now, rather than crashing the running app.
1596
+
1597
+ * Use "java_import" rather than "include_class" when require Java Jars into a JRuby app.
1598
+
1599
+ Thanks to Jan Habermann for the pull request
1600
+
1601
+ * Replaced alias_method mechanism with super call in DataMapper instrumentation.
1602
+
1603
+ Thanks to Michael Rykov for the pull request
1604
+
1605
+ * Fixed the Rubinius GC profiler.
1606
+
1607
+ Thanks to Dirkjan Bussink
1608
+
1609
+ * Use ActiveSupport.on_load to load controller instrumentation Rails 3.
1610
+
1611
+ Thanks to Jonathan del Strother
1612
+
1613
+ * Reduce the number of thread local reference in a particular high traffic method
1614
+
1615
+ Thanks to Jeremy Kemper
1616
+
1617
+ ## v3.5.0.1 ##
1618
+
1619
+ * (Fix) Due to a serious resource leak we have ended support for versions of Phusion Passenger
1620
+ older than 2.1.1. Users of older versions are encouraged upgrade to a more recent version.
1621
+
1622
+ ## v3.5.0 ##
1623
+
1624
+ * (Fix) RUM Stops Working After 3.4.2.1 Agent Upgrade
1625
+
1626
+ v3.4.2.1 introduced a bug that caused the browser monitor auto instrumentation
1627
+ (for RUM) default to be false. The correct value of true is now used
1628
+
1629
+ * When the Ruby Agent detects Unicorn as the dispatcher it creates an INFO level log message
1630
+ with additional information
1631
+
1632
+ To help customers using Unicorn, if the agent detects it (Unicorn) is being used as the
1633
+ dispatcher an INFO level log message it created that includes a link to Mmtrix
1634
+ online doc that has additional steps that may be required to get performance data reporting.
1635
+
1636
+ * (Fix) In version 3.4.2 of the Ruby Agent the server side value for Apdex T was disregarded
1637
+
1638
+ With version 3.4.2 of the agent, the value set in the mmtrix.yml file took precedence over the
1639
+ value set in the Mmtrix UI. As of version 3.5.0 only the value for Apdex T set in the
1640
+ Mmtrix UI will be used. Any setting in the yaml file will be ignored.
1641
+
1642
+ * Improved Error Detection/Reporting capabilities for Rails 3 apps
1643
+
1644
+ Some errors are missed by the agent's exception reporting handlers because they are
1645
+ generated in the rails stack, outside of the instrumented controller action. A Rack
1646
+ middleware is now included that can detect these errors as they bubble out of the middleware stack.
1647
+ Note that this does not include Routing Errors.
1648
+
1649
+ * The Ruby Agent now logs certain information it receives from the Mmtrix servers
1650
+
1651
+ After connecting to the Mmtrix servers the agent logs the Mmtrix URL
1652
+ of the app it is reporting to.
1653
+
1654
+ * GC profiling overhead for Ruby 1.9 reduced
1655
+
1656
+ For Ruby 1.9 the amount of time spent in GC profiling has been reduced.
1657
+
1658
+ * Know issue with Ruby 1.8.7-p334, sqlite3-ruby 1.3.0 or older, and resque 1.23.0
1659
+
1660
+ The Ruby Agent will not work in conjunction with Ruby 1.8.7-p334, sqlite3-ruby 1.3.3
1661
+ or earlier, and resque 1.23.0. Your app will likely stop functioning. This is a known problem
1662
+ with Ruby versions up to 1.8.7-p334. Upgrading to the last release of Ruby 1.8.7
1663
+ is recommended. This issue has been present in every version of the agent we've tested
1664
+ going back for a year.
1665
+
1666
+
1667
+ ## v3.4.2.1 ##
1668
+
1669
+ * Fix issue when app_name is nil
1670
+
1671
+ If the app_name setting ends up being nil an exception got generated and the application
1672
+ wouldn't run. This would notably occur when running a Heroku app locally without the
1673
+ MM_TRIX_APP_NAME environment variable set. A nil app_name is now detected and an
1674
+ error logged specifying remediation.
1675
+
1676
+ ## v3.4.2 ##
1677
+
1678
+ * The RUM NRAGENT tk value gets more robustly sanitized to prevent potential XSS vulnerabilities
1679
+
1680
+ The code that scrubs the token used in Real User Monitoring has been enhanced to be
1681
+ more robust.
1682
+
1683
+ * Support for Apdex T in server side configuration
1684
+
1685
+ For those using server side configuration the Ruby Agent now supports setting
1686
+ the Apdex T value via the Mmtrix UI.
1687
+
1688
+ * Refactoring of agent config code
1689
+
1690
+ The code that reads the configuration information and configures the agent
1691
+ got substantially reorganized, consolidated, simplified, and made more robust.
1692
+
1693
+ ## v3.4.1 ##
1694
+ #### Bug Fixes ####
1695
+ * Fix edge case in RUM auto instrumentation where X-UA-Compatible meta tag is
1696
+ present but </head> tag is missing.
1697
+
1698
+ There is a somewhat obscure edge case where RUM auto instrumentation will
1699
+ crash a request. The issue seems to be triggered when the X-UA-Compatible
1700
+ meta tag is present and the </head> tag is missing.
1701
+
1702
+ * Fixed reference to @service.request_timeout to @request_timeout in
1703
+ mmtrix_service.rb. (Thanks to Matthew Savage)
1704
+
1705
+ When a timeout occurred during connection to the collector an "undefined
1706
+ method `request_timeout' for nil:NilClass'" would get raised.
1707
+
1708
+ * preserve visibility on traced methods.
1709
+
1710
+ Aliased methods now have the same visibility as the original traced method.
1711
+ A couple of the esoteric methods created in the process weren't getting the
1712
+ visibility set properly.
1713
+
1714
+ * Agent service does not connect to directed shard collector after connecting
1715
+ to proxy
1716
+
1717
+ After connecting to collector proxy name of real collector was updated, but
1718
+ ip address was not being updated causing connections to go to the proxy.
1719
+ Agent now looks up ip address for real collector.
1720
+
1721
+ * corrupt marshal data from pipe children crashing agent
1722
+
1723
+ If the agent received corrupted data from the Reqsue worker child agent
1724
+ it could crash the agent itself. fixed.
1725
+
1726
+ * should reset RubyBench GC counter between polls
1727
+
1728
+ On Ruby REE, the GC profiler does not reset the counter between polls. This
1729
+ is only a problem if GC could happen *between* transactions, as in, for
1730
+ example, out-of-band GC in Unicorn. fixed.
1731
+
1732
+ v3.4.0.1
1733
+ * Prevent the agent from resolving the collector address when disabled.
1734
+ * Fix for error collector configuration that was introduced during beta.
1735
+ * Preserve method visibility when methods are traced with #add_method_tracer and #add_transaction_tracer
1736
+
1737
+ v3.4.0
1738
+ * Major refactor of data transmission mechanism. This enabled child processes to send data to parent processes, which then send the data to the Mmtrix service. This should only affect Resque users, dramatically improving their experience.
1739
+ * Moved Resque instrumentation from rpm_contrib to main agent. Resque users should discontinue use of rpm_contrib or upgrade to 2.1.11.
1740
+ * Resolve issue with configuring the Error Collector when using server-side configuration.
1741
+
1742
+ v3.3.5
1743
+ * [FIX] Allow tracing of methods ending in ! and ?
1744
+ * [PERF] Give up after scanning first 50k of the response in RUM
1745
+ auto-instrumentation.
1746
+ * [FIX] Don't raise when extracting metrics from SQL queries with non UTF-8 bytes.
1747
+ * Replaced "Custom/DJ Locked Jobs" metric with new metrics for
1748
+ monitoring DelayedJob: queue_length, failed_jobs, and locked_jobs, all under
1749
+ Workers/DelayedJob. queue_length is also broken out by queue name or priority
1750
+ depending on the version of DelayedJob deployed.
1751
+
1752
+ v3.3.4.1
1753
+ * Bug fix when rendering empty collection in Rails 3.1+
1754
+
1755
+ v3.3.4
1756
+ * Rails 3 view instrumentation
1757
+
1758
+ v3.3.3
1759
+ * Improved Sinatra instrumentation
1760
+ * Limit the number of nodes collected in long running transactions to prevent leaking memory
1761
+
1762
+ v3.3.2.1
1763
+ * [SECURITY] fix for cookie handling by End User Monitoring instrumentation
1764
+
1765
+ v3.3.2
1766
+ * deployments recipe change: truncate git SHAs to 7 characters
1767
+ * Fixes for obfuscation of PostgreSQL and SQLite queries
1768
+ * Fix for lost database connections when using a forking framework
1769
+ * Workaround for RedHat kernel bug which prevented blocking reads of /proc fs
1770
+ * Do not trap signals when handling exceptions
1771
+
1772
+ v3.3.1
1773
+ * improved Ruby 1.8.6 support
1774
+ * fix for issues with RAILS_ROOT deprecation warnings
1775
+ * fixed incorrect 1.9 GC time reporting
1776
+ * obfuscation for Slow SQL queries respects transaction trace config
1777
+ * fix for RUM instrumentation repoting bad timing info in some cases
1778
+ * refactored ActiveRecord instrumentation, no longer requires Rails
1779
+
1780
+ v3.3.0
1781
+ * fix for GC instrumentation when using Ruby 1.9
1782
+ * new feature to correlate browser and server transaction traces
1783
+ * new feature to trace slow sql statements
1784
+ * fix to help cope with malformed rack responses
1785
+ * do not try to instrument versions of ActiveMerchant that are too old
1786
+
1787
+ v3.2.0.1
1788
+ * Updated LICENSE
1789
+ * Updated links to support docs
1790
+
1791
+ v3.2.0
1792
+ * Fix over-detection of mongrel and unicorn and only start the agent when
1793
+ actual server is running
1794
+ * Improve developer mode backtraces to support ruby 1.9.2, windows
1795
+ * Fixed some cases where Memcache instrumentation was failing to load
1796
+ * Ability to set log destination by MM_TRIX_LOG env var
1797
+ * Fix to mutex lib load issue
1798
+ * Performance enhancements (thanks to Jeremy Kemper)
1799
+ * Fix overly verbose STDOUT message (thanks to Anselm Helbig)
1800
+
1801
+ v3.1.2
1802
+ * Fixed some thread safety issues
1803
+ * Work around for Ruby 1.8.7 Marshal crash bug
1804
+ * Numerous community patches (Gabriel Horner, Bradley Harris, Diego Garcia,
1805
+ Tommy Sullivan, Greg Hazel, John Thomas Marino, Paul Elliott, Pan Thomakos)
1806
+ * Fixed RUM instrumentation bug
1807
+
1808
+ v3.1.1
1809
+ * Support for Rails 3.1 (thanks to Ben Hoskings via github)
1810
+ * Support for Rubinius
1811
+ * Fixed issues affecting some Delayed Job users where log files were not appearing
1812
+ * Fixed an issue where some instrumentation might not get loaded in Rails apps
1813
+ * Fix for memcached cas method (thanks to Andrew Long and Joseph Palermo )
1814
+ * Fix for logger deprecation warning (thanks to Jonathan del Strother via github)
1815
+ * Support for logging to STDOUT
1816
+ * Support for Spymemcached client on jruby
1817
+
1818
+ v3.1.0
1819
+ * Support for aggregating data from short-running
1820
+ processes to reduce reporting overhead
1821
+ * Numerous bug fixes
1822
+ * Increased unit test coverage
1823
+
1824
+ v3.0.1
1825
+ * Updated Real User Monitoring to reduce javascript size and improve
1826
+ compatibility, fix a few known bugs
1827
+
1828
+ v3.0.0
1829
+ * Support for Real User Monitoring
1830
+ * Back end work on internals to improve reliability
1831
+ * added a 'log_file_name' and 'log_file_path' configuration variable to allow
1832
+ setting the path and name of the agent log file
1833
+ * Improve reliability of statistics calculations
1834
+ * Remove some previously deprecated methods
1835
+ * Remove Sequel instrumentation pending more work
1836
+
1837
+ v2.14.1
1838
+ * Avoid overriding methods named 'log' when including the MethodTracer module
1839
+ * Ensure that all load paths for 'mmtrix/agent' go through 'mmtrix/control' first
1840
+ * Remove some debugging output from tests
1841
+
1842
+ v2.14.0
1843
+ * Dependency detection framework to prevent multi-loading or early-loading
1844
+ of instrumentation files
1845
+
1846
+ v2.13.5
1847
+ * Moved the API helper to the github mmtrix_api gem.
1848
+ * Revamped queue time to include server, queue, and middleware time
1849
+ * Increased test coverage and stability
1850
+ * Add Trinidad as a dispatcher (from Calavera, on github)
1851
+ * Sequel instrumentation from Aman Gupta
1852
+ * patches to 1.9 compatibility from dkastner on github
1853
+ * Support for 1.9.2's garbage collection instrumentation from Justin Weiss
1854
+ * On Heroku, existing queue time headers will be detected
1855
+ * Fix rack constant scoping in dev mode for 1.9 (Rack != ::Rack)
1856
+ * Fixes for instrumentation loading failing on Exception classes that
1857
+ are not subclasses of StandardError
1858
+ * Fix active record instrumentation load order for Rails 3
1859
+
1860
+ v2.13.4
1861
+ * Update DNS lookup code to remove hardcoded IP addresses
1862
+
1863
+ v2.13.3
1864
+ * Dalli instrumentation from Mike Perham (thanks Mike)
1865
+ * Datamapper instrumentation from Jordan Ritter (thanks Jordan)
1866
+ * Apdex now defaults to 0.5
1867
+ !!! Please be aware that if you are not setting an apdex,
1868
+ !!! this will cause a change in the apparent performance of your app.
1869
+ * Make metric hashes threadsafe (fixes problems sending metrics in Jruby
1870
+ threaded code)
1871
+ * Delete obsolete links to metric docs in developer mode
1872
+ * Detect gems when using Bundler
1873
+ * Fix mmtrix_ignore in Rails 3
1874
+ * Break metric parser into a separate vendored gem
1875
+ * When using Unicorn, preload_app: true is recommended to get proper
1876
+ after_fork behavior.
1877
+
1878
+ v2.13.2
1879
+ * Remove a puts. Yes, a whole release for a puts.
1880
+
1881
+ v2.13.1
1882
+ * Add missing require in rails 3 framework control
1883
+
1884
+ v2.13.0
1885
+ * developer mode is now a rack middleware and can be used on any framework;
1886
+ it is no longer supported automatically on versions of Rails prior to 2.3;
1887
+ see README for details
1888
+ * memcache key recording for transaction traces
1889
+ * use system_timer gem if available, fall back to timeout lib
1890
+ * address instability issues in JRuby 1.2
1891
+ * renamed executable 'mmtrix_cmd' to 'mmtrix'; old name still supported
1892
+ for backward compatibility
1893
+ * added 'mmtrix install' command to install a mmtrix.yml file in the
1894
+ current directory
1895
+ * optimization to execution time measurement
1896
+ * optimization to startup sequence
1897
+ * change startup sequence so that instrumentation is installed after all
1898
+ other gems and plugins have loaded
1899
+ * add option to override automatic flushing of data on exit--send_data_on_exit
1900
+ defaults to 'true'
1901
+ * ignored errors no longer affect apdex score
1902
+ * added record_transaction method to the api to allow recording
1903
+ details from web and background transactions occurring outside RPM
1904
+ * fixed a bug related to enabling a gold trial / upgrade not sending
1905
+ transaction traces correctly
1906
+
1907
+ v2.12.3
1908
+ * fix regression in startup sequence
1909
+
1910
+ v2.12.2
1911
+ * fix for regression in Rails 2.1 inline rendering
1912
+ * workaround bug found in some rubies that caused a segv and/or NoMemoryError
1913
+ when deflating content for upload
1914
+ * avoid creating connection thread in unicorn/passenger spawners
1915
+
1916
+ v2.12.1
1917
+ * fix bug in profile mode
1918
+ * fix race condition in Delayed::Job instrumentation loading
1919
+ * fix glassfish detection in latest glassfish gem
1920
+
1921
+ v2.12.0
1922
+ * support basic instrumentation for ActsAsSolr and Sunspot
1923
+
1924
+ v2.11.3
1925
+ * fix bug in startup when running JRuby
1926
+
1927
+ v2.11.2
1928
+ * fix for unicorn not reporting when the proc line had 'master' in it
1929
+ * fix regression for passenger 2.0 and earlier
1930
+ * fix after_fork in the shim
1931
+
1932
+ v2.11.1
1933
+ * republished gem without generated rdocs
1934
+
1935
+ v2.11.0
1936
+ * rails3 instrumentation (no developer mode support yet)
1937
+ * removed the ensure_worker_thread started and instead defined an after_fork
1938
+ handler that will set up the agent properly in forked processes.
1939
+ * change at_exit handler so the shutdown always goes after other shutdown
1940
+ handlers
1941
+ * add visibility to active record db transactions in the rpm transaction
1942
+ traces (thanks to jeremy kemper)
1943
+ * fix regression in merb support which caused merb apps not to start
1944
+ * added Mmtrix::Agent.logger to the public api to write to the agent
1945
+ log file.
1946
+ * optimizations to background thread, controller instrumentation, memory
1947
+ usage
1948
+ * add logger method to public_api
1949
+ * support list notation for ignored exceptions in the mmtrix.yml
1950
+
1951
+ v2.10.8
1952
+ * fix bug in delayed_job instrumentation that caused the job queue sampler
1953
+ to run in the wrong place
1954
+ * change startup sequence and code that restarts the worker loop
1955
+ thread
1956
+ * detect the unicorn master and dont start the agent; hook in after_fork
1957
+ * fix problem with the Authlogic metric names which caused errors in
1958
+ developer mode. Authlogic metrics now adhere to the convention of
1959
+ prefixing the name with 'Custom'
1960
+ * allow more correct overriding of transaction trace settings in the
1961
+ call to #manual_start
1962
+ * simplify WorkerLoop and add better protection for concurrency
1963
+ * preliminary support for rails3
1964
+
1965
+ v2.10.6
1966
+ * fix missing URL and referrer on some traced errors and transactions
1967
+ * gather traced errors *after* executing the rescue chain in ActionController
1968
+ * always load controller instrumentation
1969
+ * pick up token validation from mmtrix.yml
1970
+
1971
+ v2.10.5
1972
+ * fix bug in delayed_job instrumentation occurring when there was no DJ log
1973
+
1974
+ v2.10.4
1975
+ * fix incompatibility with Capistrano 2.5.16
1976
+ * strip down URLs reported in transactions and errors to path only
1977
+
1978
+ v2.10.3
1979
+ * optimization to reduce overhead: move background samplers into foreground thread
1980
+ * change default config file to ignore RoutingErrors
1981
+ * moved the background task instrumentation into a separate tab in the RPM UI
1982
+ * allow override of the RPM application name via MMTRIX_APP_NAME environment variable
1983
+ * revised Delayed::Job instrumentation so no manual_start is required
1984
+ * send buffered data on shutdown
1985
+ * expanded support for queue length and queue time
1986
+ * remove calls to starts_with to fix Sinatra and non-rails deployments
1987
+ * fix problem with apdex scores recording too low in some circumstances
1988
+ * switch to jeweler for gem building
1989
+ * minor fixes, test improvements, doc and rakefile improvements
1990
+ * fix incompatibility with Hoptoad where Hoptoad was not getting errors handled by Mmtrix
1991
+ * many other optimizations, bug fixes and documentation improvements
1992
+
1993
+ v2.10.2.
1994
+ * beta release of 2.10
1995
+ * fix bugs with Sinatra app instrumentation
1996
+ * minor doc updates
1997
+
1998
+ v2.10.1.
1999
+ * alpha release of 2.10
2000
+ * rack support, including metal; ignores 404s; requires a module inclusion (see docs)
2001
+ * sinatra support, displays actions named by the URI pattern matched
2002
+ * add API method to abort transaction recording for in-flight transactions
2003
+ * remove account management calls from mmtrix_api.rb
2004
+ * truncating extremely large transaction traces for efficiency
2005
+ * fix error reporting in recipes; add mmtrix_rails_env option to recipes to
2006
+ override the rails env used to pull the app_name out of mmtrix.yml
2007
+ * added TorqueBox recognition (thanks Bob McWhirter)
2008
+ * renamed config settings: enabled => monitor_mode; developer => developer_mode;
2009
+ old names will still work in mmtrix.yml
2010
+ * instrumentation for DelayedJob (thanks Travis Tilley)
2011
+ * added config switches to turn off certain instrumentation when you aren't
2012
+ interested in the metrics, to save on overhead--see mmtrix.yml for details.
2013
+ * add profiling support to dev mode; very experimental!
2014
+ * add 'multi_threaded' config option to indicate when the app is running
2015
+ multi-threaded, so we can disable some instrumentation
2016
+ * fix test failures in JRuby, REE
2017
+ * improve Net::HTTP instrumentation so it's more efficient and distinguishes calls
2018
+ between web and non-web transactions.
2019
+ * database instrumentation notices all database commands in addition to the core commands
2020
+ * add support for textmate to dev mode
2021
+ * added add_transaction_tracer method to support instrumenting methods as
2022
+ if they were web transactions; this will facilitate better visibility of background
2023
+ tasks and eventually things like rack, metal and Sinatra
2024
+ * adjusted apdex scores to reflect time spent in the mongrel queue
2025
+ * fixed incompatibility with JRuby on startup
2026
+ * implemented CPU measure for JRuby which reflects the cpu burn for
2027
+ all controller actions (does not include background tasks)
2028
+ * fixed scope issue with GC instrumentation, subtracting time from caller
2029
+ * added # of GC calls to GC instrumentation
2030
+ * renamed the dispatcher metric
2031
+ * refactored stats_engine code for readability
2032
+ * optimization: reduce wakeup times for harvest thread
2033
+
2034
+ v2.10.0.
2035
+ * alpha release of 2.10
2036
+ * support unicorn
2037
+ * instrumentation of GC for REE and MRE with GC patch
2038
+ * support agent restarting when changes are made to the account
2039
+ * removed #mmtrix_notice_error from Object class, replaced by Mmtrix::Agent#notice_error
2040
+ * collect histogram statistics
2041
+ * add custom parameters to mmtrix_notice_error call to display
2042
+ extra info for errors
2043
+ * add method disable_all_tracing(&block) to execute a block without
2044
+ capturing metrics
2045
+ * mmtrix_ignore now blocks all instrumentation collection for
2046
+ the specified actions
2047
+ * added doc to method_tracer API and removed second arg
2048
+ requirement for add_method_tracer call
2049
+ * instrumentation for Net::HTTP
2050
+ * remove method_tracer shim to avoid timing problems in monitoring daemons
2051
+ * for non-rails daemons, look at APP_ROOT and NRCONFIG env vars for custom locations
2052
+
2053
+ v2.9.9.
2054
+ * Disable at_exit handler for Unicorn which sometimes caused the
2055
+ agent to stop reporting immediately.
2056
+
2057
+ v2.9.8.
2058
+ * add instrumentation for Net::HTTP calls, to show up as "External"
2059
+ * added support for validating agents in the cloud.
2060
+ * recognize Unicorn dispatcher
2061
+ * add Mmtrix module definitions to ActiveRecord instrumentation
2062
+
2063
+ v2.9.5.
2064
+ * Snow Leopard memory fix
2065
+
2066
+ v2.9.4.
2067
+ * clamp size of data sent to server
2068
+ * reset statistics for passenger when forking to avoid erroneous data
2069
+ * fix problem deserializing errors from the server
2070
+ * fix incompatibility with postgres introduced in 2.9.
2071
+
2072
+ v2.9.3.
2073
+ * fix startup failure in Windows due to memory sampler
2074
+ * add JRuby environment information
2075
+
2076
+ v2.9.2.
2077
+ * change default apdex_t to 0.5 seconds
2078
+ * fix bug in deployments introduced by multi_homed setting
2079
+ * support overriding the log in the agent api
2080
+ * fix JRuby problem using objectspace
2081
+ * display custom parameters when looking at transactions in dev mode
2082
+ * display count of sql statements on the list of transactions in dev mode
2083
+ * fixes for merb--thanks to Carl Lerche
2084
+
2085
+ v2.9.1.
2086
+ * add mmtrix_ignore_apdex method to controller classes to allow
2087
+ you to omit some actions from apdex statistics
2088
+ * Add hook for Passenger shutdown events to get more timely shutdown
2089
+ notices; this will help in more accurate memory readings in
2090
+ Passenger
2091
+ * add mmtrix_notice_error to Object class
2092
+ * optional ability to verify SSL certificates, note that this has some
2093
+ performance and reliability implications
2094
+ * support multi-homed host with multiple apps running on duplicate
2095
+ ports
2096
+
2097
+ v2.9.0.
2098
+ Noteworthy Enhancements
2099
+ * give visibility to templates and partials in Rails 2.1 and later, in
2100
+ dev mode and production
2101
+ * change active record metrics to capture statistics in adapter log()
2102
+ call, resulting in lower overhead and improved visibility into
2103
+ different DB operations; only AR operations that are not hitting the
2104
+ query cache will be measured to avoid overhead
2105
+ * added mongrel_rpm to the gem, a standalone daemon listening for custom
2106
+ metric values sent from local processes (experimental); do mongrel_rpm
2107
+ --help
2108
+ * add API for system monitoring daemons (refer to KB articles); changed
2109
+ API for manual starting of the agent; refer to
2110
+ Mmtrix::Agent.manual_start for details
2111
+ * do certificate verification on ssl connections to
2112
+ collector.mmtrix.com
2113
+ * support instances appearing in more than one application by allowing a
2114
+ semicolon separated list of names for the mmtrix.yml app_name
2115
+ setting.
2116
+ * combined agent logfiles into a single logfile
2117
+ * use rpm server time for transaction traces rather than agent time
2118
+
2119
+ Developer Mode (only) Enhancements
2120
+ * show partial rendering in traces
2121
+ * improved formatting of metric names in traces
2122
+ * added number of queries to transactions in the transaction list
2123
+ * added some sorting options for the transaction list
2124
+ * added a page showing the list of active threads
2125
+
2126
+ Compatibility Enhancements
2127
+ * ruby 1.9.1 compatibility
2128
+ * support concurrency when determining busy times, for 2.2 compatibility
2129
+ * in jruby, use Java used heap for memory sampling if the system memory
2130
+ is not accessible from an unsupported platform
2131
+ * jruby will no longer start the agent now when running the console or
2132
+ rake tasks
2133
+ * API support for RPM as a footnote add-in
2134
+ * webrick support restored
2135
+
2136
+ Noteworthy bugfixes
2137
+ * sample memory on linux by reading /proc/#{$$}/status file
2138
+ * fixed ambiguous 'View' metrics showing up in controller breakdown
2139
+ * removed Numeric extensions, including round_to, and to_ms
2140
+ * using a different timeout mechanism when we post data to RPM
2141
+ * remove usage of Rails::Info which had a side effect of enabling
2142
+ ActiveRecord even when it wasn't an active framework
2143
+ * moved CPU sampler off background thread and onto the harvest thread
2144
+ * tests now run cleanly in any rails app using test:mmtrix or
2145
+ test:plugins
2146
+
2147
+ Agent improvements to support future RPM enhancements
2148
+ * add instrumentation to capture metrics on response codes; not yet
2149
+ working in rails 2.3.*
2150
+ * added http referrer to traced errors
2151
+ * capture gem requirements from rails
2152
+ * capture cpu utilization adjusted for processor count
2153
+ * transaction sampling
2154
+
2155
+ v2.8.10.
2156
+ * fix thin support with rails 2.3.2 when using script/server
2157
+ * fix incompatibility with rails 2.3.2 and script/server options
2158
+ processing
2159
+ * minor tweak to environment gathering for gem mode
2160
+
2161
+ v2.8.9.
2162
+ * fix problem finding the mmtrix controller in dev mode
2163
+ * fix incompatibility with older versions of optparse
2164
+ * fix potential jvm problem with jruby
2165
+ * remove test:all task definition to avoid conflicts
2166
+ * change error message about window sampler in windows not supported to a
2167
+ warning message
2168
+
2169
+ v2.8.8.
2170
+ * fix error with jruby on windows
2171
+ * fix problem where webrick was being incorrectly detected causing some
2172
+ problems with mongrel application assignments--had to disable webrick
2173
+ for now
2174
+
2175
+ v2.8.7.
2176
+ * fix for ssl connection hanging problems
2177
+ * fix problem recognizing mongrel in rails 2.3.2
2178
+ * fastcgi support in rails 2.3.2
2179
+ * put back webrick support
2180
+
2181
+ v2.8.6.
2182
+ * fix for capture_params when using file uploads in controller actions
2183
+ * use pure ruby NS lookup for collector host to eliminate possibly
2184
+ blocking applications
2185
+
2186
+ v2.8.5.
2187
+ * fix reference to CommandError which was breaking some cap scripts
2188
+ * fix incompatibility with Rails 2.0 in the server API
2189
+ * fix problem with litespeed with Lite accounts
2190
+ * fix problem when ActiveRecord is disabled
2191
+ * moved merb instrumentation to Merb::Controller instead of
2192
+ AbstractController to address incompatibility with MailController
2193
+ * fix problem in devmode displaying sql with embedded urls
2194
+
2195
+ v2.8.4.
2196
+ * fix bug in capistrano recipe causing cap commands to fail with error
2197
+ about not finding Version class
2198
+
2199
+ v2.8.3.
2200
+ * refactor unit tests so they will run in a generic rails environment
2201
+ * require classes in advance to avoid autoloading. this is to address
2202
+ incompatibilities with desert as well as more flexibility in gem
2203
+ initialization
2204
+ * fixed mmtrix_helper.rb 1.9 incompatibility
2205
+
2206
+ v2.8.2.
2207
+ * fix Ruby 1.9 syntax compatibility errors
2208
+ * update the class loading sanity check, will notify server of errors
2209
+ * fix agent output on script and rake task execution
2210
+
2211
+ v2.8.1.
2212
+ * Convert the deployment information upload script to an executable and
2213
+ put in the bin directory. When installed as a gem this command is
2214
+ symlinked to /usr/bin. Usage: mmtrix_cmd deployments --help
2215
+ * Fix issue invoking api when host is not set in mmtrix.yml
2216
+ * Fix deployments api so it will work from a gem
2217
+ * Fix thin incompatibility in developer mode
2218
+
2219
+ v2.8.0.
2220
+ * add beta of api in mmtrix_api.rb
2221
+ * instrumented dynamic finders in ActiveRecord
2222
+ * preliminary support for capturing deployment information via capistrano
2223
+ * change memory sampler for solaris to use /usr/bin/ps
2224
+ * allow ERB in mmtrix.yml file
2225
+ * merged support for merb into this version
2226
+ * fix incompatibility in the developer mode with the safe_erb plugin
2227
+ * fix module namespace issue causing an error accessing
2228
+ Mmtrix::Instrumentation modules
2229
+ * fix issue where the agent sometimes failed to start up if there was a
2230
+ transient network problem
2231
+ * fix IgnoreSilentlyException message
2232
+
2233
+ v2.7.4.
2234
+ * fix error when trying to serialize some kinds of Enumerable objects
2235
+ * added extra debug logging
2236
+ * added app_name to app mapping
2237
+
2238
+ v2.7.3.
2239
+ * fix compatibility issue with 1.8.5 causing error with Dir.glob
2240
+
2241
+ v2.7.2.
2242
+ * fix problem with passenger edge not being a detected environment
2243
+
2244
+ v2.7.1.
2245
+ * fix problem with skipped dispatcher instrumentation
2246
+
2247
+ v2.7.0.
2248
+ * Repackage to support both plugin and Gem installation
2249
+ * Support passenger/litespeed/jruby application naming
2250
+ * Update method for calculating dispatcher queue time
2251
+ * Show stack traces in RPM Transaction Traces
2252
+ * Capture error source for TemplateErrors
2253
+ * Clean up error stack traces.
2254
+ * Support query plans from postgres
2255
+ * Performance tuning
2256
+ * bugfixes
2257
+
2258
+ v2.5.3.
2259
+ * fix error in transaction tracing causing traces not to show up
2260
+
2261
+ v2.5.2.
2262
+ * fixes for postgres explain plan support
2263
+
2264
+ v2.5.1.
2265
+ * bugfixes
2266
+
2267
+ v2.5.0.
2268
+ * add agent support for rpm 1.1 features
2269
+ * Fix regression error with thin support
2270
+
2271
+ v2.4.3.
2272
+ * added 'mmtrix_ignore' controller class method with :except and :only options for finer grained control
2273
+ over the blocking of instrumentation in controllers.
2274
+ * bugfixes
2275
+
2276
+ v2.4.2.
2277
+ * error reporting in early access
2278
+
2279
+ v2.4.1.
2280
+ * bugfix: initializing developer mode
2281
+
2282
+ v2.4.0.
2283
+ * Beta support for LiteSpeed and Passenger
2284
+
2285
+ v2.3.7.
2286
+ * bugfixes
2287
+
2288
+ v2.3.6.
2289
+ * bugfixes
2290
+
2291
+ v2.3.5.
2292
+ * bugfixes: pie chart data, rails 1.1 compatibility
2293
+
2294
+ v2.3.4.
2295
+ * bugfix
2296
+
2297
+ v2.3.3.
2298
+ * bugfix for non-mysql databases
2299
+
2300
+ v2.3.2.
2301
+ * bugfixes
2302
+ * Add enhancement for Transaction Traces early access feature
2303
+
2304
+ v2.3.1.
2305
+ * bugfixes
2306
+
2307
+ v2.3.0.
2308
+ + Add support for Transaction Traces early access feature
2309
+
2310
+ v2.2.2.
2311
+ * bugfixes
2312
+
2313
+ v2.2.1.
2314
+ + Add rails 2.1 support for Developer Mode
2315
+ + Changes to memory sampler: Add support for JRuby and fix Solaris support.
2316
+ * Stop catching exceptions and start catching StandardError; other exception cleanup
2317
+ * Add protective exception catching to the stats engine
2318
+ * Improved support for thin domain sockets
2319
+ * Support JRuby environments
2320
+
2321
+ v2.1.6.
2322
+ * bugfixes
2323
+
2324
+ v2.1.5.
2325
+ * bugfixes
2326
+
2327
+ v2.1.4.
2328
+ * bugfixes
2329
+
2330
+ v2.1.3.
2331
+ * bugfixes
2332
+
2333
+ v2.1.2.
2334
+ * bugfixes
2335
+
2336
+ v2.1.1.
2337
+ * bugfixes
2338
+
2339
+ v2.1.0.
2340
+ * release for private beta
2341
+
2342
+