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,1152 @@
|
|
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 'socket'
|
6
|
+
require 'net/https'
|
7
|
+
require 'net/http'
|
8
|
+
require 'logger'
|
9
|
+
require 'zlib'
|
10
|
+
require 'stringio'
|
11
|
+
require 'mmtrix/agent/sampled_buffer'
|
12
|
+
require 'mmtrix/agent/autostart'
|
13
|
+
require 'mmtrix/agent/harvester'
|
14
|
+
require 'mmtrix/agent/hostname'
|
15
|
+
require 'mmtrix/agent/mmtrix_service'
|
16
|
+
require 'mmtrix/agent/pipe_service'
|
17
|
+
require 'mmtrix/agent/configuration/manager'
|
18
|
+
require 'mmtrix/agent/database'
|
19
|
+
require 'mmtrix/agent/commands/agent_command_router'
|
20
|
+
require 'mmtrix/agent/event_listener'
|
21
|
+
require 'mmtrix/agent/cross_app_monitor'
|
22
|
+
require 'mmtrix/agent/synthetics_monitor'
|
23
|
+
require 'mmtrix/agent/synthetics_event_buffer'
|
24
|
+
require 'mmtrix/agent/transaction_event_aggregator'
|
25
|
+
require 'mmtrix/agent/custom_event_aggregator'
|
26
|
+
require 'mmtrix/agent/sampler_collection'
|
27
|
+
require 'mmtrix/agent/javascript_instrumentor'
|
28
|
+
require 'mmtrix/agent/vm/monotonic_gc_profiler'
|
29
|
+
require 'mmtrix/agent/utilization_data'
|
30
|
+
require 'mmtrix/environment_report'
|
31
|
+
require 'mmtrix/agent/attribute_filter'
|
32
|
+
|
33
|
+
module Mmtrix
|
34
|
+
module Agent
|
35
|
+
|
36
|
+
# The Agent is a singleton that is instantiated when the plugin is
|
37
|
+
# activated. It collects performance data from ruby applications
|
38
|
+
# in realtime as the application runs, and periodically sends that
|
39
|
+
# data to the Mmtrix server.
|
40
|
+
class Agent
|
41
|
+
def self.config
|
42
|
+
::Mmtrix::Agent.config
|
43
|
+
end
|
44
|
+
|
45
|
+
def initialize
|
46
|
+
@started = false
|
47
|
+
@event_loop = nil
|
48
|
+
|
49
|
+
@service = MmtrixService.new
|
50
|
+
|
51
|
+
@events = Mmtrix::Agent::EventListener.new
|
52
|
+
@stats_engine = Mmtrix::Agent::StatsEngine.new
|
53
|
+
@transaction_sampler = Mmtrix::Agent::TransactionSampler.new
|
54
|
+
@sql_sampler = Mmtrix::Agent::SqlSampler.new
|
55
|
+
@agent_command_router = Mmtrix::Agent::Commands::AgentCommandRouter.new(@events)
|
56
|
+
@cross_app_monitor = Mmtrix::Agent::CrossAppMonitor.new(@events)
|
57
|
+
@synthetics_monitor = Mmtrix::Agent::SyntheticsMonitor.new(@events)
|
58
|
+
@error_collector = Mmtrix::Agent::ErrorCollector.new
|
59
|
+
@transaction_rules = Mmtrix::Agent::RulesEngine.new
|
60
|
+
@harvest_samplers = Mmtrix::Agent::SamplerCollection.new(@events)
|
61
|
+
@monotonic_gc_profiler = Mmtrix::Agent::VM::MonotonicGCProfiler.new
|
62
|
+
@javascript_instrumentor = Mmtrix::Agent::JavascriptInstrumentor.new(@events)
|
63
|
+
|
64
|
+
@harvester = Mmtrix::Agent::Harvester.new(@events)
|
65
|
+
@after_fork_lock = Mutex.new
|
66
|
+
|
67
|
+
@transaction_event_aggregator = Mmtrix::Agent::TransactionEventAggregator.new(@events)
|
68
|
+
@custom_event_aggregator = Mmtrix::Agent::CustomEventAggregator.new
|
69
|
+
|
70
|
+
@connect_state = :pending
|
71
|
+
@connect_attempts = 0
|
72
|
+
@environment_report = nil
|
73
|
+
|
74
|
+
@obfuscator = lambda {|sql| Mmtrix::Agent::Database.default_sql_obfuscator(sql) }
|
75
|
+
|
76
|
+
setup_attribute_filter
|
77
|
+
end
|
78
|
+
|
79
|
+
def setup_attribute_filter
|
80
|
+
refresh_attribute_filter
|
81
|
+
|
82
|
+
@events.subscribe(:finished_configuring) do
|
83
|
+
refresh_attribute_filter
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
def refresh_attribute_filter
|
88
|
+
@attribute_filter = Mmtrix::Agent::AttributeFilter.new(Mmtrix::Agent.config)
|
89
|
+
end
|
90
|
+
|
91
|
+
# contains all the class-level methods for Mmtrix::Agent::Agent
|
92
|
+
module ClassMethods
|
93
|
+
# Should only be called by Mmtrix::Control - returns a
|
94
|
+
# memoized singleton instance of the agent, creating one if needed
|
95
|
+
def instance
|
96
|
+
@instance ||= self.new
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
# Holds all the methods defined on Mmtrix::Agent::Agent
|
101
|
+
# instances
|
102
|
+
module InstanceMethods
|
103
|
+
|
104
|
+
# holds a proc that is used to obfuscate sql statements
|
105
|
+
attr_reader :obfuscator
|
106
|
+
# the statistics engine that holds all the timeslice data
|
107
|
+
attr_reader :stats_engine
|
108
|
+
# the transaction sampler that handles recording transactions
|
109
|
+
attr_reader :transaction_sampler
|
110
|
+
attr_reader :sql_sampler
|
111
|
+
# manages agent commands we receive from the collector, and the handlers
|
112
|
+
attr_reader :agent_command_router
|
113
|
+
# error collector is a simple collection of recorded errors
|
114
|
+
attr_reader :error_collector
|
115
|
+
attr_reader :harvest_samplers
|
116
|
+
# whether we should record raw, obfuscated, or no sql
|
117
|
+
attr_reader :record_sql
|
118
|
+
# builder for JS agent scripts to inject
|
119
|
+
attr_reader :javascript_instrumentor
|
120
|
+
# cross application tracing ids and encoding
|
121
|
+
attr_reader :cross_process_id
|
122
|
+
attr_reader :cross_app_encoding_bytes
|
123
|
+
attr_reader :cross_app_monitor
|
124
|
+
# service for communicating with collector
|
125
|
+
attr_accessor :service
|
126
|
+
# Global events dispatcher. This will provides our primary mechanism
|
127
|
+
# for agent-wide events, such as finishing configuration, error notification
|
128
|
+
# and request before/after from Rack.
|
129
|
+
attr_reader :events
|
130
|
+
# Transaction and metric renaming rules as provided by the
|
131
|
+
# collector on connect. The former are applied during txns,
|
132
|
+
# the latter during harvest.
|
133
|
+
attr_reader :transaction_rules
|
134
|
+
# Responsbile for restarting the harvest thread
|
135
|
+
attr_reader :harvester
|
136
|
+
# GC::Profiler.total_time is not monotonic so we wrap it.
|
137
|
+
attr_reader :monotonic_gc_profiler
|
138
|
+
attr_reader :custom_event_aggregator
|
139
|
+
|
140
|
+
attr_reader :attribute_filter
|
141
|
+
|
142
|
+
# This method should be called in a forked process after a fork.
|
143
|
+
# It assumes the parent process initialized the agent, but does
|
144
|
+
# not assume the agent started.
|
145
|
+
#
|
146
|
+
# The call is idempotent, but not re-entrant.
|
147
|
+
#
|
148
|
+
# * It clears any metrics carried over from the parent process
|
149
|
+
# * Restarts the sampler thread if necessary
|
150
|
+
# * Initiates a new agent run and worker loop unless that was done
|
151
|
+
# in the parent process and +:force_reconnect+ is not true
|
152
|
+
#
|
153
|
+
# Options:
|
154
|
+
# * <tt>:force_reconnect => true</tt> to force the spawned process to
|
155
|
+
# establish a new connection, such as when forking a long running process.
|
156
|
+
# The default is false--it will only connect to the server if the parent
|
157
|
+
# had not connected.
|
158
|
+
# * <tt>:keep_retrying => false</tt> if we try to initiate a new
|
159
|
+
# connection, this tells me to only try it once so this method returns
|
160
|
+
# quickly if there is some kind of latency with the server.
|
161
|
+
def after_fork(options={})
|
162
|
+
needs_restart = false
|
163
|
+
@after_fork_lock.synchronize do
|
164
|
+
needs_restart = @harvester.needs_restart?
|
165
|
+
@harvester.mark_started
|
166
|
+
end
|
167
|
+
|
168
|
+
return if !needs_restart ||
|
169
|
+
!Agent.config[:agent_enabled] ||
|
170
|
+
!Agent.config[:monitor_mode] ||
|
171
|
+
disconnected?
|
172
|
+
|
173
|
+
::Mmtrix::Agent.logger.debug "Starting the worker thread in #{Process.pid} (parent #{Process.ppid}) after forking."
|
174
|
+
|
175
|
+
channel_id = options[:report_to_channel]
|
176
|
+
install_pipe_service(channel_id) if channel_id
|
177
|
+
|
178
|
+
# Clear out locks and stats left over from parent process
|
179
|
+
reset_objects_with_locks
|
180
|
+
drop_buffered_data
|
181
|
+
|
182
|
+
setup_and_start_agent(options)
|
183
|
+
end
|
184
|
+
|
185
|
+
def install_pipe_service(channel_id)
|
186
|
+
@service = Mmtrix::Agent::PipeService.new(channel_id)
|
187
|
+
if connected?
|
188
|
+
@connected_pid = Process.pid
|
189
|
+
else
|
190
|
+
::Mmtrix::Agent.logger.debug("Child process #{Process.pid} not reporting to non-connected parent (process #{Process.ppid}).")
|
191
|
+
@service.shutdown(Time.now)
|
192
|
+
disconnect
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
196
|
+
# True if we have initialized and completed 'start'
|
197
|
+
def started?
|
198
|
+
@started
|
199
|
+
end
|
200
|
+
|
201
|
+
# Attempt a graceful shutdown of the agent, flushing any remaining
|
202
|
+
# data.
|
203
|
+
def shutdown
|
204
|
+
return unless started?
|
205
|
+
::Mmtrix::Agent.logger.info "Starting Agent shutdown"
|
206
|
+
|
207
|
+
stop_event_loop
|
208
|
+
trap_signals_for_litespeed
|
209
|
+
untraced_graceful_disconnect
|
210
|
+
revert_to_default_configuration
|
211
|
+
|
212
|
+
@started = nil
|
213
|
+
Control.reset
|
214
|
+
end
|
215
|
+
|
216
|
+
def revert_to_default_configuration
|
217
|
+
Mmtrix::Agent.config.remove_config_type(:manual)
|
218
|
+
Mmtrix::Agent.config.remove_config_type(:server)
|
219
|
+
end
|
220
|
+
|
221
|
+
def stop_event_loop
|
222
|
+
@event_loop.stop if @event_loop
|
223
|
+
end
|
224
|
+
|
225
|
+
def trap_signals_for_litespeed
|
226
|
+
# if litespeed, then ignore all future SIGUSR1 - it's
|
227
|
+
# litespeed trying to shut us down
|
228
|
+
if Agent.config[:dispatcher] == :litespeed
|
229
|
+
Signal.trap("SIGUSR1", "IGNORE")
|
230
|
+
Signal.trap("SIGTERM", "IGNORE")
|
231
|
+
end
|
232
|
+
end
|
233
|
+
|
234
|
+
def untraced_graceful_disconnect
|
235
|
+
begin
|
236
|
+
Mmtrix::Agent.disable_all_tracing do
|
237
|
+
graceful_disconnect
|
238
|
+
end
|
239
|
+
rescue => e
|
240
|
+
::Mmtrix::Agent.logger.error e
|
241
|
+
end
|
242
|
+
end
|
243
|
+
|
244
|
+
# Sets a thread local variable as to whether we should or
|
245
|
+
# should not record sql in the current thread. Returns the
|
246
|
+
# previous value, if there is one
|
247
|
+
def set_record_sql(should_record) #THREAD_LOCAL_ACCESS
|
248
|
+
state = TransactionState.tl_get
|
249
|
+
prev = state.record_sql
|
250
|
+
state.record_sql = should_record
|
251
|
+
prev.nil? || prev
|
252
|
+
end
|
253
|
+
|
254
|
+
# Sets a thread local variable as to whether we should or
|
255
|
+
# should not record transaction traces in the current
|
256
|
+
# thread. Returns the previous value, if there is one
|
257
|
+
def set_record_tt(should_record) #THREAD_LOCAL_ACCESS
|
258
|
+
state = TransactionState.tl_get
|
259
|
+
prev = state.record_tt
|
260
|
+
state.record_tt = should_record
|
261
|
+
prev.nil? || prev
|
262
|
+
end
|
263
|
+
|
264
|
+
# Push flag indicating whether we should be tracing in this
|
265
|
+
# thread. This uses a stack which allows us to disable tracing
|
266
|
+
# children of a transaction without affecting the tracing of
|
267
|
+
# the whole transaction
|
268
|
+
def push_trace_execution_flag(should_trace=false) #THREAD_LOCAL_ACCESS
|
269
|
+
TransactionState.tl_get.push_traced(should_trace)
|
270
|
+
end
|
271
|
+
|
272
|
+
# Pop the current trace execution status. Restore trace execution status
|
273
|
+
# to what it was before we pushed the current flag.
|
274
|
+
def pop_trace_execution_flag #THREAD_LOCAL_ACCESS
|
275
|
+
TransactionState.tl_get.pop_traced
|
276
|
+
end
|
277
|
+
|
278
|
+
# Herein lies the corpse of the former 'start' method. May
|
279
|
+
# its unmatched flog score rest in pieces.
|
280
|
+
module Start
|
281
|
+
# Check whether we have already started, which is an error condition
|
282
|
+
def already_started?
|
283
|
+
if started?
|
284
|
+
::Mmtrix::Agent.logger.error("Agent Started Already!")
|
285
|
+
true
|
286
|
+
end
|
287
|
+
end
|
288
|
+
|
289
|
+
# The agent is disabled when it is not force enabled by the
|
290
|
+
# 'agent_enabled' option (e.g. in a manual start), or
|
291
|
+
# enabled normally through the configuration file
|
292
|
+
def disabled?
|
293
|
+
!Agent.config[:agent_enabled]
|
294
|
+
end
|
295
|
+
|
296
|
+
# Log startup information that we almost always want to know
|
297
|
+
def log_startup
|
298
|
+
log_environment
|
299
|
+
log_dispatcher
|
300
|
+
log_app_name
|
301
|
+
end
|
302
|
+
|
303
|
+
# Log the environment the app thinks it's running in.
|
304
|
+
# Useful in debugging, as this is the key for config YAML lookups.
|
305
|
+
def log_environment
|
306
|
+
::Mmtrix::Agent.logger.info "Environment: #{Mmtrix::Control.instance.env}"
|
307
|
+
end
|
308
|
+
|
309
|
+
# Logs the dispatcher to the log file to assist with
|
310
|
+
# debugging. When no debugger is present, logs this fact to
|
311
|
+
# assist with proper dispatcher detection
|
312
|
+
def log_dispatcher
|
313
|
+
dispatcher_name = Agent.config[:dispatcher].to_s
|
314
|
+
|
315
|
+
if dispatcher_name.empty?
|
316
|
+
::Mmtrix::Agent.logger.info 'No known dispatcher detected.'
|
317
|
+
else
|
318
|
+
::Mmtrix::Agent.logger.info "Dispatcher: #{dispatcher_name}"
|
319
|
+
end
|
320
|
+
end
|
321
|
+
|
322
|
+
def log_app_name
|
323
|
+
::Mmtrix::Agent.logger.info "Application: #{Agent.config.app_names.join(", ")}"
|
324
|
+
end
|
325
|
+
|
326
|
+
def log_ignore_url_regexes
|
327
|
+
regexes = Mmtrix::Agent.config[:'rules.ignore_url_regexes']
|
328
|
+
|
329
|
+
unless regexes.empty?
|
330
|
+
::Mmtrix::Agent.logger.info "Ignoring URLs that match the following regexes: #{regexes.map(&:inspect).join(", ")}."
|
331
|
+
end
|
332
|
+
end
|
333
|
+
|
334
|
+
# Logs the configured application names
|
335
|
+
def app_name_configured?
|
336
|
+
names = Agent.config.app_names
|
337
|
+
return names.respond_to?(:any?) && names.any?
|
338
|
+
end
|
339
|
+
|
340
|
+
# Connecting in the foreground blocks further startup of the
|
341
|
+
# agent until we have a connection - useful in cases where
|
342
|
+
# you're trying to log a very-short-running process and want
|
343
|
+
# to get statistics from before a server connection
|
344
|
+
# (typically 20 seconds) exists
|
345
|
+
def connect_in_foreground
|
346
|
+
Mmtrix::Agent.disable_all_tracing { connect(:keep_retrying => false) }
|
347
|
+
end
|
348
|
+
|
349
|
+
# This matters when the following three criteria are met:
|
350
|
+
#
|
351
|
+
# 1. A Sinatra 'classic' application is being run
|
352
|
+
# 2. The app is being run by executing the main file directly, rather
|
353
|
+
# than via a config.ru file.
|
354
|
+
# 3. mmtrix_rpm is required *after* sinatra
|
355
|
+
#
|
356
|
+
# In this case, the entire application runs from an at_exit handler in
|
357
|
+
# Sinatra, and if we were to install ours, it would be executed before
|
358
|
+
# the one in Sinatra, meaning that we'd shutdown the agent too early
|
359
|
+
# and never collect any data.
|
360
|
+
def sinatra_classic_app?
|
361
|
+
(
|
362
|
+
defined?(Sinatra::Application) &&
|
363
|
+
Sinatra::Application.respond_to?(:run) &&
|
364
|
+
Sinatra::Application.run?
|
365
|
+
)
|
366
|
+
end
|
367
|
+
|
368
|
+
def should_install_exit_handler?
|
369
|
+
(
|
370
|
+
Agent.config[:send_data_on_exit] &&
|
371
|
+
!Mmtrix::LanguageSupport.using_engine?('rbx') &&
|
372
|
+
!Mmtrix::LanguageSupport.using_engine?('jruby') &&
|
373
|
+
!sinatra_classic_app?
|
374
|
+
)
|
375
|
+
end
|
376
|
+
|
377
|
+
# There's an MRI 1.9 bug that loses exit codes in at_exit blocks.
|
378
|
+
# A workaround is necessary to get correct exit codes for the agent's
|
379
|
+
# test suites.
|
380
|
+
# http://bugs.ruby-lang.org/issues/5218
|
381
|
+
def need_exit_code_workaround?
|
382
|
+
defined?(RUBY_ENGINE) && RUBY_ENGINE == "ruby" && RUBY_VERSION.match(/^1\.9/)
|
383
|
+
end
|
384
|
+
|
385
|
+
def install_exit_handler
|
386
|
+
return unless should_install_exit_handler?
|
387
|
+
Mmtrix::Agent.logger.debug("Installing at_exit handler")
|
388
|
+
at_exit do
|
389
|
+
if need_exit_code_workaround?
|
390
|
+
exit_status = $!.status if $!.is_a?(SystemExit)
|
391
|
+
shutdown
|
392
|
+
exit exit_status if exit_status
|
393
|
+
else
|
394
|
+
shutdown
|
395
|
+
end
|
396
|
+
end
|
397
|
+
end
|
398
|
+
|
399
|
+
# Classy logging of the agent version and the current pid,
|
400
|
+
# so we can disambiguate processes in the log file and make
|
401
|
+
# sure they're running a reasonable version
|
402
|
+
def log_version_and_pid
|
403
|
+
::Mmtrix::Agent.logger.debug "Mmtrix Ruby Agent #{Mmtrix::VERSION::STRING} Initialized: pid = #{$$}"
|
404
|
+
end
|
405
|
+
|
406
|
+
# Warn the user if they have configured their agent not to
|
407
|
+
# send data, that way we can see this clearly in the log file
|
408
|
+
def monitoring?
|
409
|
+
if Agent.config[:monitor_mode]
|
410
|
+
true
|
411
|
+
else
|
412
|
+
::Mmtrix::Agent.logger.warn('Agent configured not to send data in this environment.')
|
413
|
+
false
|
414
|
+
end
|
415
|
+
end
|
416
|
+
|
417
|
+
# Tell the user when the license key is missing so they can
|
418
|
+
# fix it by adding it to the file
|
419
|
+
def has_license_key?
|
420
|
+
if Agent.config[:license_key] && Agent.config[:license_key].length > 0
|
421
|
+
true
|
422
|
+
else
|
423
|
+
::Mmtrix::Agent.logger.warn("No license key found. " +
|
424
|
+
"This often means your mmtrix.yml file was not found, or it lacks a section for the running environment, '#{Mmtrix::Control.instance.env}'. You may also want to try linting your mmtrix.yml to ensure it is valid YML.")
|
425
|
+
false
|
426
|
+
end
|
427
|
+
end
|
428
|
+
|
429
|
+
# A correct license key exists and is of the proper length
|
430
|
+
def has_correct_license_key?
|
431
|
+
has_license_key? && correct_license_length
|
432
|
+
end
|
433
|
+
|
434
|
+
# A license key is an arbitrary 40 character string,
|
435
|
+
# usually looks something like a SHA1 hash
|
436
|
+
def correct_license_length
|
437
|
+
key = Agent.config[:license_key]
|
438
|
+
|
439
|
+
if key.length == 40
|
440
|
+
true
|
441
|
+
else
|
442
|
+
::Mmtrix::Agent.logger.error("Invalid license key: #{key}")
|
443
|
+
false
|
444
|
+
end
|
445
|
+
end
|
446
|
+
|
447
|
+
# If we're using a dispatcher that forks before serving
|
448
|
+
# requests, we need to wait until the children are forked
|
449
|
+
# before connecting, otherwise the parent process sends useless data
|
450
|
+
def using_forking_dispatcher?
|
451
|
+
if [:puma, :passenger, :rainbows, :unicorn].include? Agent.config[:dispatcher]
|
452
|
+
::Mmtrix::Agent.logger.info "Deferring startup of agent reporting thread because #{Agent.config[:dispatcher]} may fork."
|
453
|
+
true
|
454
|
+
else
|
455
|
+
false
|
456
|
+
end
|
457
|
+
end
|
458
|
+
|
459
|
+
# Return true if we're using resque and it hasn't had a chance to (potentially)
|
460
|
+
# daemonize itself. This avoids hanging when there's a Thread started
|
461
|
+
# before Resque calls Process.daemon (Jira RUBY-857)
|
462
|
+
def defer_for_resque?
|
463
|
+
Mmtrix::Agent.config[:dispatcher] == :resque &&
|
464
|
+
Mmtrix::LanguageSupport.can_fork? &&
|
465
|
+
!Mmtrix::Agent::PipeChannelManager.listener.started?
|
466
|
+
end
|
467
|
+
|
468
|
+
def in_resque_child_process?
|
469
|
+
@service.is_a?(Mmtrix::Agent::PipeService)
|
470
|
+
end
|
471
|
+
|
472
|
+
# Sanity-check the agent configuration and start the agent,
|
473
|
+
# setting up the worker thread and the exit handler to shut
|
474
|
+
# down the agent
|
475
|
+
def check_config_and_start_agent
|
476
|
+
return unless monitoring? && has_correct_license_key?
|
477
|
+
return if using_forking_dispatcher?
|
478
|
+
setup_and_start_agent
|
479
|
+
end
|
480
|
+
|
481
|
+
# This is the shared method between the main agent startup and the
|
482
|
+
# after_fork call restarting the thread in deferred dispatchers.
|
483
|
+
#
|
484
|
+
# Treatment of @started and env report is important to get right.
|
485
|
+
def setup_and_start_agent(options={})
|
486
|
+
@started = true
|
487
|
+
@harvester.mark_started
|
488
|
+
|
489
|
+
unless in_resque_child_process?
|
490
|
+
generate_environment_report
|
491
|
+
install_exit_handler
|
492
|
+
@harvest_samplers.load_samplers unless Agent.config[:disable_samplers]
|
493
|
+
end
|
494
|
+
|
495
|
+
connect_in_foreground if Agent.config[:sync_startup]
|
496
|
+
start_worker_thread(options)
|
497
|
+
end
|
498
|
+
end
|
499
|
+
|
500
|
+
include Start
|
501
|
+
|
502
|
+
def defer_for_delayed_job?
|
503
|
+
Mmtrix::Agent.config[:dispatcher] == :delayed_job &&
|
504
|
+
!Mmtrix::DelayedJobInjection.worker_name
|
505
|
+
end
|
506
|
+
|
507
|
+
# Check to see if the agent should start, returning +true+ if it should.
|
508
|
+
def agent_should_start?
|
509
|
+
return false if already_started? || disabled?
|
510
|
+
|
511
|
+
if defer_for_delayed_job?
|
512
|
+
::Mmtrix::Agent.logger.debug "Deferring startup for DelayedJob"
|
513
|
+
return false
|
514
|
+
end
|
515
|
+
|
516
|
+
if defer_for_resque?
|
517
|
+
::Mmtrix::Agent.logger.debug "Deferring startup for Resque in case it daemonizes"
|
518
|
+
return false
|
519
|
+
end
|
520
|
+
|
521
|
+
unless app_name_configured?
|
522
|
+
Mmtrix::Agent.logger.error "No application name configured.",
|
523
|
+
"The Agent cannot start without at least one. Please check your ",
|
524
|
+
"mmtrix.yml and ensure that it is valid and has at least one ",
|
525
|
+
"value set for app_name in the #{Mmtrix::Control.instance.env} ",
|
526
|
+
"environment."
|
527
|
+
return false
|
528
|
+
end
|
529
|
+
|
530
|
+
return true
|
531
|
+
end
|
532
|
+
|
533
|
+
# Logs a bunch of data and starts the agent, if needed
|
534
|
+
def start
|
535
|
+
return unless agent_should_start?
|
536
|
+
|
537
|
+
log_startup
|
538
|
+
check_config_and_start_agent
|
539
|
+
log_version_and_pid
|
540
|
+
|
541
|
+
events.subscribe(:finished_configuring) do
|
542
|
+
log_ignore_url_regexes
|
543
|
+
end
|
544
|
+
end
|
545
|
+
|
546
|
+
# Clear out the metric data, errors, and transaction traces, etc.
|
547
|
+
def drop_buffered_data
|
548
|
+
@stats_engine.reset!
|
549
|
+
@error_collector.reset!
|
550
|
+
@transaction_sampler.reset!
|
551
|
+
@transaction_event_aggregator.reset!
|
552
|
+
@custom_event_aggregator.reset!
|
553
|
+
@sql_sampler.reset!
|
554
|
+
end
|
555
|
+
|
556
|
+
# Deprecated, and not part of the public API, but here for backwards
|
557
|
+
# compatibility because some 3rd-party gems call it.
|
558
|
+
# @deprecated
|
559
|
+
def reset_stats; drop_buffered_data; end
|
560
|
+
|
561
|
+
# Clear out state for any objects that we know lock from our parents
|
562
|
+
# This is necessary for cases where we're in a forked child and Ruby
|
563
|
+
# might be holding locks for background thread that aren't there anymore.
|
564
|
+
def reset_objects_with_locks
|
565
|
+
@stats_engine = Mmtrix::Agent::StatsEngine.new
|
566
|
+
end
|
567
|
+
|
568
|
+
def flush_pipe_data
|
569
|
+
if connected? && @service.is_a?(::Mmtrix::Agent::PipeService)
|
570
|
+
transmit_data
|
571
|
+
transmit_event_data
|
572
|
+
end
|
573
|
+
end
|
574
|
+
|
575
|
+
private
|
576
|
+
|
577
|
+
# All of this module used to be contained in the
|
578
|
+
# start_worker_thread method - this is an artifact of
|
579
|
+
# refactoring and can be moved, renamed, etc at will
|
580
|
+
module StartWorkerThread
|
581
|
+
def create_event_loop
|
582
|
+
EventLoop.new
|
583
|
+
end
|
584
|
+
|
585
|
+
# Never allow any data type to be reported more frequently than once
|
586
|
+
# per second.
|
587
|
+
MIN_ALLOWED_REPORT_PERIOD = 1.0
|
588
|
+
|
589
|
+
def report_period_for(method)
|
590
|
+
config_key = "data_report_periods.#{method}".to_sym
|
591
|
+
period = Agent.config[config_key]
|
592
|
+
if !period
|
593
|
+
period = Agent.config[:data_report_period]
|
594
|
+
::Mmtrix::Agent.logger.warn("Could not find configured period for #{method}, falling back to data_report_period (#{period} s)")
|
595
|
+
end
|
596
|
+
if period < MIN_ALLOWED_REPORT_PERIOD
|
597
|
+
::Mmtrix::Agent.logger.warn("Configured #{config_key} was #{period}, but minimum allowed is #{MIN_ALLOWED_REPORT_PERIOD}, using #{MIN_ALLOWED_REPORT_PERIOD}.")
|
598
|
+
period = MIN_ALLOWED_REPORT_PERIOD
|
599
|
+
end
|
600
|
+
period
|
601
|
+
end
|
602
|
+
|
603
|
+
LOG_ONCE_KEYS_RESET_PERIOD = 60.0
|
604
|
+
|
605
|
+
def create_and_run_event_loop
|
606
|
+
@event_loop = create_event_loop
|
607
|
+
@event_loop.on(:report_data) do
|
608
|
+
transmit_data
|
609
|
+
end
|
610
|
+
@event_loop.on(:report_event_data) do
|
611
|
+
transmit_event_data
|
612
|
+
end
|
613
|
+
@event_loop.on(:reset_log_once_keys) do
|
614
|
+
::Mmtrix::Agent.logger.clear_already_logged
|
615
|
+
end
|
616
|
+
@event_loop.fire_every(Agent.config[:data_report_period], :report_data)
|
617
|
+
@event_loop.fire_every(report_period_for(:analytic_event_data), :report_event_data)
|
618
|
+
@event_loop.fire_every(LOG_ONCE_KEYS_RESET_PERIOD, :reset_log_once_keys)
|
619
|
+
|
620
|
+
@event_loop.run
|
621
|
+
end
|
622
|
+
|
623
|
+
# Handles the case where the server tells us to restart -
|
624
|
+
# this clears the data, clears connection attempts, and
|
625
|
+
# waits a while to reconnect.
|
626
|
+
def handle_force_restart(error)
|
627
|
+
::Mmtrix::Agent.logger.debug error.message
|
628
|
+
drop_buffered_data
|
629
|
+
@service.force_restart if @service
|
630
|
+
@connect_state = :pending
|
631
|
+
sleep 30
|
632
|
+
end
|
633
|
+
|
634
|
+
# when a disconnect is requested, stop the current thread, which
|
635
|
+
# is the worker thread that gathers data and talks to the
|
636
|
+
# server.
|
637
|
+
def handle_force_disconnect(error)
|
638
|
+
::Mmtrix::Agent.logger.warn "Mmtrix forced this agent to disconnect (#{error.message})"
|
639
|
+
disconnect
|
640
|
+
end
|
641
|
+
|
642
|
+
# Handles an unknown error in the worker thread by logging
|
643
|
+
# it and disconnecting the agent, since we are now in an
|
644
|
+
# unknown state.
|
645
|
+
def handle_other_error(error)
|
646
|
+
::Mmtrix::Agent.logger.error "Unhandled error in worker thread, disconnecting this agent process:"
|
647
|
+
# These errors are fatal (that is, they will prevent the agent from
|
648
|
+
# reporting entirely), so we really want backtraces when they happen
|
649
|
+
::Mmtrix::Agent.logger.log_exception(:error, error)
|
650
|
+
disconnect
|
651
|
+
end
|
652
|
+
|
653
|
+
# a wrapper method to handle all the errors that can happen
|
654
|
+
# in the connection and worker thread system. This
|
655
|
+
# guarantees a no-throw from the background thread.
|
656
|
+
def catch_errors
|
657
|
+
yield
|
658
|
+
rescue Mmtrix::Agent::ForceRestartException => e
|
659
|
+
handle_force_restart(e)
|
660
|
+
retry
|
661
|
+
rescue Mmtrix::Agent::ForceDisconnectException => e
|
662
|
+
handle_force_disconnect(e)
|
663
|
+
rescue => e
|
664
|
+
handle_other_error(e)
|
665
|
+
end
|
666
|
+
|
667
|
+
# This is the method that is run in a new thread in order to
|
668
|
+
# background the harvesting and sending of data during the
|
669
|
+
# normal operation of the agent.
|
670
|
+
#
|
671
|
+
# Takes connection options that determine how we should
|
672
|
+
# connect to the server, and loops endlessly - typically we
|
673
|
+
# never return from this method unless we're shutting down
|
674
|
+
# the agent
|
675
|
+
def deferred_work!(connection_options)
|
676
|
+
catch_errors do
|
677
|
+
Mmtrix::Agent.disable_all_tracing do
|
678
|
+
connect(connection_options)
|
679
|
+
if connected?
|
680
|
+
create_and_run_event_loop
|
681
|
+
# never reaches here unless there is a problem or
|
682
|
+
# the agent is exiting
|
683
|
+
else
|
684
|
+
::Mmtrix::Agent.logger.debug "No connection. Worker thread ending."
|
685
|
+
end
|
686
|
+
end
|
687
|
+
end
|
688
|
+
end
|
689
|
+
end
|
690
|
+
include StartWorkerThread
|
691
|
+
|
692
|
+
# Try to launch the worker thread and connect to the server.
|
693
|
+
#
|
694
|
+
# See #connect for a description of connection_options.
|
695
|
+
def start_worker_thread(connection_options = {})
|
696
|
+
if disable = Mmtrix::Agent.config[:disable_harvest_thread]
|
697
|
+
Mmtrix::Agent.logger.info "Not starting Ruby Agent worker thread because :disable_harvest_thread is #{disable}"
|
698
|
+
return
|
699
|
+
end
|
700
|
+
|
701
|
+
::Mmtrix::Agent.logger.debug "Creating Ruby Agent worker thread."
|
702
|
+
@worker_thread = Mmtrix::Agent::Threading::AgentThread.create('Worker Loop') do
|
703
|
+
deferred_work!(connection_options)
|
704
|
+
end
|
705
|
+
end
|
706
|
+
|
707
|
+
# A shorthand for Mmtrix::Control.instance
|
708
|
+
def control
|
709
|
+
Mmtrix::Control.instance
|
710
|
+
end
|
711
|
+
|
712
|
+
# This module is an artifact of a refactoring of the connect
|
713
|
+
# method - all of its methods are used in that context, so it
|
714
|
+
# can be refactored at will. It should be fully tested
|
715
|
+
module Connect
|
716
|
+
# number of attempts we've made to contact the server
|
717
|
+
attr_accessor :connect_attempts
|
718
|
+
|
719
|
+
# Disconnect just sets connected to false, which prevents
|
720
|
+
# the agent from trying to connect again
|
721
|
+
def disconnect
|
722
|
+
@connect_state = :disconnected
|
723
|
+
true
|
724
|
+
end
|
725
|
+
|
726
|
+
def connected?
|
727
|
+
@connect_state == :connected
|
728
|
+
end
|
729
|
+
|
730
|
+
def disconnected?
|
731
|
+
@connect_state == :disconnected
|
732
|
+
end
|
733
|
+
|
734
|
+
# Don't connect if we're already connected, or if we tried to connect
|
735
|
+
# and were rejected with prejudice because of a license issue, unless
|
736
|
+
# we're forced to by force_reconnect.
|
737
|
+
def should_connect?(force=false)
|
738
|
+
force || (!connected? && !disconnected?)
|
739
|
+
end
|
740
|
+
|
741
|
+
# Retry period is a minute for each failed attempt that
|
742
|
+
# we've made. This should probably do some sort of sane TCP
|
743
|
+
# backoff to prevent hammering the server, but a minute for
|
744
|
+
# each attempt seems to work reasonably well.
|
745
|
+
def connect_retry_period
|
746
|
+
[600, connect_attempts * 60].min
|
747
|
+
end
|
748
|
+
|
749
|
+
def note_connect_failure
|
750
|
+
self.connect_attempts += 1
|
751
|
+
end
|
752
|
+
|
753
|
+
# When we have a problem connecting to the server, we need
|
754
|
+
# to tell the user what happened, since this is not an error
|
755
|
+
# we can handle gracefully.
|
756
|
+
def log_error(error)
|
757
|
+
::Mmtrix::Agent.logger.error "Error establishing connection with Mmtrix Service at #{control.server}:", error
|
758
|
+
end
|
759
|
+
|
760
|
+
# When the server sends us an error with the license key, we
|
761
|
+
# want to tell the user that something went wrong, and let
|
762
|
+
# them know where to go to get a valid license key
|
763
|
+
#
|
764
|
+
# After this runs, it disconnects the agent so that it will
|
765
|
+
# no longer try to connect to the server, saving the
|
766
|
+
# application and the server load
|
767
|
+
def handle_license_error(error)
|
768
|
+
::Mmtrix::Agent.logger.error( \
|
769
|
+
error.message, \
|
770
|
+
"Visit Mmtrix.com to obtain a valid license key, or to upgrade your account.")
|
771
|
+
disconnect
|
772
|
+
end
|
773
|
+
|
774
|
+
def handle_unrecoverable_agent_error(error)
|
775
|
+
::Mmtrix::Agent.logger.error(error.message)
|
776
|
+
disconnect
|
777
|
+
shutdown
|
778
|
+
end
|
779
|
+
|
780
|
+
def generate_environment_report
|
781
|
+
@environment_report = environment_for_connect
|
782
|
+
end
|
783
|
+
|
784
|
+
# Checks whether we should send environment info, and if so,
|
785
|
+
# returns the snapshot from the local environment.
|
786
|
+
# Generating the EnvironmentReport has the potential to trigger
|
787
|
+
# require calls in Rails environments, so this method should only
|
788
|
+
# be called synchronously from on the main thread.
|
789
|
+
def environment_for_connect
|
790
|
+
Agent.config[:send_environment_info] ? Array(EnvironmentReport.new) : []
|
791
|
+
end
|
792
|
+
|
793
|
+
# We've seen objects in the environment report (Rails.env in
|
794
|
+
# particular) that can't seralize to JSON. Cope with that here and
|
795
|
+
# clear out so downstream code doesn't have to check again.
|
796
|
+
def sanitize_environment_report
|
797
|
+
if !@service.valid_to_marshal?(@environment_report)
|
798
|
+
@environment_report = []
|
799
|
+
end
|
800
|
+
end
|
801
|
+
|
802
|
+
# Initializes the hash of settings that we send to the
|
803
|
+
# server. Returns a literal hash containing the options
|
804
|
+
def connect_settings
|
805
|
+
sanitize_environment_report
|
806
|
+
|
807
|
+
settings = {
|
808
|
+
:pid => $$,
|
809
|
+
:host => local_host,
|
810
|
+
:app_name => Agent.config.app_names,
|
811
|
+
:language => 'ruby',
|
812
|
+
:labels => Agent.config.parsed_labels,
|
813
|
+
:agent_version => Mmtrix::VERSION::STRING,
|
814
|
+
:environment => @environment_report,
|
815
|
+
:settings => Agent.config.to_collector_hash,
|
816
|
+
:high_security => Agent.config[:high_security]
|
817
|
+
}
|
818
|
+
|
819
|
+
unless Agent.config[:disable_utilization]
|
820
|
+
settings[:utilization] = UtilizationData.new.to_collector_hash
|
821
|
+
end
|
822
|
+
|
823
|
+
settings
|
824
|
+
end
|
825
|
+
|
826
|
+
# Returns connect data passed back from the server
|
827
|
+
def connect_to_server
|
828
|
+
@service.connect(connect_settings)
|
829
|
+
end
|
830
|
+
|
831
|
+
# apdex_f is always 4 times the apdex_t
|
832
|
+
def apdex_f
|
833
|
+
(4 * Agent.config[:apdex_t]).to_f
|
834
|
+
end
|
835
|
+
|
836
|
+
# Sets the collector host and connects to the server, then
|
837
|
+
# invokes the final configuration with the returned data
|
838
|
+
def query_server_for_configuration
|
839
|
+
finish_setup(connect_to_server)
|
840
|
+
end
|
841
|
+
|
842
|
+
# Takes a hash of configuration data returned from the
|
843
|
+
# server and uses it to set local variables and to
|
844
|
+
# initialize various parts of the agent that are configured
|
845
|
+
# separately.
|
846
|
+
#
|
847
|
+
# Can accommodate most arbitrary data - anything extra is
|
848
|
+
# ignored unless we say to do something with it here.
|
849
|
+
def finish_setup(config_data)
|
850
|
+
return if config_data == nil
|
851
|
+
|
852
|
+
@service.agent_id = config_data['agent_run_id']
|
853
|
+
|
854
|
+
if config_data['agent_config']
|
855
|
+
::Mmtrix::Agent.logger.debug "Using config from server"
|
856
|
+
end
|
857
|
+
|
858
|
+
::Mmtrix::Agent.logger.debug "Server provided config: #{config_data.inspect}"
|
859
|
+
server_config = Mmtrix::Agent::Configuration::ServerSource.new(config_data, Agent.config)
|
860
|
+
Agent.config.replace_or_add_config(server_config)
|
861
|
+
log_connection!(config_data)
|
862
|
+
|
863
|
+
@transaction_rules = RulesEngine.create_transaction_rules(config_data)
|
864
|
+
@stats_engine.metric_rules = RulesEngine.create_metric_rules(config_data)
|
865
|
+
|
866
|
+
# If you're adding something else here to respond to the server-side config,
|
867
|
+
# use Agent.instance.events.subscribe(:finished_configuring) callback instead!
|
868
|
+
end
|
869
|
+
|
870
|
+
# Logs when we connect to the server, for debugging purposes
|
871
|
+
# - makes sure we know if an agent has not connected
|
872
|
+
def log_connection!(config_data)
|
873
|
+
::Mmtrix::Agent.logger.debug "Connected to Mmtrix Service at #{@service.collector.name}"
|
874
|
+
::Mmtrix::Agent.logger.debug "Agent Run = #{@service.agent_id}."
|
875
|
+
::Mmtrix::Agent.logger.debug "Connection data = #{config_data.inspect}"
|
876
|
+
if config_data['messages'] && config_data['messages'].any?
|
877
|
+
log_collector_messages(config_data['messages'])
|
878
|
+
end
|
879
|
+
end
|
880
|
+
|
881
|
+
def log_collector_messages(messages)
|
882
|
+
messages.each do |message|
|
883
|
+
::Mmtrix::Agent.logger.send(message['level'].downcase, message['message'])
|
884
|
+
end
|
885
|
+
end
|
886
|
+
end
|
887
|
+
include Connect
|
888
|
+
|
889
|
+
def container_for_endpoint(endpoint)
|
890
|
+
case endpoint
|
891
|
+
when :metric_data then @stats_engine
|
892
|
+
when :transaction_sample_data then @transaction_sampler
|
893
|
+
when :error_data then @error_collector
|
894
|
+
when :analytic_event_data then @transaction_event_aggregator
|
895
|
+
when :custom_event_data then @custom_event_aggregator
|
896
|
+
when :sql_trace_data then @sql_sampler
|
897
|
+
end
|
898
|
+
end
|
899
|
+
|
900
|
+
def merge_data_for_endpoint(endpoint, data)
|
901
|
+
if data && !data.empty?
|
902
|
+
container_for_endpoint(endpoint).merge!(data)
|
903
|
+
end
|
904
|
+
rescue => e
|
905
|
+
Mmtrix::Agent.logger.error("Error while merging #{endpoint} data from child: ", e)
|
906
|
+
end
|
907
|
+
|
908
|
+
public :merge_data_for_endpoint
|
909
|
+
|
910
|
+
# Connect to the server and validate the license. If successful,
|
911
|
+
# connected? returns true when finished. If not successful, you can
|
912
|
+
# keep calling this. Return false if we could not establish a
|
913
|
+
# connection with the server and we should not retry, such as if
|
914
|
+
# there's a bad license key.
|
915
|
+
#
|
916
|
+
# Set keep_retrying=false to disable retrying and return asap, such as when
|
917
|
+
# invoked in the foreground. Otherwise this runs until a successful
|
918
|
+
# connection is made, or the server rejects us.
|
919
|
+
#
|
920
|
+
# * <tt>:keep_retrying => false</tt> to only try to connect once, and
|
921
|
+
# return with the connection set to nil. This ensures we may try again
|
922
|
+
# later (default true).
|
923
|
+
# * <tt>force_reconnect => true</tt> if you want to establish a new connection
|
924
|
+
# to the server before running the worker loop. This means you get a separate
|
925
|
+
# agent run and Mmtrix sees it as a separate instance (default is false).
|
926
|
+
def connect(options={})
|
927
|
+
defaults = {
|
928
|
+
:keep_retrying => Agent.config[:keep_retrying],
|
929
|
+
:force_reconnect => Agent.config[:force_reconnect]
|
930
|
+
}
|
931
|
+
opts = defaults.merge(options)
|
932
|
+
|
933
|
+
return unless should_connect?(opts[:force_reconnect])
|
934
|
+
|
935
|
+
::Mmtrix::Agent.logger.debug "Connecting Process to Mmtrix: #$0"
|
936
|
+
query_server_for_configuration
|
937
|
+
@connected_pid = $$
|
938
|
+
@connect_state = :connected
|
939
|
+
rescue Mmtrix::Agent::ForceDisconnectException => e
|
940
|
+
handle_force_disconnect(e)
|
941
|
+
rescue Mmtrix::Agent::LicenseException => e
|
942
|
+
handle_license_error(e)
|
943
|
+
rescue Mmtrix::Agent::UnrecoverableAgentException => e
|
944
|
+
handle_unrecoverable_agent_error(e)
|
945
|
+
rescue StandardError, Timeout::Error, Mmtrix::Agent::ServerConnectionException => e
|
946
|
+
log_error(e)
|
947
|
+
if opts[:keep_retrying]
|
948
|
+
note_connect_failure
|
949
|
+
::Mmtrix::Agent.logger.info "Will re-attempt in #{connect_retry_period} seconds"
|
950
|
+
sleep connect_retry_period
|
951
|
+
retry
|
952
|
+
else
|
953
|
+
disconnect
|
954
|
+
end
|
955
|
+
rescue Exception => e
|
956
|
+
::Mmtrix::Agent.logger.error "Exception of unexpected type during Agent#connect():", e
|
957
|
+
|
958
|
+
raise
|
959
|
+
end
|
960
|
+
|
961
|
+
# Who am I? Well, this method can tell you your hostname.
|
962
|
+
def determine_host
|
963
|
+
Mmtrix::Agent::Hostname.get
|
964
|
+
end
|
965
|
+
|
966
|
+
def local_host
|
967
|
+
@local_host ||= determine_host
|
968
|
+
end
|
969
|
+
|
970
|
+
# Delegates to the control class to determine the root
|
971
|
+
# directory of this project
|
972
|
+
def determine_home_directory
|
973
|
+
control.root
|
974
|
+
end
|
975
|
+
|
976
|
+
# Harvests data from the given container, sends it to the named endpoint
|
977
|
+
# on the service, and automatically merges back in upon a recoverable
|
978
|
+
# failure.
|
979
|
+
#
|
980
|
+
# The given container should respond to:
|
981
|
+
#
|
982
|
+
# #harvest!
|
983
|
+
# returns an enumerable collection of data items to be sent to the
|
984
|
+
# collector.
|
985
|
+
#
|
986
|
+
# #reset!
|
987
|
+
# drop any stored data and reset to a clean state.
|
988
|
+
#
|
989
|
+
# #merge!(items)
|
990
|
+
# merge the given items back into the internal buffer of the
|
991
|
+
# container, so that they may be harvested again later.
|
992
|
+
#
|
993
|
+
def harvest_and_send_from_container(container, endpoint)
|
994
|
+
items = harvest_from_container(container, endpoint)
|
995
|
+
send_data_to_endpoint(endpoint, items, container) unless items.empty?
|
996
|
+
end
|
997
|
+
|
998
|
+
def harvest_from_container(container, endpoint)
|
999
|
+
items = []
|
1000
|
+
begin
|
1001
|
+
items = container.harvest!
|
1002
|
+
rescue => e
|
1003
|
+
Mmtrix::Agent.logger.error("Failed to harvest #{endpoint} data, resetting. Error: ", e)
|
1004
|
+
container.reset!
|
1005
|
+
end
|
1006
|
+
items
|
1007
|
+
end
|
1008
|
+
|
1009
|
+
def send_data_to_endpoint(endpoint, items, container)
|
1010
|
+
Mmtrix::Agent.logger.debug("Sending #{items.size} items to #{endpoint}")
|
1011
|
+
begin
|
1012
|
+
@service.send(endpoint, items)
|
1013
|
+
rescue ForceRestartException, ForceDisconnectException
|
1014
|
+
raise
|
1015
|
+
rescue SerializationError => e
|
1016
|
+
Mmtrix::Agent.logger.warn("Failed to serialize data for #{endpoint}, discarding. Error: ", e)
|
1017
|
+
rescue UnrecoverableServerException => e
|
1018
|
+
Mmtrix::Agent.logger.warn("#{endpoint} data was rejected by remote service, discarding. Error: ", e)
|
1019
|
+
rescue ServerConnectionException => e
|
1020
|
+
log_remote_unavailable(endpoint, e)
|
1021
|
+
container.merge!(items)
|
1022
|
+
rescue => e
|
1023
|
+
Mmtrix::Agent.logger.info("Unable to send #{endpoint} data, will try again later. Error: ", e)
|
1024
|
+
container.merge!(items)
|
1025
|
+
end
|
1026
|
+
end
|
1027
|
+
|
1028
|
+
def harvest_and_send_timeslice_data
|
1029
|
+
Mmtrix::Agent::BusyCalculator.harvest_busy
|
1030
|
+
harvest_and_send_from_container(@stats_engine, :metric_data)
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
def harvest_and_send_slowest_sql
|
1034
|
+
harvest_and_send_from_container(@sql_sampler, :sql_trace_data)
|
1035
|
+
end
|
1036
|
+
|
1037
|
+
# This handles getting the transaction traces and then sending
|
1038
|
+
# them across the wire. This includes gathering SQL
|
1039
|
+
# explanations, stripping out stack traces, and normalizing
|
1040
|
+
# SQL. note that we explain only the sql statements whose
|
1041
|
+
# nodes' execution times exceed our threshold (to avoid
|
1042
|
+
# unnecessary overhead of running explains on fast queries.)
|
1043
|
+
def harvest_and_send_transaction_traces
|
1044
|
+
harvest_and_send_from_container(@transaction_sampler, :transaction_sample_data)
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
def harvest_and_send_for_agent_commands
|
1048
|
+
harvest_and_send_from_container(@agent_command_router, :profile_data)
|
1049
|
+
end
|
1050
|
+
|
1051
|
+
def harvest_and_send_errors
|
1052
|
+
harvest_and_send_from_container(@error_collector, :error_data)
|
1053
|
+
end
|
1054
|
+
|
1055
|
+
def harvest_and_send_analytic_event_data
|
1056
|
+
harvest_and_send_from_container(@transaction_event_aggregator, :analytic_event_data)
|
1057
|
+
harvest_and_send_from_container(@custom_event_aggregator, :custom_event_data)
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
def check_for_and_handle_agent_commands
|
1061
|
+
begin
|
1062
|
+
@agent_command_router.check_for_and_handle_agent_commands
|
1063
|
+
rescue ForceRestartException, ForceDisconnectException
|
1064
|
+
raise
|
1065
|
+
rescue ServerConnectionException => e
|
1066
|
+
log_remote_unavailable(:get_agent_commands, e)
|
1067
|
+
rescue => e
|
1068
|
+
Mmtrix::Agent.logger.info("Error during check_for_and_handle_agent_commands, will retry later: ", e)
|
1069
|
+
end
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
def log_remote_unavailable(endpoint, e)
|
1073
|
+
Mmtrix::Agent.logger.debug("Unable to send #{endpoint} data, will try again later. Error: ", e)
|
1074
|
+
Mmtrix::Agent.record_metric("Supportability/remote_unavailable", 0.0)
|
1075
|
+
Mmtrix::Agent.record_metric("Supportability/remote_unavailable/#{endpoint.to_s}", 0.0)
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
def transmit_event_data
|
1079
|
+
transmit_single_data_type(:harvest_and_send_analytic_event_data, "TransactionEvent")
|
1080
|
+
end
|
1081
|
+
|
1082
|
+
def transmit_single_data_type(harvest_method, supportability_name)
|
1083
|
+
now = Time.now
|
1084
|
+
|
1085
|
+
msg = "Sending #{harvest_method.to_s.gsub("harvest_and_send_", "")} to Mmtrix Service"
|
1086
|
+
::Mmtrix::Agent.logger.debug msg
|
1087
|
+
|
1088
|
+
@service.session do # use http keep-alive
|
1089
|
+
self.send(harvest_method)
|
1090
|
+
end
|
1091
|
+
ensure
|
1092
|
+
duration = (Time.now - now).to_f
|
1093
|
+
Mmtrix::Agent.record_metric("Supportability/#{supportability_name}Harvest", duration)
|
1094
|
+
end
|
1095
|
+
|
1096
|
+
def transmit_data
|
1097
|
+
now = Time.now
|
1098
|
+
::Mmtrix::Agent.logger.debug "Sending data to Mmtrix Service"
|
1099
|
+
|
1100
|
+
@events.notify(:before_harvest)
|
1101
|
+
@service.session do # use http keep-alive
|
1102
|
+
harvest_and_send_errors
|
1103
|
+
harvest_and_send_transaction_traces
|
1104
|
+
harvest_and_send_slowest_sql
|
1105
|
+
harvest_and_send_timeslice_data
|
1106
|
+
|
1107
|
+
check_for_and_handle_agent_commands
|
1108
|
+
harvest_and_send_for_agent_commands
|
1109
|
+
end
|
1110
|
+
ensure
|
1111
|
+
Mmtrix::Agent::Database.close_connections
|
1112
|
+
duration = (Time.now - now).to_f
|
1113
|
+
Mmtrix::Agent.record_metric('Supportability/Harvest', duration)
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
# This method contacts the server to send remaining data and
|
1117
|
+
# let the server know that the agent is shutting down - this
|
1118
|
+
# allows us to do things like accurately set the end of the
|
1119
|
+
# lifetime of the process
|
1120
|
+
#
|
1121
|
+
# If this process comes from a parent process, it will not
|
1122
|
+
# disconnect, so that the parent process can continue to send data
|
1123
|
+
def graceful_disconnect
|
1124
|
+
if connected?
|
1125
|
+
begin
|
1126
|
+
@service.request_timeout = 10
|
1127
|
+
|
1128
|
+
@events.notify(:before_shutdown)
|
1129
|
+
transmit_data
|
1130
|
+
transmit_event_data
|
1131
|
+
|
1132
|
+
if @connected_pid == $$ && !@service.kind_of?(Mmtrix::Agent::MmtrixService)
|
1133
|
+
::Mmtrix::Agent.logger.debug "Sending Mmtrix service agent run shutdown message"
|
1134
|
+
@service.shutdown(Time.now.to_f)
|
1135
|
+
else
|
1136
|
+
::Mmtrix::Agent.logger.debug "This agent connected from parent process #{@connected_pid}--not sending shutdown"
|
1137
|
+
end
|
1138
|
+
::Mmtrix::Agent.logger.debug "Graceful disconnect complete"
|
1139
|
+
rescue Timeout::Error, StandardError => e
|
1140
|
+
::Mmtrix::Agent.logger.debug "Error when disconnecting #{e.class.name}: #{e.message}"
|
1141
|
+
end
|
1142
|
+
else
|
1143
|
+
::Mmtrix::Agent.logger.debug "Bypassing graceful disconnect - agent not connected"
|
1144
|
+
end
|
1145
|
+
end
|
1146
|
+
end
|
1147
|
+
|
1148
|
+
extend ClassMethods
|
1149
|
+
include InstanceMethods
|
1150
|
+
end
|
1151
|
+
end
|
1152
|
+
end
|