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.
- checksums.yaml +7 -0
- data/.gitignore +27 -0
- data/.project +23 -0
- data/.travis.yml +12 -0
- data/.yardopts +21 -0
- data/CHANGELOG +2342 -0
- data/GUIDELINES_FOR_CONTRIBUTING.md +80 -0
- data/Gemfile +3 -0
- data/Guardfile +8 -0
- data/LICENSE +151 -0
- data/README.md +202 -0
- data/Rakefile +154 -0
- data/bin/mmtrix +13 -0
- data/bin/mmtrix_cmd +5 -0
- data/bin/mongrel_rpm +33 -0
- data/bin/nrdebug +279 -0
- data/cert/cacert.pem +1177 -0
- data/config/database.yml +5 -0
- data/config.dot +287 -0
- data/init.rb +32 -0
- data/install.rb +13 -0
- data/lib/conditional_vendored_dependency_detection.rb +7 -0
- data/lib/conditional_vendored_metric_parser.rb +9 -0
- data/lib/mmtrix/agent/agent.rb +1152 -0
- data/lib/mmtrix/agent/agent_logger.rb +184 -0
- data/lib/mmtrix/agent/attribute_filter.rb +242 -0
- data/lib/mmtrix/agent/attribute_processing.rb +62 -0
- data/lib/mmtrix/agent/audit_logger.rb +94 -0
- data/lib/mmtrix/agent/autostart.rb +65 -0
- data/lib/mmtrix/agent/aws_info.rb +90 -0
- data/lib/mmtrix/agent/busy_calculator.rb +117 -0
- data/lib/mmtrix/agent/chained_call.rb +17 -0
- data/lib/mmtrix/agent/commands/agent_command.rb +19 -0
- data/lib/mmtrix/agent/commands/agent_command_router.rb +160 -0
- data/lib/mmtrix/agent/commands/thread_profiler_session.rb +110 -0
- data/lib/mmtrix/agent/commands/xray_session.rb +55 -0
- data/lib/mmtrix/agent/commands/xray_session_collection.rb +161 -0
- data/lib/mmtrix/agent/configuration/default_source.rb +1471 -0
- data/lib/mmtrix/agent/configuration/dotted_hash.rb +50 -0
- data/lib/mmtrix/agent/configuration/environment_source.rb +116 -0
- data/lib/mmtrix/agent/configuration/high_security_source.rb +51 -0
- data/lib/mmtrix/agent/configuration/manager.rb +395 -0
- data/lib/mmtrix/agent/configuration/manual_source.rb +17 -0
- data/lib/mmtrix/agent/configuration/mask_defaults.rb +14 -0
- data/lib/mmtrix/agent/configuration/server_source.rb +117 -0
- data/lib/mmtrix/agent/configuration/yaml_source.rb +155 -0
- data/lib/mmtrix/agent/configuration.rb +35 -0
- data/lib/mmtrix/agent/cross_app_monitor.rb +178 -0
- data/lib/mmtrix/agent/cross_app_tracing.rb +339 -0
- data/lib/mmtrix/agent/custom_event_aggregator.rb +100 -0
- data/lib/mmtrix/agent/database/obfuscation_helpers.rb +78 -0
- data/lib/mmtrix/agent/database/obfuscator.rb +80 -0
- data/lib/mmtrix/agent/database/postgres_explain_obfuscator.rb +46 -0
- data/lib/mmtrix/agent/database.rb +325 -0
- data/lib/mmtrix/agent/datastores/metric_helper.rb +98 -0
- data/lib/mmtrix/agent/datastores/mongo/metric_translator.rb +191 -0
- data/lib/mmtrix/agent/datastores/mongo/obfuscator.rb +39 -0
- data/lib/mmtrix/agent/datastores/mongo/statement_formatter.rb +53 -0
- data/lib/mmtrix/agent/datastores/mongo.rb +29 -0
- data/lib/mmtrix/agent/datastores.rb +191 -0
- data/lib/mmtrix/agent/deprecator.rb +18 -0
- data/lib/mmtrix/agent/encoding_normalizer.rb +82 -0
- data/lib/mmtrix/agent/error_collector.rb +316 -0
- data/lib/mmtrix/agent/event_buffer.rb +84 -0
- data/lib/mmtrix/agent/event_listener.rb +47 -0
- data/lib/mmtrix/agent/event_loop.rb +193 -0
- data/lib/mmtrix/agent/harvester.rb +52 -0
- data/lib/mmtrix/agent/hash_extensions.rb +26 -0
- data/lib/mmtrix/agent/hostname.rb +30 -0
- data/lib/mmtrix/agent/http_clients/curb_wrappers.rb +67 -0
- data/lib/mmtrix/agent/http_clients/excon_wrappers.rb +67 -0
- data/lib/mmtrix/agent/http_clients/httpclient_wrappers.rb +63 -0
- data/lib/mmtrix/agent/http_clients/net_http_wrappers.rb +50 -0
- data/lib/mmtrix/agent/http_clients/typhoeus_wrappers.rb +75 -0
- data/lib/mmtrix/agent/http_clients/uri_util.rb +51 -0
- data/lib/mmtrix/agent/inbound_request_monitor.rb +41 -0
- data/lib/mmtrix/agent/instrumentation/action_controller_subscriber.rb +121 -0
- data/lib/mmtrix/agent/instrumentation/action_view_subscriber.rb +95 -0
- data/lib/mmtrix/agent/instrumentation/active_job.rb +90 -0
- data/lib/mmtrix/agent/instrumentation/active_merchant.rb +37 -0
- data/lib/mmtrix/agent/instrumentation/active_record.rb +105 -0
- data/lib/mmtrix/agent/instrumentation/active_record_4.rb +29 -0
- data/lib/mmtrix/agent/instrumentation/active_record_helper.rb +189 -0
- data/lib/mmtrix/agent/instrumentation/active_record_subscriber.rb +104 -0
- data/lib/mmtrix/agent/instrumentation/acts_as_solr.rb +72 -0
- data/lib/mmtrix/agent/instrumentation/authlogic.rb +25 -0
- data/lib/mmtrix/agent/instrumentation/controller_instrumentation.rb +458 -0
- data/lib/mmtrix/agent/instrumentation/curb.rb +191 -0
- data/lib/mmtrix/agent/instrumentation/data_mapper.rb +167 -0
- data/lib/mmtrix/agent/instrumentation/delayed_job_instrumentation.rb +56 -0
- data/lib/mmtrix/agent/instrumentation/evented_subscriber.rb +100 -0
- data/lib/mmtrix/agent/instrumentation/excon/connection.rb +33 -0
- data/lib/mmtrix/agent/instrumentation/excon/middleware.rb +57 -0
- data/lib/mmtrix/agent/instrumentation/excon.rb +72 -0
- data/lib/mmtrix/agent/instrumentation/grape.rb +111 -0
- data/lib/mmtrix/agent/instrumentation/httpclient.rb +46 -0
- data/lib/mmtrix/agent/instrumentation/ignore_actions.rb +41 -0
- data/lib/mmtrix/agent/instrumentation/memcache.rb +143 -0
- data/lib/mmtrix/agent/instrumentation/merb/controller.rb +44 -0
- data/lib/mmtrix/agent/instrumentation/merb/errors.rb +33 -0
- data/lib/mmtrix/agent/instrumentation/metric_frame.rb +39 -0
- data/lib/mmtrix/agent/instrumentation/middleware_proxy.rb +109 -0
- data/lib/mmtrix/agent/instrumentation/middleware_tracing.rb +87 -0
- data/lib/mmtrix/agent/instrumentation/mongo.rb +128 -0
- data/lib/mmtrix/agent/instrumentation/net.rb +36 -0
- data/lib/mmtrix/agent/instrumentation/padrino.rb +32 -0
- data/lib/mmtrix/agent/instrumentation/passenger_instrumentation.rb +27 -0
- data/lib/mmtrix/agent/instrumentation/queue_time.rb +78 -0
- data/lib/mmtrix/agent/instrumentation/rack.rb +186 -0
- data/lib/mmtrix/agent/instrumentation/rails/action_controller.rb +123 -0
- data/lib/mmtrix/agent/instrumentation/rails/action_web_service.rb +46 -0
- data/lib/mmtrix/agent/instrumentation/rails/errors.rb +51 -0
- data/lib/mmtrix/agent/instrumentation/rails3/action_controller.rb +173 -0
- data/lib/mmtrix/agent/instrumentation/rails3/errors.rb +47 -0
- data/lib/mmtrix/agent/instrumentation/rails4/action_controller.rb +29 -0
- data/lib/mmtrix/agent/instrumentation/rails4/action_view.rb +25 -0
- data/lib/mmtrix/agent/instrumentation/rails4/errors.rb +46 -0
- data/lib/mmtrix/agent/instrumentation/rails_middleware.rb +39 -0
- data/lib/mmtrix/agent/instrumentation/rainbows_instrumentation.rb +26 -0
- data/lib/mmtrix/agent/instrumentation/resque.rb +96 -0
- data/lib/mmtrix/agent/instrumentation/rubyprof.rb +26 -0
- data/lib/mmtrix/agent/instrumentation/sequel.rb +51 -0
- data/lib/mmtrix/agent/instrumentation/sequel_helper.rb +36 -0
- data/lib/mmtrix/agent/instrumentation/sidekiq.rb +72 -0
- data/lib/mmtrix/agent/instrumentation/sinatra/ignorer.rb +52 -0
- data/lib/mmtrix/agent/instrumentation/sinatra/transaction_namer.rb +56 -0
- data/lib/mmtrix/agent/instrumentation/sinatra.rb +188 -0
- data/lib/mmtrix/agent/instrumentation/sunspot.rb +33 -0
- data/lib/mmtrix/agent/instrumentation/typhoeus.rb +78 -0
- data/lib/mmtrix/agent/instrumentation.rb +13 -0
- data/lib/mmtrix/agent/internal_agent_error.rb +18 -0
- data/lib/mmtrix/agent/javascript_instrumentor.rb +196 -0
- data/lib/mmtrix/agent/log_once.rb +39 -0
- data/lib/mmtrix/agent/memory_logger.rb +59 -0
- data/lib/mmtrix/agent/method_tracer.rb +391 -0
- data/lib/mmtrix/agent/method_tracer_helpers.rb +92 -0
- data/lib/mmtrix/agent/mmtrix_service/encoders.rb +38 -0
- data/lib/mmtrix/agent/mmtrix_service/json_marshaller.rb +75 -0
- data/lib/mmtrix/agent/mmtrix_service/marshaller.rb +62 -0
- data/lib/mmtrix/agent/mmtrix_service/pruby_marshaller.rb +56 -0
- data/lib/mmtrix/agent/mmtrix_service.rb +580 -0
- data/lib/mmtrix/agent/null_logger.rb +21 -0
- data/lib/mmtrix/agent/obfuscator.rb +49 -0
- data/lib/mmtrix/agent/parameter_filtering.rb +44 -0
- data/lib/mmtrix/agent/pipe_channel_manager.rb +277 -0
- data/lib/mmtrix/agent/pipe_service.rb +84 -0
- data/lib/mmtrix/agent/rules_engine/replacement_rule.rb +76 -0
- data/lib/mmtrix/agent/rules_engine/segment_terms_rule.rb +48 -0
- data/lib/mmtrix/agent/rules_engine.rb +58 -0
- data/lib/mmtrix/agent/sampled_buffer.rb +51 -0
- data/lib/mmtrix/agent/sampler.rb +64 -0
- data/lib/mmtrix/agent/sampler_collection.rb +72 -0
- data/lib/mmtrix/agent/samplers/cpu_sampler.rb +76 -0
- data/lib/mmtrix/agent/samplers/delayed_job_sampler.rb +111 -0
- data/lib/mmtrix/agent/samplers/memory_sampler.rb +149 -0
- data/lib/mmtrix/agent/samplers/object_sampler.rb +24 -0
- data/lib/mmtrix/agent/samplers/vm_sampler.rb +126 -0
- data/lib/mmtrix/agent/sized_buffer.rb +23 -0
- data/lib/mmtrix/agent/sql_sampler.rb +322 -0
- data/lib/mmtrix/agent/stats.rb +159 -0
- data/lib/mmtrix/agent/stats_engine/gc_profiler.rb +109 -0
- data/lib/mmtrix/agent/stats_engine/metric_stats.rb +237 -0
- data/lib/mmtrix/agent/stats_engine/samplers.rb +22 -0
- data/lib/mmtrix/agent/stats_engine/stats_hash.rb +168 -0
- data/lib/mmtrix/agent/stats_engine.rb +32 -0
- data/lib/mmtrix/agent/supported_versions.rb +259 -0
- data/lib/mmtrix/agent/synthetics_event_buffer.rb +42 -0
- data/lib/mmtrix/agent/synthetics_monitor.rb +50 -0
- data/lib/mmtrix/agent/system_info.rb +251 -0
- data/lib/mmtrix/agent/threading/agent_thread.rb +76 -0
- data/lib/mmtrix/agent/threading/backtrace_node.rb +135 -0
- data/lib/mmtrix/agent/threading/backtrace_service.rb +283 -0
- data/lib/mmtrix/agent/threading/thread_profile.rb +149 -0
- data/lib/mmtrix/agent/traced_method_stack.rb +99 -0
- data/lib/mmtrix/agent/transaction/attributes.rb +163 -0
- data/lib/mmtrix/agent/transaction/developer_mode_sample_buffer.rb +62 -0
- data/lib/mmtrix/agent/transaction/slowest_sample_buffer.rb +25 -0
- data/lib/mmtrix/agent/transaction/synthetics_sample_buffer.rb +25 -0
- data/lib/mmtrix/agent/transaction/trace.rb +150 -0
- data/lib/mmtrix/agent/transaction/trace_node.rb +190 -0
- data/lib/mmtrix/agent/transaction/transaction_sample_buffer.rb +105 -0
- data/lib/mmtrix/agent/transaction/xray_sample_buffer.rb +64 -0
- data/lib/mmtrix/agent/transaction.rb +940 -0
- data/lib/mmtrix/agent/transaction_event_aggregator.rb +265 -0
- data/lib/mmtrix/agent/transaction_metrics.rb +57 -0
- data/lib/mmtrix/agent/transaction_sample_builder.rb +141 -0
- data/lib/mmtrix/agent/transaction_sampler.rb +317 -0
- data/lib/mmtrix/agent/transaction_state.rb +153 -0
- data/lib/mmtrix/agent/transaction_timings.rb +57 -0
- data/lib/mmtrix/agent/utilization_data.rb +64 -0
- data/lib/mmtrix/agent/vm/jruby_vm.rb +40 -0
- data/lib/mmtrix/agent/vm/monotonic_gc_profiler.rb +45 -0
- data/lib/mmtrix/agent/vm/mri_vm.rb +87 -0
- data/lib/mmtrix/agent/vm/rubinius_vm.rb +132 -0
- data/lib/mmtrix/agent/vm/snapshot.rb +20 -0
- data/lib/mmtrix/agent/vm.rb +32 -0
- data/lib/mmtrix/agent/worker_loop.rb +98 -0
- data/lib/mmtrix/agent.rb +714 -0
- data/lib/mmtrix/build.rb +2 -0
- data/lib/mmtrix/cli/command.rb +91 -0
- data/lib/mmtrix/cli/commands/deployments.rb +134 -0
- data/lib/mmtrix/cli/commands/install.rb +84 -0
- data/lib/mmtrix/coerce.rb +70 -0
- data/lib/mmtrix/collection_helper.rb +79 -0
- data/lib/mmtrix/control/class_methods.rb +62 -0
- data/lib/mmtrix/control/frameworks/external.rb +20 -0
- data/lib/mmtrix/control/frameworks/merb.rb +29 -0
- data/lib/mmtrix/control/frameworks/rails.rb +139 -0
- data/lib/mmtrix/control/frameworks/rails3.rb +45 -0
- data/lib/mmtrix/control/frameworks/rails4.rb +23 -0
- data/lib/mmtrix/control/frameworks/ruby.rb +24 -0
- data/lib/mmtrix/control/frameworks/sinatra.rb +14 -0
- data/lib/mmtrix/control/frameworks.rb +14 -0
- data/lib/mmtrix/control/instance_methods.rb +161 -0
- data/lib/mmtrix/control/instrumentation.rb +71 -0
- data/lib/mmtrix/control/server_methods.rb +32 -0
- data/lib/mmtrix/control.rb +43 -0
- data/lib/mmtrix/delayed_job_injection.rb +10 -0
- data/lib/mmtrix/environment_report.rb +131 -0
- data/lib/mmtrix/helper.rb +55 -0
- data/lib/mmtrix/json_wrapper.rb +78 -0
- data/lib/mmtrix/language_support.rb +144 -0
- data/lib/mmtrix/latest_changes.rb +64 -0
- data/lib/mmtrix/local_environment.rb +207 -0
- data/lib/mmtrix/merbtasks.rb +10 -0
- data/lib/mmtrix/metric_data.rb +74 -0
- data/lib/mmtrix/metric_spec.rb +81 -0
- data/lib/mmtrix/metrics.rb +13 -0
- data/lib/mmtrix/noticed_error.rb +164 -0
- data/lib/mmtrix/okjson.rb +602 -0
- data/lib/mmtrix/rack/agent_hooks.rb +33 -0
- data/lib/mmtrix/rack/agent_middleware.rb +40 -0
- data/lib/mmtrix/rack/browser_monitoring.rb +150 -0
- data/lib/mmtrix/rack/developer_mode/segment_summary.rb +56 -0
- data/lib/mmtrix/rack/developer_mode.rb +321 -0
- data/lib/mmtrix/rack/error_collector.rb +27 -0
- data/lib/mmtrix/rack.rb +17 -0
- data/lib/mmtrix/recipes/capistrano3.rb +66 -0
- data/lib/mmtrix/recipes/capistrano_legacy.rb +98 -0
- data/lib/mmtrix/recipes.rb +24 -0
- data/lib/mmtrix/timer_lib.rb +31 -0
- data/lib/mmtrix/version.rb +70 -0
- data/lib/mmtrix_rpm.rb +54 -0
- data/lib/sequel/extensions/mmtrix_instrumentation.rb +79 -0
- data/lib/sequel/plugins/mmtrix_instrumentation.rb +65 -0
- data/lib/tasks/all.rb +8 -0
- data/lib/tasks/config.html.erb +28 -0
- data/lib/tasks/config.rake +134 -0
- data/lib/tasks/config.text.erb +7 -0
- data/lib/tasks/install.rake +11 -0
- data/lib/tasks/multiverse.rake +2 -0
- data/lib/tasks/multiverse.rb +50 -0
- data/lib/tasks/tests.rake +36 -0
- data/lib/tasks/versions.html.erb +27 -0
- data/lib/tasks/versions.rake +53 -0
- data/lib/tasks/versions.txt.erb +14 -0
- data/mmtrix.yml +47 -0
- data/mmtrix_rpm.gemspec +73 -0
- data/recipes/mmtrix.rb +10 -0
- data/test/agent_helper.rb +666 -0
- data/test/config/mmtrix.yml +46 -0
- data/test/config/test.cert.crt +18 -0
- data/test/config/test.cert.key +15 -0
- data/test/config/test_control.rb +54 -0
- data/test/environments/.gitignore +16 -0
- data/test/environments/lib/environments/runner.rb +113 -0
- data/test/environments/norails/Gemfile +21 -0
- data/test/environments/norails/Rakefile +9 -0
- data/test/environments/rails21/Gemfile +25 -0
- data/test/environments/rails21/Rakefile +16 -0
- data/test/environments/rails21/app/controllers/application.rb +20 -0
- data/test/environments/rails21/config/boot.rb +113 -0
- data/test/environments/rails21/config/database.yml +26 -0
- data/test/environments/rails21/config/environment.rb +26 -0
- data/test/environments/rails21/config/environments/development.rb +10 -0
- data/test/environments/rails21/config/environments/production.rb +8 -0
- data/test/environments/rails21/config/environments/test.rb +10 -0
- data/test/environments/rails21/config/routes.rb +5 -0
- data/test/environments/rails21/db/schema.rb +5 -0
- data/test/environments/rails22/Gemfile +25 -0
- data/test/environments/rails22/Rakefile +16 -0
- data/test/environments/rails22/app/controllers/application.rb +20 -0
- data/test/environments/rails22/config/boot.rb +113 -0
- data/test/environments/rails22/config/database.yml +26 -0
- data/test/environments/rails22/config/environment.rb +25 -0
- data/test/environments/rails22/config/environments/development.rb +10 -0
- data/test/environments/rails22/config/environments/production.rb +8 -0
- data/test/environments/rails22/config/environments/test.rb +10 -0
- data/test/environments/rails22/config/routes.rb +5 -0
- data/test/environments/rails22/db/schema.rb +5 -0
- data/test/environments/rails23/Gemfile +24 -0
- data/test/environments/rails23/Rakefile +16 -0
- data/test/environments/rails23/app/controllers/application.rb +20 -0
- data/test/environments/rails23/config/boot.rb +127 -0
- data/test/environments/rails23/config/database.yml +26 -0
- data/test/environments/rails23/config/environment.rb +16 -0
- data/test/environments/rails23/config/environments/production.rb +8 -0
- data/test/environments/rails23/config/environments/test.rb +10 -0
- data/test/environments/rails23/config/preinitializer.rb +25 -0
- data/test/environments/rails23/config/routes.rb +5 -0
- data/test/environments/rails23/db/schema.rb +5 -0
- data/test/environments/rails30/Gemfile +23 -0
- data/test/environments/rails30/Rakefile +11 -0
- data/test/environments/rails30/config/application.rb +17 -0
- data/test/environments/rails30/config/boot.rb +10 -0
- data/test/environments/rails30/config/database.yml +26 -0
- data/test/environments/rails30/config/environment.rb +6 -0
- data/test/environments/rails30/config/initializers/new_rails_defaults.rb +11 -0
- data/test/environments/rails30/db/schema.rb +5 -0
- data/test/environments/rails31/Gemfile +24 -0
- data/test/environments/rails31/Rakefile +11 -0
- data/test/environments/rails31/config/application.rb +18 -0
- data/test/environments/rails31/config/boot.rb +10 -0
- data/test/environments/rails31/config/database.yml +26 -0
- data/test/environments/rails31/config/environment.rb +6 -0
- data/test/environments/rails31/config/initializers/new_rails_defaults.rb +21 -0
- data/test/environments/rails31/db/schema.rb +5 -0
- data/test/environments/rails32/Gemfile +26 -0
- data/test/environments/rails32/Rakefile +11 -0
- data/test/environments/rails32/config/application.rb +19 -0
- data/test/environments/rails32/config/boot.rb +10 -0
- data/test/environments/rails32/config/database.yml +31 -0
- data/test/environments/rails32/config/environment.rb +6 -0
- data/test/environments/rails32/db/schema.rb +5 -0
- data/test/environments/rails40/Gemfile +43 -0
- data/test/environments/rails40/Rakefile +11 -0
- data/test/environments/rails40/config/application.rb +18 -0
- data/test/environments/rails40/config/boot.rb +10 -0
- data/test/environments/rails40/config/database.yml +26 -0
- data/test/environments/rails40/config/environment.rb +6 -0
- data/test/environments/rails40/db/schema.rb +5 -0
- data/test/environments/rails41/Gemfile +35 -0
- data/test/environments/rails41/Rakefile +11 -0
- data/test/environments/rails41/config/application.rb +18 -0
- data/test/environments/rails41/config/boot.rb +10 -0
- data/test/environments/rails41/config/database.yml +26 -0
- data/test/environments/rails41/config/environment.rb +6 -0
- data/test/environments/rails41/db/schema.rb +5 -0
- data/test/environments/rails42/Gemfile +39 -0
- data/test/environments/rails42/Rakefile +11 -0
- data/test/environments/rails42/config/application.rb +18 -0
- data/test/environments/rails42/config/boot.rb +10 -0
- data/test/environments/rails42/config/database.yml +26 -0
- data/test/environments/rails42/config/environment.rb +6 -0
- data/test/environments/rails42/db/schema.rb +5 -0
- data/test/fixtures/cross_agent_tests/README.md +56 -0
- data/test/fixtures/cross_agent_tests/attribute_configuration.json +384 -0
- data/test/fixtures/cross_agent_tests/aws.json +218 -0
- data/test/fixtures/cross_agent_tests/cat_map.json +597 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/README.md +6 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/cases.json +75 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-0.9.1.txt +10 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.0.0.txt +10 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-lxc-driver.txt +10 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-native-driver-fs.txt +10 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-native-driver-systemd.txt +10 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.3.txt +9 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/empty.txt +0 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/heroku.txt +1 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/invalid-characters.txt +9 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/invalid-length.txt +9 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.04-lxc-container.txt +10 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.04-no-container.txt +10 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.10-no-container.txt +10 -0
- data/test/fixtures/cross_agent_tests/labels.json +133 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/README.md +16 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.colon_obfuscated.txt +3 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.explain.txt +3 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.obfuscated.txt +3 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.explain.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.explain.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.explain.txt +3 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.explain.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.explain.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.colon_obfuscated.txt +5 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.explain.txt +5 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.obfuscated.txt +5 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.explain.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.colon_obfuscated.txt +5 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.explain.txt +5 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.obfuscated.txt +5 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.explain.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.explain.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.colon_obfuscated.txt +3 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.explain.txt +3 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.obfuscated.txt +3 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.explain.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.explain.txt +3 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.explain.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.explain.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.explain.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.explain.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.explain.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.explain.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.colon_obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.explain.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.obfuscated.txt +2 -0
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.query.txt +1 -0
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_1logical.txt +3 -0
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_2logical.txt +14 -0
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_2core_2logical.txt +14 -0
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_4core_4logical.txt +28 -0
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_12core_24logical.txt +575 -0
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_20core_40logical.txt +999 -0
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_2logical.txt +51 -0
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_4logical.txt +28 -0
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_4core_4logical.txt +28 -0
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/4pack_4core_4logical.txt +103 -0
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/8pack_8core_8logical.txt +199 -0
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/README.md +24 -0
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/Xpack_Xcore_2logical.txt +43 -0
- data/test/fixtures/cross_agent_tests/proc_meminfo/README.md +7 -0
- data/test/fixtures/cross_agent_tests/proc_meminfo/meminfo_4096MB.txt +47 -0
- data/test/fixtures/cross_agent_tests/rules.json +165 -0
- data/test/fixtures/cross_agent_tests/rum_client_config.json +62 -0
- data/test/fixtures/cross_agent_tests/rum_footer_insertion_location/close-body-in-comment.html +10 -0
- data/test/fixtures/cross_agent_tests/rum_footer_insertion_location/dynamic-iframe.html +19 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/basic.html +10 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/body_with_attributes.html +3 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag.html +11 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_after_x_ua_tag.html +11 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_before_x_ua_tag.html +11 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_with_spaces.html +11 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments1.html +24 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments2.html +24 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag.html +11 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_after_x_ua_tag.html +11 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_before_x_ua_tag.html +11 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/empty_head +4 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes1.html +27 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes2.html +24 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes_mismatch.html +24 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes1.html +25 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes_mismatch.html +25 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/head_with_attributes.html +10 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/incomplete_non_meta_tags.html +10 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_end_header.html +6 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_header.html +7 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_html_and_no_header.html +3 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_start_header.html +9 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/script1.html +19 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/script2.html +17 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag.html +10 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiline.html +11 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiple_tags.html +12 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_spaces_around_equals.html +10 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_others.html +11 -0
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_spaces.html +10 -0
- data/test/fixtures/cross_agent_tests/sql_obfuscation/README.md +30 -0
- data/test/fixtures/cross_agent_tests/sql_obfuscation/sql_obfuscation.json +365 -0
- data/test/fixtures/cross_agent_tests/sql_parsing.json +55 -0
- data/test/fixtures/cross_agent_tests/synthetics/README.md +65 -0
- data/test/fixtures/cross_agent_tests/synthetics/synthetics.json +317 -0
- data/test/fixtures/cross_agent_tests/transaction_segment_terms.json +101 -0
- data/test/fixtures/cross_agent_tests/url_clean.json +15 -0
- data/test/fixtures/cross_agent_tests/url_domain_extraction.json +35 -0
- data/test/helpers/exceptions.rb +16 -0
- data/test/helpers/file_searching.rb +28 -0
- data/test/helpers/mongo_metric_builder.rb +28 -0
- data/test/helpers/runtime_detection.rb +17 -0
- data/test/intentional_fail.rb +13 -0
- data/test/mmtrix/FAKECHANGELOG +21 -0
- data/test/mmtrix/agent/agent/connect_test.rb +308 -0
- data/test/mmtrix/agent/agent/start_test.rb +191 -0
- data/test/mmtrix/agent/agent/start_worker_thread_test.rb +74 -0
- data/test/mmtrix/agent/agent_logger_test.rb +392 -0
- data/test/mmtrix/agent/agent_test.rb +631 -0
- data/test/mmtrix/agent/agent_test_controller.rb +84 -0
- data/test/mmtrix/agent/apdex_from_server_test.rb +13 -0
- data/test/mmtrix/agent/attribute_filter_test.rb +218 -0
- data/test/mmtrix/agent/attribute_processing_test.rb +165 -0
- data/test/mmtrix/agent/audit_logger_test.rb +213 -0
- data/test/mmtrix/agent/autostart_test.rb +79 -0
- data/test/mmtrix/agent/aws_info_test.rb +61 -0
- data/test/mmtrix/agent/busy_calculator_test.rb +98 -0
- data/test/mmtrix/agent/commands/agent_command_router_test.rb +256 -0
- data/test/mmtrix/agent/commands/agent_command_test.rb +37 -0
- data/test/mmtrix/agent/commands/thread_profiler_session_test.rb +215 -0
- data/test/mmtrix/agent/commands/xray_session_collection_test.rb +332 -0
- data/test/mmtrix/agent/commands/xray_session_test.rb +42 -0
- data/test/mmtrix/agent/configuration/default_source_test.rb +226 -0
- data/test/mmtrix/agent/configuration/dotted_hash_test.rb +53 -0
- data/test/mmtrix/agent/configuration/environment_source_test.rb +201 -0
- data/test/mmtrix/agent/configuration/high_security_source_test.rb +83 -0
- data/test/mmtrix/agent/configuration/manager_test.rb +460 -0
- data/test/mmtrix/agent/configuration/manual_source_test.rb +18 -0
- data/test/mmtrix/agent/configuration/orphan_configuration_test.rb +89 -0
- data/test/mmtrix/agent/configuration/server_source_test.rb +202 -0
- data/test/mmtrix/agent/configuration/yaml_source_test.rb +117 -0
- data/test/mmtrix/agent/cross_app_monitor_test.rb +248 -0
- data/test/mmtrix/agent/cross_app_tracing_test.rb +71 -0
- data/test/mmtrix/agent/custom_event_aggregator_test.rb +88 -0
- data/test/mmtrix/agent/database/postgres_explain_obfuscator_test.rb +34 -0
- data/test/mmtrix/agent/database/sql_obfuscation_test.rb +59 -0
- data/test/mmtrix/agent/database_test.rb +401 -0
- data/test/mmtrix/agent/datastores/metric_helper_test.rb +132 -0
- data/test/mmtrix/agent/datastores/mongo/metric_translator_test.rb +320 -0
- data/test/mmtrix/agent/datastores/mongo/obfuscator_test.rb +91 -0
- data/test/mmtrix/agent/datastores/mongo/statement_formatter_test.rb +72 -0
- data/test/mmtrix/agent/datastores_test.rb +195 -0
- data/test/mmtrix/agent/deprecator_test.rb +52 -0
- data/test/mmtrix/agent/encoding_normalizer_test.rb +66 -0
- data/test/mmtrix/agent/error_collector_test.rb +618 -0
- data/test/mmtrix/agent/event_buffer_test_cases.rb +152 -0
- data/test/mmtrix/agent/event_listener_test.rb +70 -0
- data/test/mmtrix/agent/event_loop_test.rb +202 -0
- data/test/mmtrix/agent/harvester_test.rb +79 -0
- data/test/mmtrix/agent/hash_extensions_test.rb +34 -0
- data/test/mmtrix/agent/hostname_test.rb +93 -0
- data/test/mmtrix/agent/http_clients/uri_util_test.rb +64 -0
- data/test/mmtrix/agent/inbound_request_monitor_test.rb +49 -0
- data/test/mmtrix/agent/instrumentation/action_controller_subscriber_test.rb +299 -0
- data/test/mmtrix/agent/instrumentation/action_view_subscriber_test.rb +239 -0
- data/test/mmtrix/agent/instrumentation/active_job_test.rb +20 -0
- data/test/mmtrix/agent/instrumentation/active_record_helper_test.rb +77 -0
- data/test/mmtrix/agent/instrumentation/active_record_subscriber_test.rb +132 -0
- data/test/mmtrix/agent/instrumentation/controller_instrumentation_test.rb +328 -0
- data/test/mmtrix/agent/instrumentation/instrumentation_test.rb +14 -0
- data/test/mmtrix/agent/instrumentation/metric_frame_test.rb +22 -0
- data/test/mmtrix/agent/instrumentation/middleware_proxy_test.rb +257 -0
- data/test/mmtrix/agent/instrumentation/middleware_tracing_test.rb +49 -0
- data/test/mmtrix/agent/instrumentation/net_instrumentation_test.rb +35 -0
- data/test/mmtrix/agent/instrumentation/queue_time_test.rb +103 -0
- data/test/mmtrix/agent/instrumentation/rack_test.rb +47 -0
- data/test/mmtrix/agent/instrumentation/sequel_helper_test.rb +36 -0
- data/test/mmtrix/agent/instrumentation/sinatra/transaction_namer_test.rb +55 -0
- data/test/mmtrix/agent/instrumentation/sinatra_test.rb +80 -0
- data/test/mmtrix/agent/instrumentation/task_instrumentation_test.rb +196 -0
- data/test/mmtrix/agent/javascript_instrumentor_test.rb +340 -0
- data/test/mmtrix/agent/memory_logger_test.rb +85 -0
- data/test/mmtrix/agent/method_interrobang_test.rb +31 -0
- data/test/mmtrix/agent/method_tracer/class_methods/add_method_tracer_test.rb +122 -0
- data/test/mmtrix/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +224 -0
- data/test/mmtrix/agent/method_tracer_test.rb +474 -0
- data/test/mmtrix/agent/method_visibility_test.rb +90 -0
- data/test/mmtrix/agent/mmtrix_service_test.rb +1056 -0
- data/test/mmtrix/agent/mock_scope_listener.rb +27 -0
- data/test/mmtrix/agent/obfuscator_test.rb +77 -0
- data/test/mmtrix/agent/parameter_filtering_test.rb +39 -0
- data/test/mmtrix/agent/pipe_channel_manager_test.rb +278 -0
- data/test/mmtrix/agent/pipe_service_test.rb +145 -0
- data/test/mmtrix/agent/rpm_agent_test.rb +94 -0
- data/test/mmtrix/agent/rules_engine_test.rb +136 -0
- data/test/mmtrix/agent/sampled_buffer_test.rb +106 -0
- data/test/mmtrix/agent/sampler_collection_test.rb +90 -0
- data/test/mmtrix/agent/sampler_test.rb +66 -0
- data/test/mmtrix/agent/samplers/cpu_sampler_test.rb +51 -0
- data/test/mmtrix/agent/samplers/vm_sampler_test.rb +349 -0
- data/test/mmtrix/agent/sized_buffer_test.rb +29 -0
- data/test/mmtrix/agent/sql_sampler_test.rb +403 -0
- data/test/mmtrix/agent/stats_engine/gc_profiler_test.rb +188 -0
- data/test/mmtrix/agent/stats_engine/metric_stats_test.rb +347 -0
- data/test/mmtrix/agent/stats_engine/samplers_test.rb +98 -0
- data/test/mmtrix/agent/stats_engine/stats_hash_test.rb +194 -0
- data/test/mmtrix/agent/stats_engine_test.rb +32 -0
- data/test/mmtrix/agent/stats_test.rb +189 -0
- data/test/mmtrix/agent/synthetics_event_buffer_test.rb +54 -0
- data/test/mmtrix/agent/synthetics_monitor_test.rb +93 -0
- data/test/mmtrix/agent/system_info_test.rb +119 -0
- data/test/mmtrix/agent/threading/agent_thread_test.rb +149 -0
- data/test/mmtrix/agent/threading/backtrace_node_test.rb +184 -0
- data/test/mmtrix/agent/threading/backtrace_service_test.rb +595 -0
- data/test/mmtrix/agent/threading/fake_thread.rb +43 -0
- data/test/mmtrix/agent/threading/thread_profile_test.rb +272 -0
- data/test/mmtrix/agent/threading/threaded_test_case.rb +18 -0
- data/test/mmtrix/agent/traced_method_stack_test.rb +187 -0
- data/test/mmtrix/agent/transaction/attributes_test.rb +276 -0
- data/test/mmtrix/agent/transaction/developer_mode_sample_buffer_test.rb +75 -0
- data/test/mmtrix/agent/transaction/slowest_sample_buffer_test.rb +67 -0
- data/test/mmtrix/agent/transaction/synthetics_sample_buffer_test.rb +38 -0
- data/test/mmtrix/agent/transaction/trace_node_test.rb +361 -0
- data/test/mmtrix/agent/transaction/trace_test.rb +394 -0
- data/test/mmtrix/agent/transaction/xray_sample_buffer_test.rb +71 -0
- data/test/mmtrix/agent/transaction_event_aggregator_test.rb +426 -0
- data/test/mmtrix/agent/transaction_interrobang_test.rb +33 -0
- data/test/mmtrix/agent/transaction_metrics_test.rb +113 -0
- data/test/mmtrix/agent/transaction_sample_builder_test.rb +215 -0
- data/test/mmtrix/agent/transaction_sampler_test.rb +849 -0
- data/test/mmtrix/agent/transaction_state_test.rb +122 -0
- data/test/mmtrix/agent/transaction_test.rb +1435 -0
- data/test/mmtrix/agent/transaction_timings_test.rb +91 -0
- data/test/mmtrix/agent/utilization_data_test.rb +147 -0
- data/test/mmtrix/agent/vm/monotonic_gc_profiler_test.rb +42 -0
- data/test/mmtrix/agent/vm/mri_vm_test.rb +42 -0
- data/test/mmtrix/agent/vm/rubinius_vm_test.rb +69 -0
- data/test/mmtrix/agent/vm/snapshot_test.rb +13 -0
- data/test/mmtrix/agent/vm_test.rb +48 -0
- data/test/mmtrix/agent/worker_loop_test.rb +98 -0
- data/test/mmtrix/agent_test.rb +471 -0
- data/test/mmtrix/cli/commands/deployments_test.rb +131 -0
- data/test/mmtrix/cli/commands/install_test.rb +27 -0
- data/test/mmtrix/coerce_test.rb +95 -0
- data/test/mmtrix/collection_helper_test.rb +151 -0
- data/test/mmtrix/control/class_methods_test.rb +48 -0
- data/test/mmtrix/control/frameworks/rails_test.rb +29 -0
- data/test/mmtrix/control/instance_methods_test.rb +50 -0
- data/test/mmtrix/control/instrumentation_test.rb +41 -0
- data/test/mmtrix/control_test.rb +169 -0
- data/test/mmtrix/data_container_tests.rb +76 -0
- data/test/mmtrix/dependency_detection_test.rb +155 -0
- data/test/mmtrix/dispatcher_test.rb +59 -0
- data/test/mmtrix/environment_report_test.rb +107 -0
- data/test/mmtrix/evil_server.rb +55 -0
- data/test/mmtrix/fake_collector.rb +385 -0
- data/test/mmtrix/fake_external_server.rb +65 -0
- data/test/mmtrix/fake_instance_metadata_service.rb +45 -0
- data/test/mmtrix/fake_rpm_site.rb +35 -0
- data/test/mmtrix/fake_server.rb +104 -0
- data/test/mmtrix/filtering_test_app.rb +19 -0
- data/test/mmtrix/framework_test.rb +58 -0
- data/test/mmtrix/http_client_test_cases.rb +621 -0
- data/test/mmtrix/json_wrapper_test.rb +32 -0
- data/test/mmtrix/language_support_test.rb +104 -0
- data/test/mmtrix/latest_changes_test.rb +45 -0
- data/test/mmtrix/license_test.rb +128 -0
- data/test/mmtrix/load_test.rb +15 -0
- data/test/mmtrix/local_environment_test.rb +103 -0
- data/test/mmtrix/marshalling_test_cases.rb +140 -0
- data/test/mmtrix/metric_data_test.rb +191 -0
- data/test/mmtrix/metric_parser/metric_parser_test.rb +17 -0
- data/test/mmtrix/metric_spec_test.rb +145 -0
- data/test/mmtrix/multiverse_helpers.rb +283 -0
- data/test/mmtrix/noticed_error_test.rb +197 -0
- data/test/mmtrix/rack/agent_hooks_test.rb +44 -0
- data/test/mmtrix/rack/agent_middleware_test.rb +32 -0
- data/test/mmtrix/rack/browser_monitoring_test.rb +197 -0
- data/test/mmtrix/rack/deferred_instrumentation_test.rb +33 -0
- data/test/mmtrix/rack/developer_mode/segment_summary_test.rb +96 -0
- data/test/mmtrix/rack/developer_mode_helper_test.rb +136 -0
- data/test/mmtrix/rack/developer_mode_test.rb +93 -0
- data/test/mmtrix/rack/error_collector_test.rb +77 -0
- data/test/mmtrix/transaction_ignoring_test_cases.rb +102 -0
- data/test/mmtrix/version_number_test.rb +101 -0
- data/test/multiverse/.gitignore +13 -0
- data/test/multiverse/README.md +85 -0
- data/test/multiverse/lib/multiverse/color.rb +23 -0
- data/test/multiverse/lib/multiverse/envfile.rb +66 -0
- data/test/multiverse/lib/multiverse/environment.rb +19 -0
- data/test/multiverse/lib/multiverse/output_collector.rb +82 -0
- data/test/multiverse/lib/multiverse/runner.rb +117 -0
- data/test/multiverse/lib/multiverse/suite.rb +528 -0
- data/test/multiverse/script/runner +5 -0
- data/test/multiverse/suites/active_record/.gitignore +1 -0
- data/test/multiverse/suites/active_record/Envfile +73 -0
- data/test/multiverse/suites/active_record/Rakefile +9 -0
- data/test/multiverse/suites/active_record/active_record_test.rb +568 -0
- data/test/multiverse/suites/active_record/app/models/models.rb +34 -0
- data/test/multiverse/suites/active_record/ar_method_aliasing.rb +43 -0
- data/test/multiverse/suites/active_record/before_suite.rb +23 -0
- data/test/multiverse/suites/active_record/config/database.rb +80 -0
- data/test/multiverse/suites/active_record/config/database.yml +19 -0
- data/test/multiverse/suites/active_record/config/mmtrix.yml +18 -0
- data/test/multiverse/suites/active_record/db/migrate/20141105131800_create_users_and_aliases.rb +21 -0
- data/test/multiverse/suites/active_record/db/migrate/20141106082200_create_orders_and_shipments.rb +25 -0
- data/test/multiverse/suites/active_record/db/migrate/20150413011200_add_timestamps_to_orders.rb +16 -0
- data/test/multiverse/suites/active_record/db/migrate/20150414084400_create_groups.rb +21 -0
- data/test/multiverse/suites/activemerchant/Envfile +36 -0
- data/test/multiverse/suites/activemerchant/activemerchant_test.rb +62 -0
- data/test/multiverse/suites/agent_only/Envfile +4 -0
- data/test/multiverse/suites/agent_only/agent_attributes_test.rb +168 -0
- data/test/multiverse/suites/agent_only/agent_run_id_handling_test.rb +39 -0
- data/test/multiverse/suites/agent_only/audit_log_test.rb +58 -0
- data/test/multiverse/suites/agent_only/collector_exception_handling_test.rb +87 -0
- data/test/multiverse/suites/agent_only/config/mmtrix.yml +27 -0
- data/test/multiverse/suites/agent_only/cross_application_tracing_test.rb +94 -0
- data/test/multiverse/suites/agent_only/custom_analytics_events_test.rb +67 -0
- data/test/multiverse/suites/agent_only/custom_queue_time_test.rb +60 -0
- data/test/multiverse/suites/agent_only/encoding_handling_test.rb +130 -0
- data/test/multiverse/suites/agent_only/exclusive_time_test.rb +176 -0
- data/test/multiverse/suites/agent_only/harvest_timestamps_test.rb +83 -0
- data/test/multiverse/suites/agent_only/http_response_code_test.rb +38 -0
- data/test/multiverse/suites/agent_only/keepalive_test.rb +24 -0
- data/test/multiverse/suites/agent_only/key_transactions_test.rb +118 -0
- data/test/multiverse/suites/agent_only/labels_test.rb +83 -0
- data/test/multiverse/suites/agent_only/logging_test.rb +162 -0
- data/test/multiverse/suites/agent_only/marshaling_test.rb +88 -0
- data/test/multiverse/suites/agent_only/pipe_manager_test.rb +41 -0
- data/test/multiverse/suites/agent_only/rename_rule_test.rb +91 -0
- data/test/multiverse/suites/agent_only/rum_instrumentation_test.rb +97 -0
- data/test/multiverse/suites/agent_only/script/env_change.rb +10 -0
- data/test/multiverse/suites/agent_only/script/loading.rb +20 -0
- data/test/multiverse/suites/agent_only/script/public_api_when_disabled.rb +68 -0
- data/test/multiverse/suites/agent_only/script/symbol_env.rb +10 -0
- data/test/multiverse/suites/agent_only/service_timeout_test.rb +39 -0
- data/test/multiverse/suites/agent_only/set_transaction_name_test.rb +118 -0
- data/test/multiverse/suites/agent_only/ssl_test.rb +21 -0
- data/test/multiverse/suites/agent_only/start_up_test.rb +74 -0
- data/test/multiverse/suites/agent_only/synthetics_test.rb +131 -0
- data/test/multiverse/suites/agent_only/testing_app.rb +58 -0
- data/test/multiverse/suites/agent_only/thread_profiling_test.rb +160 -0
- data/test/multiverse/suites/agent_only/transaction_ignoring_test.rb +42 -0
- data/test/multiverse/suites/agent_only/utilization_data_collection_test.rb +110 -0
- data/test/multiverse/suites/agent_only/xray_sessions_test.rb +199 -0
- data/test/multiverse/suites/bare/Envfile +3 -0
- data/test/multiverse/suites/bare/standalone_instrumentation_test.rb +43 -0
- data/test/multiverse/suites/capistrano/Capfile +26 -0
- data/test/multiverse/suites/capistrano/Envfile +18 -0
- data/test/multiverse/suites/capistrano/config/deploy/production.rb +9 -0
- data/test/multiverse/suites/capistrano/config/deploy.rb +14 -0
- data/test/multiverse/suites/capistrano/config/mmtrix.yml +21 -0
- data/test/multiverse/suites/capistrano/deployment_test.rb +54 -0
- data/test/multiverse/suites/capistrano2/Capfile +4 -0
- data/test/multiverse/suites/capistrano2/Envfile +8 -0
- data/test/multiverse/suites/capistrano2/config/deploy.rb +19 -0
- data/test/multiverse/suites/capistrano2/config/mmtrix.yml +21 -0
- data/test/multiverse/suites/capistrano2/deployment_test.rb +37 -0
- data/test/multiverse/suites/config_file_loading/Envfile +13 -0
- data/test/multiverse/suites/config_file_loading/config_file_loading_test.rb +213 -0
- data/test/multiverse/suites/curb/Envfile +31 -0
- data/test/multiverse/suites/curb/config/mmtrix.yml +18 -0
- data/test/multiverse/suites/curb/curb_test.rb +213 -0
- data/test/multiverse/suites/datamapper/Envfile +30 -0
- data/test/multiverse/suites/datamapper/config/mmtrix.yml +20 -0
- data/test/multiverse/suites/datamapper/datamapper_test.rb +335 -0
- data/test/multiverse/suites/deferred_instrumentation/Envfile +15 -0
- data/test/multiverse/suites/deferred_instrumentation/config/mmtrix.yml +20 -0
- data/test/multiverse/suites/deferred_instrumentation/sinatra_test.rb +107 -0
- data/test/multiverse/suites/delayed_job/Envfile +102 -0
- data/test/multiverse/suites/delayed_job/before_suite.rb +33 -0
- data/test/multiverse/suites/delayed_job/config/mmtrix.yml +18 -0
- data/test/multiverse/suites/delayed_job/delayed_job_sampler_test.rb +128 -0
- data/test/multiverse/suites/delayed_job/unsupported_backend_test.rb +21 -0
- data/test/multiverse/suites/excon/Envfile +21 -0
- data/test/multiverse/suites/excon/config/mmtrix.yml +18 -0
- data/test/multiverse/suites/excon/excon_test.rb +81 -0
- data/test/multiverse/suites/grape/Envfile +13 -0
- data/test/multiverse/suites/grape/config/mmtrix.yml +19 -0
- data/test/multiverse/suites/grape/grape_test.rb +202 -0
- data/test/multiverse/suites/grape/grape_test_api.rb +64 -0
- data/test/multiverse/suites/grape/grape_versioning_test.rb +64 -0
- data/test/multiverse/suites/grape/grape_versioning_test_api.rb +72 -0
- data/test/multiverse/suites/grape/unsupported_version_test.rb +28 -0
- data/test/multiverse/suites/high_security/Envfile +3 -0
- data/test/multiverse/suites/high_security/config/mmtrix.yml +70 -0
- data/test/multiverse/suites/high_security/high_security_test.rb +214 -0
- data/test/multiverse/suites/httpclient/Envfile +13 -0
- data/test/multiverse/suites/httpclient/config/mmtrix.yml +18 -0
- data/test/multiverse/suites/httpclient/httpclient_test.rb +75 -0
- data/test/multiverse/suites/json/Envfile +25 -0
- data/test/multiverse/suites/json/config/mmtrix.yml +22 -0
- data/test/multiverse/suites/json/json_test.rb +16 -0
- data/test/multiverse/suites/marshalling/Envfile +12 -0
- data/test/multiverse/suites/marshalling/config/mmtrix.yml +20 -0
- data/test/multiverse/suites/marshalling/marshalling_test.rb +16 -0
- data/test/multiverse/suites/memcached/Envfile +52 -0
- data/test/multiverse/suites/memcached/dalli_test.rb +89 -0
- data/test/multiverse/suites/memcached/memcache_client_test.rb +25 -0
- data/test/multiverse/suites/memcached/memcache_test_cases.rb +302 -0
- data/test/multiverse/suites/memcached/memcached_test.rb +159 -0
- data/test/multiverse/suites/mongo/Envfile +69 -0
- data/test/multiverse/suites/mongo/config/mmtrix.yml +18 -0
- data/test/multiverse/suites/mongo/helpers/mongo_operation_tests.rb +489 -0
- data/test/multiverse/suites/mongo/helpers/mongo_replica_set.rb +97 -0
- data/test/multiverse/suites/mongo/helpers/mongo_replica_set_test.rb +82 -0
- data/test/multiverse/suites/mongo/helpers/mongo_server.rb +241 -0
- data/test/multiverse/suites/mongo/helpers/mongo_server_test.rb +176 -0
- data/test/multiverse/suites/mongo/mongo_connection_test.rb +39 -0
- data/test/multiverse/suites/mongo/mongo_instrumentation_test.rb +39 -0
- data/test/multiverse/suites/mongo/mongo_unsupported_version_test.rb +72 -0
- data/test/multiverse/suites/net_http/Envfile +4 -0
- data/test/multiverse/suites/net_http/config/mmtrix.yml +18 -0
- data/test/multiverse/suites/net_http/net_http_test.rb +111 -0
- data/test/multiverse/suites/padrino/Envfile +14 -0
- data/test/multiverse/suites/padrino/config/mmtrix.yml +20 -0
- data/test/multiverse/suites/padrino/padrino_test.rb +52 -0
- data/test/multiverse/suites/rack/Envfile +35 -0
- data/test/multiverse/suites/rack/builder_map_test.rb +128 -0
- data/test/multiverse/suites/rack/example_app.rb +100 -0
- data/test/multiverse/suites/rack/http_response_code_test.rb +50 -0
- data/test/multiverse/suites/rack/nested_non_rack_app_test.rb +66 -0
- data/test/multiverse/suites/rack/rack_auto_instrumentation_test.rb +144 -0
- data/test/multiverse/suites/rack/rack_cascade_test.rb +45 -0
- data/test/multiverse/suites/rack/rack_env_mutation_test.rb +53 -0
- data/test/multiverse/suites/rack/rack_parameter_filtering_test.rb +49 -0
- data/test/multiverse/suites/rack/rack_unsupported_version_test.rb +43 -0
- data/test/multiverse/suites/rack/url_map_test.rb +117 -0
- data/test/multiverse/suites/rails/Envfile +61 -0
- data/test/multiverse/suites/rails/action_controller_live_rum_test.rb +39 -0
- data/test/multiverse/suites/rails/activejob_test.rb +152 -0
- data/test/multiverse/suites/rails/app/views/foos/_foo.html.haml +1 -0
- data/test/multiverse/suites/rails/app/views/views/_a_partial.html.erb +2 -0
- data/test/multiverse/suites/rails/app/views/views/_mid_partial.html.erb +1 -0
- data/test/multiverse/suites/rails/app/views/views/_top_partial.html.erb +3 -0
- data/test/multiverse/suites/rails/app/views/views/deep_partial.html.erb +3 -0
- data/test/multiverse/suites/rails/app/views/views/haml_view.html.haml +6 -0
- data/test/multiverse/suites/rails/app/views/views/index.html.erb +4 -0
- data/test/multiverse/suites/rails/app.rb +44 -0
- data/test/multiverse/suites/rails/bad_instrumentation_test.rb +29 -0
- data/test/multiverse/suites/rails/config/mmtrix.yml +30 -0
- data/test/multiverse/suites/rails/dummy.txt +1 -0
- data/test/multiverse/suites/rails/error_tracing_test.rb +322 -0
- data/test/multiverse/suites/rails/gc_instrumentation_test.rb +93 -0
- data/test/multiverse/suites/rails/ignore_test.rb +79 -0
- data/test/multiverse/suites/rails/middleware_instrumentation_test.rb +41 -0
- data/test/multiverse/suites/rails/middlewares.rb +19 -0
- data/test/multiverse/suites/rails/parameter_capture_test.rb +299 -0
- data/test/multiverse/suites/rails/queue_time_test.rb +89 -0
- data/test/multiverse/suites/rails/rails2_app/app/controllers/application.rb +7 -0
- data/test/multiverse/suites/rails/rails2_app/config/boot.rb +127 -0
- data/test/multiverse/suites/rails/rails2_app/config/database.yml +18 -0
- data/test/multiverse/suites/rails/rails2_app/config/environment.rb +16 -0
- data/test/multiverse/suites/rails/rails2_app/config/environments/development.rb +10 -0
- data/test/multiverse/suites/rails/rails2_app/config/initializers/load_mmtrix_rpm.rb +9 -0
- data/test/multiverse/suites/rails/rails2_app/config/preinitializer.rb +25 -0
- data/test/multiverse/suites/rails/rails2_app/config/routes.rb +19 -0
- data/test/multiverse/suites/rails/rails2_app/db/schema.rb +5 -0
- data/test/multiverse/suites/rails/rails3_app/app_rails3_plus.rb +92 -0
- data/test/multiverse/suites/rails/request_statistics_test.rb +192 -0
- data/test/multiverse/suites/rails/transaction_ignoring_test.rb +41 -0
- data/test/multiverse/suites/rails/view_instrumentation_test.rb +254 -0
- data/test/multiverse/suites/resque/Envfile +11 -0
- data/test/multiverse/suites/resque/Rakefile +3 -0
- data/test/multiverse/suites/resque/config/mmtrix.yml +19 -0
- data/test/multiverse/suites/resque/instrumentation_test.rb +155 -0
- data/test/multiverse/suites/resque/resque_marshalling_test.rb +53 -0
- data/test/multiverse/suites/sequel/Envfile +34 -0
- data/test/multiverse/suites/sequel/config/mmtrix.yml +18 -0
- data/test/multiverse/suites/sequel/database.rb +57 -0
- data/test/multiverse/suites/sequel/sequel_extension_test.rb +142 -0
- data/test/multiverse/suites/sequel/sequel_helpers.rb +62 -0
- data/test/multiverse/suites/sequel/sequel_plugin_test.rb +230 -0
- data/test/multiverse/suites/sequel/sequel_safety_test.rb +30 -0
- data/test/multiverse/suites/sidekiq/Envfile +31 -0
- data/test/multiverse/suites/sidekiq/after_suite.rb +16 -0
- data/test/multiverse/suites/sidekiq/config/mmtrix.yml +20 -0
- data/test/multiverse/suites/sidekiq/log/.gitkeep +0 -0
- data/test/multiverse/suites/sidekiq/sidekiq_instrumentation_test.rb +219 -0
- data/test/multiverse/suites/sidekiq/sidekiq_server.rb +31 -0
- data/test/multiverse/suites/sidekiq/test_worker.rb +71 -0
- data/test/multiverse/suites/sinatra/Envfile +17 -0
- data/test/multiverse/suites/sinatra/config/mmtrix.yml +21 -0
- data/test/multiverse/suites/sinatra/ignoring_test.rb +208 -0
- data/test/multiverse/suites/sinatra/nested_middleware_test.rb +39 -0
- data/test/multiverse/suites/sinatra/sinatra_classic_test.rb +99 -0
- data/test/multiverse/suites/sinatra/sinatra_error_tracing_test.rb +45 -0
- data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +96 -0
- data/test/multiverse/suites/sinatra/sinatra_modular_test.rb +89 -0
- data/test/multiverse/suites/sinatra/sinatra_parameter_capture_test.rb +65 -0
- data/test/multiverse/suites/sinatra/sinatra_routes_test.rb +49 -0
- data/test/multiverse/suites/sinatra/sinatra_test_cases.rb +137 -0
- data/test/multiverse/suites/typhoeus/Envfile +57 -0
- data/test/multiverse/suites/typhoeus/config/mmtrix.yml +18 -0
- data/test/multiverse/suites/typhoeus/typhoeus_test.rb +144 -0
- data/test/multiverse/suites/yajl/Envfile +13 -0
- data/test/multiverse/suites/yajl/config/mmtrix.yml +21 -0
- data/test/multiverse/suites/yajl/yajl_test.rb +18 -0
- data/test/multiverse/test/multiverse_test.rb +59 -0
- data/test/multiverse/test/suite_examples/one/a/Envfile +3 -0
- data/test/multiverse/test/suite_examples/one/a/a_test.rb +14 -0
- data/test/multiverse/test/suite_examples/one/a/config/mmtrix.yml +22 -0
- data/test/multiverse/test/suite_examples/one/b/Envfile +3 -0
- data/test/multiverse/test/suite_examples/one/b/b_test.rb +14 -0
- data/test/multiverse/test/suite_examples/one/b/config/mmtrix.yml +22 -0
- data/test/multiverse/test/suite_examples/three/a/Envfile +2 -0
- data/test/multiverse/test/suite_examples/three/a/fail_test.rb +10 -0
- data/test/multiverse/test/suite_examples/three/b/Envfile +2 -0
- data/test/multiverse/test/suite_examples/three/b/win_test.rb +10 -0
- data/test/multiverse/test/suite_examples/two/a/Envfile +1 -0
- data/test/multiverse/test/suite_examples/two/a/fail_test.rb +10 -0
- data/test/performance/README.md +182 -0
- data/test/performance/lib/performance/baseline.rb +36 -0
- data/test/performance/lib/performance/baseline_compare_reporter.rb +103 -0
- data/test/performance/lib/performance/baseline_save_reporter.rb +24 -0
- data/test/performance/lib/performance/console_reporter.rb +66 -0
- data/test/performance/lib/performance/formatting_helpers.rb +22 -0
- data/test/performance/lib/performance/hako_client.rb +31 -0
- data/test/performance/lib/performance/hako_reporter.rb +26 -0
- data/test/performance/lib/performance/instrumentation/cpu_usage.rb +26 -0
- data/test/performance/lib/performance/instrumentation/gc_stats.rb +58 -0
- data/test/performance/lib/performance/instrumentation/perf_tools.rb +30 -0
- data/test/performance/lib/performance/instrumentation/stackprof.rb +46 -0
- data/test/performance/lib/performance/instrumentor.rb +96 -0
- data/test/performance/lib/performance/json_reporter.rb +15 -0
- data/test/performance/lib/performance/platform.rb +37 -0
- data/test/performance/lib/performance/reporting.rb +36 -0
- data/test/performance/lib/performance/result.rb +104 -0
- data/test/performance/lib/performance/runner.rb +221 -0
- data/test/performance/lib/performance/table.rb +105 -0
- data/test/performance/lib/performance/test_case.rb +152 -0
- data/test/performance/lib/performance/timer.rb +40 -0
- data/test/performance/lib/performance.rb +38 -0
- data/test/performance/script/baselines +102 -0
- data/test/performance/script/mega-runner +37 -0
- data/test/performance/script/runner +133 -0
- data/test/performance/suites/active_record.rb +47 -0
- data/test/performance/suites/agent_attributes.rb +62 -0
- data/test/performance/suites/config.rb +35 -0
- data/test/performance/suites/marshalling.rb +156 -0
- data/test/performance/suites/queue_time.rb +21 -0
- data/test/performance/suites/rack_middleware.rb +136 -0
- data/test/performance/suites/rum_autoinsertion.rb +75 -0
- data/test/performance/suites/sql_obfuscation.rb +30 -0
- data/test/performance/suites/startup.rb +12 -0
- data/test/performance/suites/stats_hash.rb +31 -0
- data/test/performance/suites/thread_profiling.rb +116 -0
- data/test/performance/suites/trace_execution_scoped.rb +32 -0
- data/test/performance/suites/transaction_tracing.rb +106 -0
- data/test/script/build_test_gem.sh +57 -0
- data/test/script/ci.sh +170 -0
- data/test/script/ci_agent-tests_runner.sh +82 -0
- data/test/script/ci_bench.sh +52 -0
- data/test/script/ci_multiverse_runner.sh +63 -0
- data/test/script/path_hash.rb +49 -0
- data/test/test_helper.rb +266 -0
- data/ui/helpers/developer_mode_helper.rb +324 -0
- data/ui/helpers/google_pie_chart.rb +53 -0
- data/ui/views/layouts/mmtrix_default.rhtml +48 -0
- data/ui/views/mmtrix/_explain_plans.rhtml +27 -0
- data/ui/views/mmtrix/_sample.rhtml +20 -0
- data/ui/views/mmtrix/_segment.rhtml +28 -0
- data/ui/views/mmtrix/_segment_limit_message.rhtml +1 -0
- data/ui/views/mmtrix/_segment_row.rhtml +12 -0
- data/ui/views/mmtrix/_show_sample_detail.rhtml +24 -0
- data/ui/views/mmtrix/_show_sample_sql.rhtml +24 -0
- data/ui/views/mmtrix/_show_sample_summary.rhtml +3 -0
- data/ui/views/mmtrix/_sql_row.rhtml +16 -0
- data/ui/views/mmtrix/_stack_trace.rhtml +15 -0
- data/ui/views/mmtrix/_table.rhtml +12 -0
- data/ui/views/mmtrix/explain_sql.rhtml +43 -0
- data/ui/views/mmtrix/file/images/arrow-close.png +0 -0
- data/ui/views/mmtrix/file/images/arrow-open.png +0 -0
- data/ui/views/mmtrix/file/images/blue_bar.gif +0 -0
- data/ui/views/mmtrix/file/images/file_icon.png +0 -0
- data/ui/views/mmtrix/file/images/gray_bar.gif +0 -0
- data/ui/views/mmtrix/file/images/mmtrix-rpm-desktop.gif +0 -0
- data/ui/views/mmtrix/file/images/mmtrix_rpm_desktop.gif +0 -0
- data/ui/views/mmtrix/file/images/textmate.png +0 -0
- data/ui/views/mmtrix/file/javascript/jquery-1.4.2.js +6243 -0
- data/ui/views/mmtrix/file/javascript/transaction_sample.js +123 -0
- data/ui/views/mmtrix/file/stylesheets/style.css +490 -0
- data/ui/views/mmtrix/index.rhtml +70 -0
- data/ui/views/mmtrix/sample_not_found.rhtml +2 -0
- data/ui/views/mmtrix/show_sample.rhtml +81 -0
- data/ui/views/mmtrix/threads.rhtml +45 -0
- data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection/version.rb +7 -0
- data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection.rb +122 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/.specification +116 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb +5 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/action_mailer.rb +18 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/active_merchant.rb +35 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/active_record.rb +37 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/apdex.rb +93 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/background_transaction.rb +11 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/client.rb +50 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/controller.rb +71 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/controller_cpu.rb +47 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/controller_ext.rb +21 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/database.rb +52 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/database_pool.rb +28 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/dot_net.rb +32 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/dot_net_parser.rb +21 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/errors.rb +15 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/external.rb +59 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/frontend.rb +44 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/gc.rb +24 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/hibernate_session.rb +11 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/java.rb +35 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/java_parser.rb +21 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/jsp.rb +38 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/jsp_tag.rb +11 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/mem_cache.rb +59 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/metric_parser.rb +138 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/middleware.rb +34 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/nested.rb +24 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/orm.rb +31 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/other_transaction.rb +44 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/servlet.rb +11 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/servlet_context_listener.rb +11 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/servlet_filter.rb +11 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/servlet_init.rb +11 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/solr.rb +31 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/solr_request_handler.rb +19 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/spring.rb +58 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/spring_controller.rb +10 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/spring_view.rb +10 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/struts_action.rb +24 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/struts_result.rb +24 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/version.rb +9 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/view.rb +74 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/web_frontend.rb +22 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/web_service.rb +18 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser/web_transaction.rb +137 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/mmtrix/metric_parser.rb +70 -0
- metadata +1263 -0
@@ -0,0 +1,849 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# This file is distributed under Mmtrix's license terms.
|
3
|
+
# See https://github.com/mmtrix/rpm/blob/master/LICENSE for complete details.
|
4
|
+
|
5
|
+
require File.expand_path(File.join(File.dirname(__FILE__),'..','..','test_helper'))
|
6
|
+
require File.expand_path(File.join(File.dirname(__FILE__),'..','data_container_tests'))
|
7
|
+
|
8
|
+
class Mmtrix::Agent::TransactionSamplerTest < Minitest::Test
|
9
|
+
|
10
|
+
module MockGCStats
|
11
|
+
|
12
|
+
def time
|
13
|
+
return 0 if @@values.empty?
|
14
|
+
raise "too many calls" if @@index >= @@values.size
|
15
|
+
@@curtime ||= 0
|
16
|
+
@@curtime += (@@values[@@index] * 1e09).to_i
|
17
|
+
@@index += 1
|
18
|
+
@@curtime
|
19
|
+
end
|
20
|
+
|
21
|
+
def self.mock_values= array
|
22
|
+
@@values = array
|
23
|
+
@@index = 0
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
def setup
|
29
|
+
Mmtrix::Agent::TransactionState.tl_clear_for_testing
|
30
|
+
@state = Mmtrix::Agent::TransactionState.tl_get
|
31
|
+
agent = Mmtrix::Agent.instance
|
32
|
+
stats_engine = Mmtrix::Agent::StatsEngine.new
|
33
|
+
agent.stubs(:stats_engine).returns(stats_engine)
|
34
|
+
@sampler = Mmtrix::Agent::TransactionSampler.new
|
35
|
+
@old_sampler = Mmtrix::Agent.instance.transaction_sampler
|
36
|
+
Mmtrix::Agent.instance.instance_variable_set(:@transaction_sampler, @sampler)
|
37
|
+
@test_config = { :'transaction_tracer.enabled' => true }
|
38
|
+
Mmtrix::Agent.config.add_config_for_testing(@test_config)
|
39
|
+
|
40
|
+
attributes = Mmtrix::Agent::Transaction::Attributes.new(Mmtrix::Agent.instance.attribute_filter)
|
41
|
+
@txn = stub('txn',
|
42
|
+
:best_name => '/path',
|
43
|
+
:request_path => '/request_path',
|
44
|
+
:guid => 'a guid',
|
45
|
+
:ignore_trace? => false,
|
46
|
+
:cat_trip_id => '',
|
47
|
+
:cat_path_hash => '',
|
48
|
+
:is_synthetics_request? => false,
|
49
|
+
:filtered_params => {},
|
50
|
+
:attributes => attributes
|
51
|
+
)
|
52
|
+
end
|
53
|
+
|
54
|
+
def teardown
|
55
|
+
super
|
56
|
+
Mmtrix::Agent::TransactionState.tl_clear_for_testing
|
57
|
+
Mmtrix::Agent.config.remove_config(@test_config)
|
58
|
+
Mmtrix::Agent.instance.instance_variable_set(:@transaction_sampler, @old_sampler)
|
59
|
+
end
|
60
|
+
|
61
|
+
# Helpers for DataContainerTests
|
62
|
+
|
63
|
+
def create_container
|
64
|
+
@sampler
|
65
|
+
end
|
66
|
+
|
67
|
+
def populate_container(sampler, n)
|
68
|
+
n.times do |i|
|
69
|
+
sample = sample_with(:duration => 1, :transaction_name => "t#{i}", :synthetics_resource_id => 1)
|
70
|
+
@sampler.store_sample(sample)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
include Mmtrix::DataContainerTests
|
75
|
+
|
76
|
+
# Tests
|
77
|
+
|
78
|
+
def test_on_start_transaction_default
|
79
|
+
@sampler.expects(:start_builder).with(@state, 100.0)
|
80
|
+
@sampler.on_start_transaction(@state, Time.at(100))
|
81
|
+
end
|
82
|
+
|
83
|
+
def test_on_start_transaction_disabled
|
84
|
+
with_config(:'transaction_tracer.enabled' => false,
|
85
|
+
:developer_mode => false) do
|
86
|
+
@sampler.expects(:start_builder).never
|
87
|
+
@sampler.on_start_transaction(@state, Time.at(100))
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
def test_notice_push_frame_no_builder
|
92
|
+
assert_equal(nil, @sampler.notice_push_frame(@state))
|
93
|
+
end
|
94
|
+
|
95
|
+
def test_notice_pop_frame_no_builder
|
96
|
+
assert_equal(nil, @sampler.notice_pop_frame(@state, 'a frame', Time.at(100)))
|
97
|
+
end
|
98
|
+
|
99
|
+
def test_notice_pop_frame_with_finished_sample
|
100
|
+
builder = mock('builder')
|
101
|
+
sample = mock('sample')
|
102
|
+
builder.expects(:sample).returns(sample)
|
103
|
+
sample.expects(:finished).returns(true)
|
104
|
+
@state.expects(:transaction_sample_builder).returns(builder)
|
105
|
+
|
106
|
+
assert_raises(RuntimeError) do
|
107
|
+
@sampler.notice_pop_frame(@state, 'a frame', Time.at(100))
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
def test_on_finishing_transaction_no_builder
|
112
|
+
@state.transaction_sample_builder = nil
|
113
|
+
assert_equal(nil, @sampler.on_finishing_transaction(@state, @txn))
|
114
|
+
end
|
115
|
+
|
116
|
+
def test_captures_correct_transaction_duration
|
117
|
+
freeze_time
|
118
|
+
in_transaction do |txn|
|
119
|
+
advance_time(10.0)
|
120
|
+
end
|
121
|
+
|
122
|
+
assert_equal(10.0, @sampler.last_sample.duration)
|
123
|
+
end
|
124
|
+
|
125
|
+
def test_on_finishing_transaction_passes_guid_along
|
126
|
+
in_transaction do |txn|
|
127
|
+
txn.stubs(:guid).returns('a guid')
|
128
|
+
end
|
129
|
+
|
130
|
+
assert_equal('a guid', @sampler.last_sample.guid)
|
131
|
+
end
|
132
|
+
|
133
|
+
def test_records_cpu_time_on_transaction_samples
|
134
|
+
in_transaction do |txn|
|
135
|
+
txn.stubs(:cpu_burn).returns(42)
|
136
|
+
end
|
137
|
+
|
138
|
+
assert_equal(42, attributes_for(@sampler.last_sample, :intrinsic)[:cpu_time])
|
139
|
+
end
|
140
|
+
|
141
|
+
def test_notice_extra_data_no_builder
|
142
|
+
ret = @sampler.send(:notice_extra_data, nil, nil, nil, nil)
|
143
|
+
assert_nil ret
|
144
|
+
end
|
145
|
+
|
146
|
+
def test_notice_extra_data_no_node
|
147
|
+
mock_builder = mock('builder')
|
148
|
+
@sampler.expects(:tl_builder).returns(mock_builder).once
|
149
|
+
mock_builder.expects(:current_node).returns(nil)
|
150
|
+
builder = @sampler.tl_builder
|
151
|
+
@sampler.send(:notice_extra_data, builder, nil, nil, nil)
|
152
|
+
end
|
153
|
+
|
154
|
+
def test_notice_extra_data_with_node_no_old_message_no_config_key
|
155
|
+
key = :a_key
|
156
|
+
mock_builder = mock('builder')
|
157
|
+
node = mock('node')
|
158
|
+
@sampler.expects(:tl_builder).returns(mock_builder).once
|
159
|
+
mock_builder.expects(:current_node).returns(node)
|
160
|
+
Mmtrix::Agent::TransactionSampler.expects(:truncate_message) \
|
161
|
+
.with('a message').returns('truncated_message')
|
162
|
+
node.expects(:[]=).with(key, 'truncated_message')
|
163
|
+
@sampler.expects(:append_backtrace).with(node, 1.0)
|
164
|
+
builder = @sampler.tl_builder
|
165
|
+
@sampler.send(:notice_extra_data, builder, 'a message', 1.0, key)
|
166
|
+
end
|
167
|
+
|
168
|
+
def test_append_backtrace_under_duration
|
169
|
+
with_config(:'transaction_tracer.stack_trace_threshold' => 2.0) do
|
170
|
+
node = mock('node')
|
171
|
+
node.expects(:[]=).with(:backtrace, any_parameters).never
|
172
|
+
@sampler.append_backtrace(mock('node'), 1.0)
|
173
|
+
end
|
174
|
+
end
|
175
|
+
|
176
|
+
def test_append_backtrace_over_duration
|
177
|
+
with_config(:'transaction_tracer.stack_trace_threshold' => 2.0) do
|
178
|
+
node = mock('node')
|
179
|
+
# note the mocha expectation matcher - you can't hardcode a
|
180
|
+
# backtrace so we match on any string, which should be okay.
|
181
|
+
node.expects(:[]=).with(:backtrace, instance_of(String))
|
182
|
+
@sampler.append_backtrace(node, 2.5)
|
183
|
+
end
|
184
|
+
end
|
185
|
+
|
186
|
+
def test_notice_sql_recording_sql
|
187
|
+
@state.record_sql = true
|
188
|
+
builder = @sampler.tl_builder
|
189
|
+
@sampler.expects(:notice_extra_data).with(builder, 'some sql', 1.0, :sql)
|
190
|
+
@sampler.notice_sql('some sql', {:config => 'a config'}, 1.0, @state)
|
191
|
+
end
|
192
|
+
|
193
|
+
def test_notice_sql_not_recording
|
194
|
+
@state.record_sql = false
|
195
|
+
builder = @sampler.tl_builder
|
196
|
+
@sampler.expects(:notice_extra_data).with(builder, 'some sql', 1.0, :sql).never # <--- important
|
197
|
+
@sampler.notice_sql('some sql', {:config => 'a config'}, 1.0, @state)
|
198
|
+
end
|
199
|
+
|
200
|
+
def test_notice_nosql
|
201
|
+
builder = @sampler.tl_builder
|
202
|
+
@sampler.expects(:notice_extra_data).with(builder, 'a key', 1.0, :key)
|
203
|
+
@sampler.notice_nosql('a key', 1.0)
|
204
|
+
end
|
205
|
+
|
206
|
+
def test_notice_nosql_statement
|
207
|
+
builder = @sampler.tl_builder
|
208
|
+
@sampler.expects(:notice_extra_data).with(builder, 'query data', 1.0, :statement)
|
209
|
+
@sampler.notice_nosql_statement('query data', 1.0)
|
210
|
+
end
|
211
|
+
|
212
|
+
def test_harvest_when_disabled
|
213
|
+
with_config(:'transaction_tracer.enabled' => false,
|
214
|
+
:developer_mode => false) do
|
215
|
+
assert_equal([], @sampler.harvest!)
|
216
|
+
end
|
217
|
+
end
|
218
|
+
|
219
|
+
def test_harvest_defaults
|
220
|
+
# making sure the sampler clears out the old samples
|
221
|
+
@sampler.instance_eval do
|
222
|
+
@last_sample = 'a sample'
|
223
|
+
end
|
224
|
+
|
225
|
+
assert_equal([], @sampler.harvest!)
|
226
|
+
|
227
|
+
# make sure the samples have been cleared
|
228
|
+
assert_equal(nil, @sampler.instance_variable_get('@last_sample'))
|
229
|
+
end
|
230
|
+
|
231
|
+
def test_harvest_no_data
|
232
|
+
assert_equal([], @sampler.harvest!)
|
233
|
+
end
|
234
|
+
|
235
|
+
def test_add_samples_holds_onto_previous_result
|
236
|
+
sample = sample_with(:duration => 1)
|
237
|
+
@sampler.merge!([sample])
|
238
|
+
assert_equal([sample], @sampler.harvest!)
|
239
|
+
end
|
240
|
+
|
241
|
+
def test_merge_avoids_dups
|
242
|
+
sample = sample_with(:duration => 1)
|
243
|
+
@sampler.merge!([sample, sample])
|
244
|
+
assert_equal([sample], @sampler.harvest!)
|
245
|
+
end
|
246
|
+
|
247
|
+
def test_harvest_avoids_dups_from_harvested_samples
|
248
|
+
sample = sample_with(:duration => 2.5)
|
249
|
+
@sampler.store_sample(sample)
|
250
|
+
@sampler.store_sample(sample)
|
251
|
+
|
252
|
+
assert_equal([sample], @sampler.harvest!)
|
253
|
+
end
|
254
|
+
|
255
|
+
def test_harvest_adding_slowest
|
256
|
+
sample = sample_with(:duration => 2.5)
|
257
|
+
@sampler.store_sample(sample)
|
258
|
+
|
259
|
+
assert_equal([sample], @sampler.harvest!)
|
260
|
+
end
|
261
|
+
|
262
|
+
def test_harvest_new_slower_sample_replaces_older
|
263
|
+
faster_sample = sample_with(:duration => 5.0)
|
264
|
+
slower_sample = sample_with(:duration => 10.0)
|
265
|
+
|
266
|
+
@sampler.store_sample(slower_sample)
|
267
|
+
@sampler.merge!([faster_sample])
|
268
|
+
|
269
|
+
assert_equal([slower_sample], @sampler.harvest!)
|
270
|
+
end
|
271
|
+
|
272
|
+
def test_harvest_keep_older_slower_sample
|
273
|
+
faster_sample = sample_with(:duration => 5.0)
|
274
|
+
slower_sample = sample_with(:duration => 10.0)
|
275
|
+
|
276
|
+
@sampler.store_sample(faster_sample)
|
277
|
+
@sampler.merge!([slower_sample])
|
278
|
+
|
279
|
+
assert_equal([slower_sample], @sampler.harvest!)
|
280
|
+
end
|
281
|
+
|
282
|
+
SLOWEST_SAMPLE_MAX = Mmtrix::Agent::Transaction::SlowestSampleBuffer::CAPACITY
|
283
|
+
XRAY_SAMPLE_MAX = Mmtrix::Agent.config[:'xray_session.max_samples']
|
284
|
+
|
285
|
+
def test_harvest_respects_limits_from_previous
|
286
|
+
slowest = sample_with(:duration => 10.0)
|
287
|
+
previous = [slowest]
|
288
|
+
|
289
|
+
xray_samples = generate_samples(100, :transaction_name => "Active/xray")
|
290
|
+
previous.concat(xray_samples)
|
291
|
+
|
292
|
+
result = nil
|
293
|
+
with_active_xray_session("Active/xray") do
|
294
|
+
@sampler.merge!(previous)
|
295
|
+
result = @sampler.harvest!
|
296
|
+
end
|
297
|
+
|
298
|
+
expected = [slowest]
|
299
|
+
expected = expected.concat(xray_samples.first(XRAY_SAMPLE_MAX))
|
300
|
+
|
301
|
+
assert_equal_unordered(expected, result)
|
302
|
+
end
|
303
|
+
|
304
|
+
def test_harvest_respects_limits_from_current_traces
|
305
|
+
slowest = sample_with(:duration => 10.0)
|
306
|
+
@sampler.store_sample(slowest)
|
307
|
+
|
308
|
+
xray_samples = generate_samples(100, :transaction_name => "Active/xray")
|
309
|
+
with_active_xray_session("Active/xray") do
|
310
|
+
xray_samples.each do |xrayed|
|
311
|
+
@sampler.store_sample(xrayed)
|
312
|
+
end
|
313
|
+
end
|
314
|
+
|
315
|
+
result = @sampler.harvest!
|
316
|
+
|
317
|
+
expected = [slowest]
|
318
|
+
expected = expected.concat(xray_samples.first(XRAY_SAMPLE_MAX))
|
319
|
+
assert_equal_unordered(expected, result)
|
320
|
+
end
|
321
|
+
|
322
|
+
class BoundlessBuffer < Mmtrix::Agent::Transaction::TransactionSampleBuffer
|
323
|
+
def capacity
|
324
|
+
1.0 / 0 # Can't use Float::INFINITY on older Rubies :(
|
325
|
+
end
|
326
|
+
end
|
327
|
+
|
328
|
+
def test_harvest_has_hard_maximum
|
329
|
+
boundless_buffer = BoundlessBuffer.new
|
330
|
+
|
331
|
+
buffers = @sampler.instance_variable_get(:@sample_buffers)
|
332
|
+
buffers << boundless_buffer
|
333
|
+
|
334
|
+
samples = generate_samples(100)
|
335
|
+
samples.each do |sample|
|
336
|
+
@sampler.store_sample(sample)
|
337
|
+
end
|
338
|
+
|
339
|
+
result = @sampler.harvest!
|
340
|
+
assert_equal Mmtrix::Agent::Transaction::TransactionSampleBuffer::SINGLE_BUFFER_MAX, result.length
|
341
|
+
end
|
342
|
+
|
343
|
+
def test_start_builder_default
|
344
|
+
@state.expects(:is_execution_traced?).returns(true)
|
345
|
+
@sampler.send(:start_builder, @state)
|
346
|
+
assert(@state.transaction_sample_builder.is_a?(Mmtrix::Agent::TransactionSampleBuilder),
|
347
|
+
"should set up a new builder by default")
|
348
|
+
end
|
349
|
+
|
350
|
+
def test_start_builder_disabled
|
351
|
+
@state.transaction_sample_builder = 'not nil.'
|
352
|
+
with_config(:'transaction_tracer.enabled' => false,
|
353
|
+
:developer_mode => false) do
|
354
|
+
@sampler.send(:start_builder, @state)
|
355
|
+
assert_equal(nil, @state.transaction_sample_builder,
|
356
|
+
"should clear the transaction builder when disabled")
|
357
|
+
end
|
358
|
+
end
|
359
|
+
|
360
|
+
def test_start_builder_dont_replace_existing_builder
|
361
|
+
fake_builder = mock('transaction sample builder')
|
362
|
+
@state.transaction_sample_builder = fake_builder
|
363
|
+
@sampler.send(:start_builder, @state)
|
364
|
+
assert_equal(fake_builder, @state.transaction_sample_builder,
|
365
|
+
"should not overwrite an existing transaction sample builder")
|
366
|
+
@state.transaction_sample_builder = nil
|
367
|
+
end
|
368
|
+
|
369
|
+
def test_builder
|
370
|
+
@state.transaction_sample_builder = 'shamalamadingdong, brother.'
|
371
|
+
assert_equal('shamalamadingdong, brother.', @sampler.send(:tl_builder),
|
372
|
+
'should return the value from the thread local variable')
|
373
|
+
@state.transaction_sample_builder = nil
|
374
|
+
end
|
375
|
+
|
376
|
+
# Tests below this line are functional tests for the sampler, not
|
377
|
+
# unit tests per se - some overlap with the tests above, but
|
378
|
+
# generally usefully so
|
379
|
+
|
380
|
+
|
381
|
+
def test_sample_tree
|
382
|
+
with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
|
383
|
+
@sampler.on_start_transaction(@state, Time.now)
|
384
|
+
@sampler.notice_push_frame(@state)
|
385
|
+
|
386
|
+
@sampler.notice_push_frame(@state)
|
387
|
+
@sampler.notice_pop_frame(@state, "b")
|
388
|
+
|
389
|
+
@sampler.notice_push_frame(@state)
|
390
|
+
@sampler.notice_push_frame(@state)
|
391
|
+
@sampler.notice_pop_frame(@state, "d")
|
392
|
+
@sampler.notice_pop_frame(@state, "c")
|
393
|
+
|
394
|
+
@sampler.notice_pop_frame(@state, "a")
|
395
|
+
@sampler.on_finishing_transaction(@state, @txn)
|
396
|
+
sample = @sampler.harvest!.first
|
397
|
+
assert_equal "ROOT{a{b,c{d}}}", sample.to_s_compact
|
398
|
+
end
|
399
|
+
end
|
400
|
+
|
401
|
+
def test_sample__gc_stats
|
402
|
+
GC.extend MockGCStats
|
403
|
+
# These are effectively Garbage Collects, detected each time GC.time is
|
404
|
+
# called by the transaction sampler. One time value in seconds for each call.
|
405
|
+
MockGCStats.mock_values = [0,0,0,1,0,0,1,0,0,0,0,0,0,0,0]
|
406
|
+
|
407
|
+
with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
|
408
|
+
@sampler.on_start_transaction(@state, Time.now)
|
409
|
+
@sampler.notice_push_frame(@state)
|
410
|
+
|
411
|
+
@sampler.notice_push_frame(@state)
|
412
|
+
@sampler.notice_pop_frame(@state, "b")
|
413
|
+
|
414
|
+
@sampler.notice_push_frame(@state)
|
415
|
+
@sampler.notice_push_frame(@state)
|
416
|
+
@sampler.notice_pop_frame(@state, "d")
|
417
|
+
@sampler.notice_pop_frame(@state, "c")
|
418
|
+
|
419
|
+
@sampler.notice_pop_frame(@state, "a")
|
420
|
+
@sampler.on_finishing_transaction(@state, @txn)
|
421
|
+
|
422
|
+
sample = @sampler.harvest!.first
|
423
|
+
assert_equal "ROOT{a{b,c{d}}}", sample.to_s_compact
|
424
|
+
end
|
425
|
+
ensure
|
426
|
+
MockGCStats.mock_values = []
|
427
|
+
end
|
428
|
+
|
429
|
+
# NB this test occasionally fails due to a GC during one of the
|
430
|
+
# sample traces, for example. It's unfortunate, but we can't
|
431
|
+
# reliably turn off GC on all versions of ruby under test
|
432
|
+
def test_harvest_slowest
|
433
|
+
with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
|
434
|
+
run_sample_trace(0,0.1)
|
435
|
+
run_sample_trace(0,0.1)
|
436
|
+
# two second duration
|
437
|
+
run_sample_trace(0,2)
|
438
|
+
run_sample_trace(0,0.1)
|
439
|
+
run_sample_trace(0,0.1)
|
440
|
+
|
441
|
+
slowest = @sampler.harvest![0]
|
442
|
+
first_duration = slowest.duration
|
443
|
+
assert((first_duration.round >= 2),
|
444
|
+
"expected sample duration = 2, but was: #{slowest.duration.inspect}")
|
445
|
+
|
446
|
+
# 1 second duration
|
447
|
+
run_sample_trace(0,1)
|
448
|
+
@sampler.merge!([slowest])
|
449
|
+
not_as_slow = @sampler.harvest![0]
|
450
|
+
assert((not_as_slow == slowest), "Should re-harvest the same transaction since it should be slower than the new transaction - expected #{slowest.inspect} but got #{not_as_slow.inspect}")
|
451
|
+
|
452
|
+
run_sample_trace(0,10)
|
453
|
+
|
454
|
+
@sampler.merge!([slowest])
|
455
|
+
new_slowest = @sampler.harvest![0]
|
456
|
+
assert((new_slowest != slowest), "Should not harvest the same trace since the new one should be slower")
|
457
|
+
assert_equal(new_slowest.duration.round, 10, "Slowest duration must be = 10, but was: #{new_slowest.duration.inspect}")
|
458
|
+
end
|
459
|
+
end
|
460
|
+
|
461
|
+
def test_prepare_to_send
|
462
|
+
t0 = freeze_time
|
463
|
+
sample = with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
|
464
|
+
run_sample_trace { advance_time(2.0) }
|
465
|
+
@sampler.harvest![0]
|
466
|
+
end
|
467
|
+
|
468
|
+
ready_to_send = sample.prepare_to_send!
|
469
|
+
assert_equal 2.0, ready_to_send.duration
|
470
|
+
assert_equal t0.to_f, ready_to_send.start_time
|
471
|
+
end
|
472
|
+
|
473
|
+
def test_multithread
|
474
|
+
threads = []
|
475
|
+
|
476
|
+
5.times do
|
477
|
+
threads << Thread.new do
|
478
|
+
10.times do
|
479
|
+
# Important that this uses the actual thread-local, not the shared
|
480
|
+
# @state variable used in other non-threaded tests
|
481
|
+
run_sample_trace(Time.now.to_f, nil, Mmtrix::Agent::TransactionState.tl_get) do
|
482
|
+
sleep 0.0001
|
483
|
+
end
|
484
|
+
end
|
485
|
+
end
|
486
|
+
end
|
487
|
+
threads.each {|t| t.join }
|
488
|
+
end
|
489
|
+
|
490
|
+
def test_sample_with_parallel_paths
|
491
|
+
with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
|
492
|
+
@sampler.on_start_transaction(@state, Time.now)
|
493
|
+
@sampler.notice_push_frame(@state)
|
494
|
+
|
495
|
+
assert_equal 1, @sampler.tl_builder.scope_depth
|
496
|
+
|
497
|
+
@sampler.notice_pop_frame(@state, "a")
|
498
|
+
@sampler.on_finishing_transaction(@state, @txn)
|
499
|
+
|
500
|
+
assert_nil @sampler.tl_builder
|
501
|
+
|
502
|
+
@sampler.on_start_transaction(@state, Time.now)
|
503
|
+
@sampler.notice_push_frame(@state)
|
504
|
+
@sampler.notice_pop_frame(@state, "a")
|
505
|
+
@sampler.on_finishing_transaction(@state, @txn)
|
506
|
+
|
507
|
+
assert_nil @sampler.tl_builder
|
508
|
+
|
509
|
+
assert_equal "ROOT{a}", @sampler.last_sample.to_s_compact
|
510
|
+
end
|
511
|
+
end
|
512
|
+
|
513
|
+
def test_double_traced_method_stack_empty
|
514
|
+
with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
|
515
|
+
@sampler.on_start_transaction(@state, Time.now)
|
516
|
+
@sampler.notice_push_frame(@state)
|
517
|
+
@sampler.notice_pop_frame(@state, "a")
|
518
|
+
@sampler.on_finishing_transaction(@state, @txn)
|
519
|
+
@sampler.on_finishing_transaction(@state, @txn)
|
520
|
+
@sampler.on_finishing_transaction(@state, @txn)
|
521
|
+
@sampler.on_finishing_transaction(@state, @txn)
|
522
|
+
|
523
|
+
refute_nil @sampler.harvest![0]
|
524
|
+
end
|
525
|
+
end
|
526
|
+
|
527
|
+
|
528
|
+
def test_record_sql_off
|
529
|
+
@sampler.on_start_transaction(@state, Time.now.to_f)
|
530
|
+
|
531
|
+
@state.record_sql = false
|
532
|
+
|
533
|
+
@sampler.notice_sql("test", {}, 0, @state)
|
534
|
+
|
535
|
+
node = @sampler.send(:tl_builder).current_node
|
536
|
+
|
537
|
+
assert_nil node[:sql]
|
538
|
+
end
|
539
|
+
|
540
|
+
def test_stack_trace_sql
|
541
|
+
with_config(:'transaction_tracer.stack_trace_threshold' => 0) do
|
542
|
+
@sampler.on_start_transaction(@state, Time.now.to_f)
|
543
|
+
@sampler.notice_sql("test", {}, 1, @state)
|
544
|
+
node = @sampler.send(:tl_builder).current_node
|
545
|
+
|
546
|
+
assert node[:sql]
|
547
|
+
assert node[:backtrace]
|
548
|
+
end
|
549
|
+
end
|
550
|
+
|
551
|
+
def test_nil_stacktrace
|
552
|
+
with_config(:'transaction_tracer.stack_trace_threshold' => 2) do
|
553
|
+
@sampler.on_start_transaction(@state, Time.now.to_f)
|
554
|
+
@sampler.notice_sql("test", {}, 1, @state)
|
555
|
+
node = @sampler.send(:tl_builder).current_node
|
556
|
+
|
557
|
+
assert node[:sql]
|
558
|
+
assert_nil node[:backtrace]
|
559
|
+
end
|
560
|
+
end
|
561
|
+
|
562
|
+
def test_big_sql
|
563
|
+
@sampler.on_start_transaction(@state, Time.now.to_f)
|
564
|
+
|
565
|
+
sql = "SADJKHASDHASD KAJSDH ASKDH ASKDHASDK JASHD KASJDH ASKDJHSAKDJHAS DKJHSADKJSAH DKJASHD SAKJDH SAKDJHS"
|
566
|
+
|
567
|
+
len = 0
|
568
|
+
while len <= 16384
|
569
|
+
@sampler.notice_sql(sql, {}, 0, @state)
|
570
|
+
len += sql.length
|
571
|
+
end
|
572
|
+
|
573
|
+
node = @sampler.send(:tl_builder).current_node
|
574
|
+
|
575
|
+
sql = node[:sql]
|
576
|
+
|
577
|
+
assert sql.length <= 16384
|
578
|
+
end
|
579
|
+
|
580
|
+
def test_node_obfuscated
|
581
|
+
@sampler.on_start_transaction(@state, Time.now.to_f)
|
582
|
+
@sampler.notice_push_frame(@state)
|
583
|
+
|
584
|
+
orig_sql = "SELECT * from Jim where id=66"
|
585
|
+
|
586
|
+
@sampler.notice_sql(orig_sql, {}, 0, @state)
|
587
|
+
|
588
|
+
node = @sampler.send(:tl_builder).current_node
|
589
|
+
|
590
|
+
assert_equal orig_sql, node[:sql]
|
591
|
+
assert_equal "SELECT * from Jim where id=?", node.obfuscated_sql
|
592
|
+
@sampler.notice_pop_frame(@state, "foo")
|
593
|
+
end
|
594
|
+
|
595
|
+
def test_should_not_collect_nodes_beyond_limit
|
596
|
+
with_config(:'transaction_tracer.limit_segments' => 3) do
|
597
|
+
run_sample_trace do
|
598
|
+
@sampler.notice_push_frame(@state)
|
599
|
+
@sampler.notice_sql("SELECT * FROM sandwiches WHERE bread = 'challah'", {}, 0, @state)
|
600
|
+
@sampler.notice_push_frame(@state)
|
601
|
+
@sampler.notice_sql("SELECT * FROM sandwiches WHERE bread = 'semolina'", {}, 0, @state)
|
602
|
+
@sampler.notice_pop_frame(@state, "a11")
|
603
|
+
@sampler.notice_pop_frame(@state, "a1")
|
604
|
+
end
|
605
|
+
assert_equal 3, @sampler.last_sample.count_nodes
|
606
|
+
|
607
|
+
expected_sql = "SELECT * FROM sandwiches WHERE bread = 'challah'"
|
608
|
+
deepest_node = find_last_transaction_node(@sampler.last_sample)
|
609
|
+
assert_equal([], deepest_node.called_nodes)
|
610
|
+
assert_equal(expected_sql, deepest_node[:sql])
|
611
|
+
end
|
612
|
+
end
|
613
|
+
|
614
|
+
def test_renaming_current_node_midflight
|
615
|
+
@sampler.start_builder(@state)
|
616
|
+
node = @sampler.notice_push_frame(@state)
|
617
|
+
node.metric_name = 'External/www.google.com/Net::HTTP/GET'
|
618
|
+
@sampler.notice_pop_frame(@state, 'External/www.google.com/Net::HTTP/GET')
|
619
|
+
end
|
620
|
+
|
621
|
+
def test_adding_node_parameters
|
622
|
+
@sampler.start_builder(@state)
|
623
|
+
@sampler.notice_push_frame(@state)
|
624
|
+
@sampler.add_node_parameters(:transaction_guid => '97612F92E6194080')
|
625
|
+
assert_equal '97612F92E6194080', @sampler.tl_builder.current_node[:transaction_guid]
|
626
|
+
end
|
627
|
+
|
628
|
+
def test_large_transaction_trace_harvest
|
629
|
+
config = {
|
630
|
+
:'transaction_tracer.enabled' => true,
|
631
|
+
:'transaction_tracer.transaction_threshold' => 0,
|
632
|
+
:'transaction_tracer.limit_segments' => 100
|
633
|
+
}
|
634
|
+
with_config(config) do
|
635
|
+
run_long_sample_trace(110)
|
636
|
+
|
637
|
+
samples = @sampler.harvest!
|
638
|
+
assert_equal(1, samples.size)
|
639
|
+
|
640
|
+
# Verify that the TT stopped recording after 100 nodes
|
641
|
+
assert_equal(100, samples.first.count_nodes)
|
642
|
+
end
|
643
|
+
end
|
644
|
+
|
645
|
+
def test_build_database_statement_uses_adapter_from_connection_config
|
646
|
+
config = { :adapter => 'GumbyDB' }
|
647
|
+
sql = "SELECT * FROM \"horses\" WHERE \"name\" = 'pokey'"
|
648
|
+
statement = @sampler.build_database_statement(sql, config, Proc.new {})
|
649
|
+
assert_equal 'GumbyDB', statement.adapter
|
650
|
+
end
|
651
|
+
|
652
|
+
def test_harvest_prepare_samples
|
653
|
+
samples = [mock('TT0'), mock('TT1')]
|
654
|
+
samples[0].expects(:prepare_to_send!)
|
655
|
+
samples[1].expects(:prepare_to_send!)
|
656
|
+
@sampler.stubs(:harvest_from_sample_buffers).returns(samples)
|
657
|
+
prepared = @sampler.harvest!
|
658
|
+
assert_equal(samples, prepared)
|
659
|
+
end
|
660
|
+
|
661
|
+
def test_harvest_prepare_samples_with_error
|
662
|
+
samples = [mock('TT0'), mock('TT1')]
|
663
|
+
samples[0].expects(:prepare_to_send!).raises('an error')
|
664
|
+
samples[1].expects(:prepare_to_send!)
|
665
|
+
@sampler.stubs(:harvest_from_sample_buffers).returns(samples)
|
666
|
+
prepared = @sampler.harvest!
|
667
|
+
assert_equal([samples[1]], prepared)
|
668
|
+
end
|
669
|
+
|
670
|
+
def test_custom_params_include_gc_time
|
671
|
+
with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
|
672
|
+
in_transaction do
|
673
|
+
Mmtrix::Agent::StatsEngine::GCProfiler.stubs(:record_delta).returns(10.0)
|
674
|
+
end
|
675
|
+
end
|
676
|
+
|
677
|
+
assert_equal 10.0, intrinsic_attributes_from_last_sample[:gc_time]
|
678
|
+
end
|
679
|
+
|
680
|
+
def test_custom_params_include_tripid
|
681
|
+
guid = nil
|
682
|
+
|
683
|
+
Mmtrix::Agent.instance.cross_app_monitor.stubs(:client_referring_transaction_trip_id).returns('PDX-NRT')
|
684
|
+
|
685
|
+
with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
|
686
|
+
in_transaction do |transaction|
|
687
|
+
Mmtrix::Agent::TransactionState.tl_get.is_cross_app_caller = true
|
688
|
+
guid = transaction.guid
|
689
|
+
end
|
690
|
+
end
|
691
|
+
|
692
|
+
assert_equal 'PDX-NRT', intrinsic_attributes_from_last_sample[:trip_id]
|
693
|
+
end
|
694
|
+
|
695
|
+
def test_custom_params_dont_include_tripid_if_not_cross_app_transaction
|
696
|
+
Mmtrix::Agent.instance.cross_app_monitor.stubs(:client_referring_transaction_trip_id).returns('PDX-NRT')
|
697
|
+
|
698
|
+
with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
|
699
|
+
in_transaction do |transaction|
|
700
|
+
Mmtrix::Agent::TransactionState.tl_get.is_cross_app_caller = false
|
701
|
+
end
|
702
|
+
end
|
703
|
+
|
704
|
+
assert_nil intrinsic_attributes_from_last_sample[:trip_id]
|
705
|
+
end
|
706
|
+
|
707
|
+
def test_custom_params_include_path_hash
|
708
|
+
path_hash = nil
|
709
|
+
|
710
|
+
with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
|
711
|
+
in_transaction do |transaction|
|
712
|
+
state = Mmtrix::Agent::TransactionState.tl_get
|
713
|
+
state.is_cross_app_caller = true
|
714
|
+
path_hash = transaction.cat_path_hash(state)
|
715
|
+
end
|
716
|
+
end
|
717
|
+
|
718
|
+
assert_equal path_hash, intrinsic_attributes_from_last_sample[:path_hash]
|
719
|
+
end
|
720
|
+
|
721
|
+
def test_synthetics_parameters_not_included_if_not_valid_synthetics_request
|
722
|
+
with_config(:'transaction_tracer.transaction_threshold' => 0.0) do
|
723
|
+
in_transaction do |txn|
|
724
|
+
txn.raw_synthetics_header = nil
|
725
|
+
txn.synthetics_payload = nil
|
726
|
+
end
|
727
|
+
end
|
728
|
+
|
729
|
+
sample = Mmtrix::Agent.agent.transaction_sampler.harvest!.first
|
730
|
+
|
731
|
+
intrinsic_attributes = attributes_for(sample, :intrinsic)
|
732
|
+
assert_nil sample.synthetics_resource_id
|
733
|
+
assert_nil intrinsic_attributes[:synthetics_resource_id]
|
734
|
+
assert_nil intrinsic_attributes[:synthetics_job_id]
|
735
|
+
assert_nil intrinsic_attributes[:synthetics_monitor_id]
|
736
|
+
end
|
737
|
+
|
738
|
+
def test_synthetics_parameters_included
|
739
|
+
in_transaction do |txn|
|
740
|
+
txn.raw_synthetics_header = ""
|
741
|
+
txn.synthetics_payload = [1, 1, 100, 200, 300]
|
742
|
+
end
|
743
|
+
|
744
|
+
sample = Mmtrix::Agent.agent.transaction_sampler.harvest!.first
|
745
|
+
|
746
|
+
intrinsic_attributes = attributes_for(sample, :intrinsic)
|
747
|
+
assert_equal 100, sample.synthetics_resource_id
|
748
|
+
assert_equal 100, intrinsic_attributes[:synthetics_resource_id]
|
749
|
+
assert_equal 200, intrinsic_attributes[:synthetics_job_id]
|
750
|
+
assert_equal 300, intrinsic_attributes[:synthetics_monitor_id]
|
751
|
+
end
|
752
|
+
|
753
|
+
class Dummy
|
754
|
+
include ::Mmtrix::Agent::Instrumentation::ControllerInstrumentation
|
755
|
+
def run(n)
|
756
|
+
n.times do
|
757
|
+
perform_action_with_mmtrix_trace(:name => 'smile') do
|
758
|
+
end
|
759
|
+
end
|
760
|
+
end
|
761
|
+
end
|
762
|
+
|
763
|
+
# TODO: this test seems to be destabilizing CI in a way that I don't grok.
|
764
|
+
#def sadly_do_not_test_harvest_during_transaction_safety
|
765
|
+
# n = 3000
|
766
|
+
# harvester = Thread.new do
|
767
|
+
# n.times { @sampler.harvest! }
|
768
|
+
# end
|
769
|
+
|
770
|
+
# Dummy.new.run(n)
|
771
|
+
|
772
|
+
# harvester.join
|
773
|
+
#end
|
774
|
+
|
775
|
+
private
|
776
|
+
|
777
|
+
SAMPLE_DEFAULTS = {
|
778
|
+
:threshold => 1.0,
|
779
|
+
:transaction_name => nil
|
780
|
+
}
|
781
|
+
|
782
|
+
def sample_with(incoming_opts = {})
|
783
|
+
opts = SAMPLE_DEFAULTS.dup
|
784
|
+
opts.merge!(incoming_opts)
|
785
|
+
|
786
|
+
attributes = Mmtrix::Agent::Transaction::Attributes.new(Mmtrix::Agent.instance.attribute_filter)
|
787
|
+
attributes.add_intrinsic_attribute(:synthetics_resource_id, opts[:synthetics_resource_id])
|
788
|
+
|
789
|
+
sample = Mmtrix::Agent::Transaction::Trace.new(Time.now)
|
790
|
+
sample.attributes = attributes
|
791
|
+
sample.threshold = opts[:threshold]
|
792
|
+
sample.transaction_name = opts[:transaction_name]
|
793
|
+
sample.stubs(:duration).returns(opts[:duration])
|
794
|
+
sample
|
795
|
+
end
|
796
|
+
|
797
|
+
def generate_samples(count, opts = {})
|
798
|
+
(1..count).map do |millis|
|
799
|
+
sample_with(opts.merge(:duration => (millis / 1000.0)))
|
800
|
+
end
|
801
|
+
end
|
802
|
+
|
803
|
+
def with_active_xray_session(name)
|
804
|
+
xray_session_id = 1234
|
805
|
+
xray_session = Mmtrix::Agent::Commands::XraySession.new({
|
806
|
+
"x_ray_id" => xray_session_id,
|
807
|
+
"key_transaction_name" => name,
|
808
|
+
"run_profiler" => false
|
809
|
+
})
|
810
|
+
|
811
|
+
xray_session_collection = Mmtrix::Agent.instance.agent_command_router.xray_session_collection
|
812
|
+
xray_session_collection.send(:add_session, xray_session)
|
813
|
+
@sampler.xray_sample_buffer.xray_session_collection = xray_session_collection
|
814
|
+
|
815
|
+
yield
|
816
|
+
ensure
|
817
|
+
xray_session_collection.send(:remove_session_by_id, xray_session_id)
|
818
|
+
end
|
819
|
+
|
820
|
+
def run_long_sample_trace(n)
|
821
|
+
@sampler.on_start_transaction(@state, Time.now)
|
822
|
+
n.times do |i|
|
823
|
+
@sampler.notice_push_frame(@state)
|
824
|
+
yield if block_given?
|
825
|
+
@sampler.notice_pop_frame(@state, "node#{i}")
|
826
|
+
end
|
827
|
+
@sampler.on_finishing_transaction(@state, @txn, Time.now.to_f)
|
828
|
+
end
|
829
|
+
|
830
|
+
def run_sample_trace(start = Time.now.to_f, stop = nil, state = @state)
|
831
|
+
@sampler.on_start_transaction(state, start)
|
832
|
+
@sampler.notice_push_frame(state)
|
833
|
+
@sampler.notice_sql("SELECT * FROM sandwiches WHERE bread = 'wheat'", {}, 0, state)
|
834
|
+
@sampler.notice_push_frame(state)
|
835
|
+
@sampler.notice_sql("SELECT * FROM sandwiches WHERE bread = 'white'", {}, 0, state)
|
836
|
+
yield if block_given?
|
837
|
+
@sampler.notice_pop_frame(state, "ab")
|
838
|
+
@sampler.notice_push_frame(state)
|
839
|
+
@sampler.notice_sql("SELECT * FROM sandwiches WHERE bread = 'french'", {}, 0, state)
|
840
|
+
@sampler.notice_pop_frame(state, "ac")
|
841
|
+
@sampler.notice_pop_frame(state, "a")
|
842
|
+
@sampler.on_finishing_transaction(state, @txn, (stop || Time.now.to_f))
|
843
|
+
end
|
844
|
+
|
845
|
+
def intrinsic_attributes_from_last_sample
|
846
|
+
sample = Mmtrix::Agent.agent.transaction_sampler.harvest!.first
|
847
|
+
attributes_for(sample, :intrinsic)
|
848
|
+
end
|
849
|
+
end
|