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,1471 @@
|
|
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 'forwardable'
|
6
|
+
|
7
|
+
module Mmtrix
|
8
|
+
module Agent
|
9
|
+
module Configuration
|
10
|
+
|
11
|
+
# Helper since default Procs are evaluated in the context of this module
|
12
|
+
def self.value_of(key)
|
13
|
+
Proc.new do
|
14
|
+
Mmtrix::Agent.config[key]
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
class Boolean; end
|
19
|
+
|
20
|
+
class DefaultSource
|
21
|
+
attr_reader :defaults
|
22
|
+
|
23
|
+
extend Forwardable
|
24
|
+
def_delegators :@defaults, :has_key?, :each, :merge, :delete, :keys, :[], :to_hash
|
25
|
+
|
26
|
+
def initialize
|
27
|
+
@defaults = default_values
|
28
|
+
end
|
29
|
+
|
30
|
+
def default_values
|
31
|
+
result = {}
|
32
|
+
::Mmtrix::Agent::Configuration::DEFAULTS.each do |key, value|
|
33
|
+
result[key] = value[:default]
|
34
|
+
end
|
35
|
+
result
|
36
|
+
end
|
37
|
+
|
38
|
+
def self.transform_for(key)
|
39
|
+
default_settings = ::Mmtrix::Agent::Configuration::DEFAULTS[key]
|
40
|
+
default_settings[:transform] if default_settings
|
41
|
+
end
|
42
|
+
|
43
|
+
def self.config_search_paths
|
44
|
+
Proc.new {
|
45
|
+
paths = [
|
46
|
+
File.join("config","mmtrix.yml"),
|
47
|
+
File.join("mmtrix.yml")
|
48
|
+
]
|
49
|
+
|
50
|
+
if Mmtrix::Control.instance.root
|
51
|
+
paths << File.join(Mmtrix::Control.instance.root, "config", "mmtrix.yml")
|
52
|
+
paths << File.join(Mmtrix::Control.instance.root, "mmtrix.yml")
|
53
|
+
end
|
54
|
+
|
55
|
+
if ENV["HOME"]
|
56
|
+
paths << File.join(ENV["HOME"], ".mmtrix", "mmtrix.yml")
|
57
|
+
paths << File.join(ENV["HOME"], "mmtrix.yml")
|
58
|
+
end
|
59
|
+
|
60
|
+
# If we're packaged for warbler, we can tell from GEM_HOME
|
61
|
+
if ENV["GEM_HOME"] && ENV["GEM_HOME"].end_with?(".jar!")
|
62
|
+
app_name = File.basename(ENV["GEM_HOME"], ".jar!")
|
63
|
+
paths << File.join(ENV["GEM_HOME"], app_name, "config", "mmtrix.yml")
|
64
|
+
end
|
65
|
+
|
66
|
+
paths
|
67
|
+
}
|
68
|
+
end
|
69
|
+
|
70
|
+
def self.config_path
|
71
|
+
Proc.new {
|
72
|
+
found_path = Mmtrix::Agent.config[:config_search_paths].detect do |file|
|
73
|
+
File.expand_path(file) if File.exist? file
|
74
|
+
end
|
75
|
+
found_path || ""
|
76
|
+
}
|
77
|
+
end
|
78
|
+
|
79
|
+
def self.framework
|
80
|
+
Proc.new {
|
81
|
+
case
|
82
|
+
when defined?(::Mmtrix::TEST) then :test
|
83
|
+
when defined?(::Merb) && defined?(::Merb::Plugins) then :merb
|
84
|
+
when defined?(::Rails::VERSION)
|
85
|
+
case Rails::VERSION::MAJOR
|
86
|
+
when 0..2
|
87
|
+
:rails
|
88
|
+
when 3
|
89
|
+
:rails3
|
90
|
+
when 4
|
91
|
+
:rails4
|
92
|
+
else
|
93
|
+
::Mmtrix::Agent.logger.error "Detected unsupported Rails version #{Rails::VERSION::STRING}"
|
94
|
+
end
|
95
|
+
when defined?(::Sinatra) && defined?(::Sinatra::Base) then :sinatra
|
96
|
+
when defined?(::Mmtrix::IA) then :external
|
97
|
+
else :ruby
|
98
|
+
end
|
99
|
+
}
|
100
|
+
end
|
101
|
+
|
102
|
+
def self.agent_enabled
|
103
|
+
Proc.new {
|
104
|
+
Mmtrix::Agent.config[:enabled] &&
|
105
|
+
(Mmtrix::Agent.config[:developer_mode] || Mmtrix::Agent.config[:monitor_mode]) &&
|
106
|
+
Mmtrix::Agent::Autostart.agent_should_start?
|
107
|
+
}
|
108
|
+
end
|
109
|
+
|
110
|
+
def self.audit_log_path
|
111
|
+
Proc.new {
|
112
|
+
File.join(Mmtrix::Agent.config[:log_file_path], 'mmtrix_audit.log')
|
113
|
+
}
|
114
|
+
end
|
115
|
+
|
116
|
+
def self.app_name
|
117
|
+
Proc.new { Mmtrix::Control.instance.env }
|
118
|
+
end
|
119
|
+
|
120
|
+
def self.dispatcher
|
121
|
+
Proc.new { Mmtrix::Control.instance.local_env.discovered_dispatcher }
|
122
|
+
end
|
123
|
+
|
124
|
+
def self.marshaller
|
125
|
+
Proc.new { Mmtrix::Agent::MmtrixService::JsonMarshaller.is_supported? ? 'json' : 'pruby' }
|
126
|
+
end
|
127
|
+
|
128
|
+
# On Rubies with string encodings support (1.9.x+), default to always
|
129
|
+
# normalize encodings since it's safest and fast. Without that support
|
130
|
+
# the conversions are too expensive, so only enable if overridden to.
|
131
|
+
def self.normalize_json_string_encodings
|
132
|
+
Proc.new { Mmtrix::LanguageSupport.supports_string_encodings? }
|
133
|
+
end
|
134
|
+
|
135
|
+
def self.thread_profiler_enabled
|
136
|
+
Proc.new { Mmtrix::Agent::Threading::BacktraceService.is_supported? }
|
137
|
+
end
|
138
|
+
|
139
|
+
# This check supports the js_errors_beta key we've asked clients to
|
140
|
+
# set. Once JS errors are GA, browser_monitoring.loader can stop
|
141
|
+
# being dynamic.
|
142
|
+
def self.browser_monitoring_loader
|
143
|
+
Proc.new { Mmtrix::Agent.config[:js_errors_beta] ? "full" : "rum"}
|
144
|
+
end
|
145
|
+
|
146
|
+
def self.transaction_tracer_transaction_threshold
|
147
|
+
Proc.new { Mmtrix::Agent.config[:apdex_t] * 4 }
|
148
|
+
end
|
149
|
+
|
150
|
+
def self.port
|
151
|
+
Proc.new { Mmtrix::Agent.config[:ssl] ? 443 : 80 }
|
152
|
+
end
|
153
|
+
|
154
|
+
def self.profiling_available
|
155
|
+
Proc.new {
|
156
|
+
begin
|
157
|
+
require 'ruby-prof'
|
158
|
+
true
|
159
|
+
rescue LoadError
|
160
|
+
false
|
161
|
+
end
|
162
|
+
}
|
163
|
+
end
|
164
|
+
|
165
|
+
def self.convert_to_regexp_list(raw_value)
|
166
|
+
value_list = convert_to_list(raw_value)
|
167
|
+
value_list.map do |value|
|
168
|
+
/#{value}/
|
169
|
+
end
|
170
|
+
end
|
171
|
+
|
172
|
+
def self.convert_to_list(value)
|
173
|
+
case value
|
174
|
+
when String
|
175
|
+
value.split(/\s*,\s*/)
|
176
|
+
when Array
|
177
|
+
value
|
178
|
+
else
|
179
|
+
raise ArgumentError.new("Config value '#{value}' couldn't be turned into a list.")
|
180
|
+
end
|
181
|
+
end
|
182
|
+
|
183
|
+
def self.convert_to_constant_list(raw_value)
|
184
|
+
const_names = convert_to_list(raw_value)
|
185
|
+
const_names.map! do |class_name|
|
186
|
+
const = ::Mmtrix::LanguageSupport.constantize(class_name)
|
187
|
+
|
188
|
+
unless const
|
189
|
+
Mmtrix::Agent.logger.warn("Ignoring unrecognized constant '#{class_name}' in #{raw_value}")
|
190
|
+
end
|
191
|
+
|
192
|
+
const
|
193
|
+
end
|
194
|
+
const_names.compact
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
AUTOSTART_BLACKLISTED_RAKE_TASKS = [
|
199
|
+
'about',
|
200
|
+
'assets:clean',
|
201
|
+
'assets:clobber',
|
202
|
+
'assets:environment',
|
203
|
+
'assets:precompile',
|
204
|
+
'assets:precompile:all',
|
205
|
+
'db:create',
|
206
|
+
'db:drop',
|
207
|
+
'db:fixtures:load',
|
208
|
+
'db:migrate',
|
209
|
+
'db:migrate:status',
|
210
|
+
'db:rollback',
|
211
|
+
'db:schema:cache:clear',
|
212
|
+
'db:schema:cache:dump',
|
213
|
+
'db:schema:dump',
|
214
|
+
'db:schema:load',
|
215
|
+
'db:seed',
|
216
|
+
'db:setup',
|
217
|
+
'db:structure:dump',
|
218
|
+
'db:version',
|
219
|
+
'doc:app',
|
220
|
+
'log:clear',
|
221
|
+
'middleware',
|
222
|
+
'notes',
|
223
|
+
'notes:custom',
|
224
|
+
'rails:template',
|
225
|
+
'rails:update',
|
226
|
+
'routes',
|
227
|
+
'secret',
|
228
|
+
'spec',
|
229
|
+
'spec:features',
|
230
|
+
'spec:requests',
|
231
|
+
'spec:controllers',
|
232
|
+
'spec:helpers',
|
233
|
+
'spec:models',
|
234
|
+
'spec:views',
|
235
|
+
'spec:routing',
|
236
|
+
'spec:rcov',
|
237
|
+
'stats',
|
238
|
+
'test',
|
239
|
+
'test:all',
|
240
|
+
'test:all:db',
|
241
|
+
'test:recent',
|
242
|
+
'test:single',
|
243
|
+
'test:uncommitted',
|
244
|
+
'time:zones:all',
|
245
|
+
'tmp:clear',
|
246
|
+
'tmp:create'
|
247
|
+
].join(',').freeze
|
248
|
+
|
249
|
+
DEFAULTS = {
|
250
|
+
:license_key => {
|
251
|
+
:default => '',
|
252
|
+
:public => true,
|
253
|
+
:type => String,
|
254
|
+
:allowed_from_server => false,
|
255
|
+
:description => 'Your Mmtrix <a href="/docs/accounts-partnerships/accounts/account-setup/license-key">license key</a>.'
|
256
|
+
},
|
257
|
+
:agent_enabled => {
|
258
|
+
:default => DefaultSource.agent_enabled,
|
259
|
+
:public => true,
|
260
|
+
:type => Boolean,
|
261
|
+
:allowed_from_server => false,
|
262
|
+
:description => 'Enable or disable the agent.'
|
263
|
+
},
|
264
|
+
:enabled => {
|
265
|
+
:default => true,
|
266
|
+
:public => false,
|
267
|
+
:type => Boolean,
|
268
|
+
:aliases => [:enable],
|
269
|
+
:allowed_from_server => false,
|
270
|
+
:description => 'Enable or disable the agent.'
|
271
|
+
},
|
272
|
+
:app_name => {
|
273
|
+
:default => DefaultSource.app_name,
|
274
|
+
:public => true,
|
275
|
+
:type => String,
|
276
|
+
:allowed_from_server => false,
|
277
|
+
:description => 'Semicolon-delimited list of <a href="/docs/apm/mmtrix-apm/installation-and-configuration/naming-your-application">application names</a> to which the agent will report metrics (e.g. \'MyApplication\' or \'MyAppStaging;Instance1\'). For more information, see <a href="/docs/apm/mmtrix-apm/installation-and-configuration/naming-your-application">Naming your application</a>.'
|
278
|
+
},
|
279
|
+
:monitor_mode => {
|
280
|
+
:default => value_of(:enabled),
|
281
|
+
:public => true,
|
282
|
+
:type => Boolean,
|
283
|
+
:allowed_from_server => false,
|
284
|
+
:description => 'Enable or disable the transmission of data to the Mmtrix <a href="/docs/apm/mmtrix-apm/getting-started/glossary#collector">collector</a>).'
|
285
|
+
},
|
286
|
+
:developer_mode => {
|
287
|
+
:default => value_of(:developer),
|
288
|
+
:public => true,
|
289
|
+
:type => Boolean,
|
290
|
+
:allowed_from_server => false,
|
291
|
+
:description => 'Enable or disable developer mode, a local analytics package built into the agent for rack applications. Access developer mode analytics by visiting <b>/mmtrix</b> in your application.'
|
292
|
+
},
|
293
|
+
:developer => {
|
294
|
+
:default => false,
|
295
|
+
:public => false,
|
296
|
+
:type => Boolean,
|
297
|
+
:allowed_from_server => false,
|
298
|
+
:description => 'Alternative method of enabling developer_mode.'
|
299
|
+
},
|
300
|
+
:log_level => {
|
301
|
+
:default => 'info',
|
302
|
+
:public => true,
|
303
|
+
:type => String,
|
304
|
+
:allowed_from_server => false,
|
305
|
+
:description => 'Log level for agent logging: error, warn, info or debug.'
|
306
|
+
},
|
307
|
+
:high_security => {
|
308
|
+
:default => false,
|
309
|
+
:public => true,
|
310
|
+
:type => Boolean,
|
311
|
+
:allowed_from_server => false,
|
312
|
+
:description => 'Enable or disable <a href="/docs/accounts-partnerships/accounts/security/high-security">high security mode</a>, a suite of security features designed to protect data in an enterprise setting.'
|
313
|
+
},
|
314
|
+
:ssl => {
|
315
|
+
# :default => true,
|
316
|
+
:default => false,
|
317
|
+
:allow_nil => true,
|
318
|
+
:public => true,
|
319
|
+
:type => Boolean,
|
320
|
+
:allowed_from_server => false,
|
321
|
+
:description => 'Enable or disable SSL for transmissions to the Mmtrix <a href="/docs/apm/mmtrix-apm/getting-started/glossary#collector">collector</a>). Defaults to true in versions 3.5.6 and higher.'
|
322
|
+
},
|
323
|
+
:proxy_host => {
|
324
|
+
:default => nil,
|
325
|
+
:allow_nil => true,
|
326
|
+
:public => true,
|
327
|
+
:type => String,
|
328
|
+
:allowed_from_server => false,
|
329
|
+
:description => 'Defines a host for communicating with Mmtrix via a proxy server.'
|
330
|
+
},
|
331
|
+
:proxy_port => {
|
332
|
+
:default => 8080,
|
333
|
+
# :default => 8027,
|
334
|
+
:allow_nil => true,
|
335
|
+
:public => true,
|
336
|
+
:type => Fixnum,
|
337
|
+
:allowed_from_server => false,
|
338
|
+
:description => 'Defines a port for communicating with Mmtrix via a proxy server.'
|
339
|
+
},
|
340
|
+
:proxy_user => {
|
341
|
+
:default => nil,
|
342
|
+
:allow_nil => true,
|
343
|
+
:public => true,
|
344
|
+
:type => String,
|
345
|
+
:allowed_from_server => false,
|
346
|
+
:exclude_from_reported_settings => true,
|
347
|
+
:description => 'Defines a user for communicating with Mmtrix via a proxy server.'
|
348
|
+
},
|
349
|
+
:proxy_pass => {
|
350
|
+
:default => nil,
|
351
|
+
:allow_nil => true,
|
352
|
+
:public => true,
|
353
|
+
:type => String,
|
354
|
+
:allowed_from_server => false,
|
355
|
+
:exclude_from_reported_settings => true,
|
356
|
+
:description => 'Defines a password for communicating with Mmtrix via a proxy server.'
|
357
|
+
},
|
358
|
+
:capture_params => {
|
359
|
+
:default => false,
|
360
|
+
:public => true,
|
361
|
+
:type => Boolean,
|
362
|
+
:allowed_from_server => false,
|
363
|
+
:description => 'Enable or disable the capture of HTTP request parameters to be attached to transaction traces and traced errors.'
|
364
|
+
},
|
365
|
+
:config_path => {
|
366
|
+
:default => DefaultSource.config_path,
|
367
|
+
:public => true,
|
368
|
+
:type => String,
|
369
|
+
:allowed_from_server => false,
|
370
|
+
:description => 'Path to <b>mmtrix.yml</b>. When omitted the agent will check (in order) <b>config/mmtrix.yml</b>, <b>mmtrix.yml</b>, <b>$HOME/.mmtrix/mmtrix.yml</b> and <b>$HOME/mmtrix.yml</b>.'
|
371
|
+
},
|
372
|
+
:config_search_paths => {
|
373
|
+
:default => DefaultSource.config_search_paths,
|
374
|
+
:public => false,
|
375
|
+
:type => Array,
|
376
|
+
:allowed_from_server => false,
|
377
|
+
:description => "An array of candidate locations for the agent's configuration file."
|
378
|
+
},
|
379
|
+
:dispatcher => {
|
380
|
+
:default => DefaultSource.dispatcher,
|
381
|
+
:public => false,
|
382
|
+
:type => Symbol,
|
383
|
+
:allowed_from_server => false,
|
384
|
+
:description => 'Autodetected application component that reports metrics to Mmtrix.'
|
385
|
+
},
|
386
|
+
:framework => {
|
387
|
+
:default => DefaultSource.framework,
|
388
|
+
:public => false,
|
389
|
+
:type => Symbol,
|
390
|
+
:allowed_from_server => false,
|
391
|
+
:description => 'Autodetected application framework used to enable framework-specific functionality.'
|
392
|
+
},
|
393
|
+
:'autostart.blacklisted_constants' => {
|
394
|
+
:default => 'Rails::Console',
|
395
|
+
:public => true,
|
396
|
+
:type => String,
|
397
|
+
:allowed_from_server => false,
|
398
|
+
:description => 'Defines a comma-delimited list of constants. When these constants are present, the agent will not start automatically (e.g. \'Rails::Console, UninstrumentedBackgroundJob\').'
|
399
|
+
},
|
400
|
+
:'autostart.blacklisted_executables' => {
|
401
|
+
:default => 'irb,rspec',
|
402
|
+
:public => true,
|
403
|
+
:type => String,
|
404
|
+
:allowed_from_server => false,
|
405
|
+
:description => 'Defines a comma-delimited list of executables that should not be instrumented by the agent (e.g. \'rake,my_ruby_script.rb\').'
|
406
|
+
},
|
407
|
+
:'autostart.blacklisted_rake_tasks' => {
|
408
|
+
:default => AUTOSTART_BLACKLISTED_RAKE_TASKS,
|
409
|
+
:public => true,
|
410
|
+
:type => String,
|
411
|
+
:allowed_from_server => false,
|
412
|
+
:description => 'Defines a comma-delimited list of rake tasks that should not be instrumented by the agent (e.g. \'assets:precompile,db:migrate\').'
|
413
|
+
},
|
414
|
+
:'profiling.available' => {
|
415
|
+
:default => DefaultSource.profiling_available,
|
416
|
+
:public => false,
|
417
|
+
:type => Boolean,
|
418
|
+
:allowed_from_server => false,
|
419
|
+
:description => 'Determines if ruby-prof is available for developer mode profiling.'
|
420
|
+
},
|
421
|
+
:apdex_t => {
|
422
|
+
:default => 0.5,
|
423
|
+
:public => true,
|
424
|
+
:type => Float,
|
425
|
+
:allowed_from_server => true,
|
426
|
+
:deprecated => true,
|
427
|
+
:description => 'In versions 3.5.0 and higher, <a href="/docs/apm/mmtrix-apm/apdex/changing-your-apdex-settings">set your Apdex T via the Mmtrix UI</a>. In addition to determining your <a href="/docs/apm/mmtrix-apm/apdex/apdex-measuring-user-satisfaction">Apdex score</a>, Apdex T is the threshold at which Mmtrix will begin alerting. By default the agent will send alerts when the Apdex score drops below 0.5, or when more than half of users are experiencing degraded application performance.'
|
428
|
+
},
|
429
|
+
:'strip_exception_messages.enabled' => {
|
430
|
+
:default => value_of(:high_security),
|
431
|
+
:public => true,
|
432
|
+
:type => Boolean,
|
433
|
+
:allowed_from_server => false,
|
434
|
+
:description => 'Defines whether the agent should strip messages from all exceptions that are not specified in the whitelist. Enabled automatically in <a href="/docs/accounts-partnerships/accounts/security/high-security">high security mode</a>.'
|
435
|
+
},
|
436
|
+
:'strip_exception_messages.whitelist' => {
|
437
|
+
:default => '',
|
438
|
+
:public => true,
|
439
|
+
:type => String,
|
440
|
+
:allowed_from_server => false,
|
441
|
+
:transform => DefaultSource.method(:convert_to_constant_list),
|
442
|
+
:description => 'Defines a comma-delimited list of exceptions from which the agent will not strip messages when <a href="#strip_exception_messages.enabled">strip_exception_messages</a> is enabled (such as \'ImportantException, PreserveMessageException\').'
|
443
|
+
},
|
444
|
+
:host => {
|
445
|
+
# :default => 'collector.mmtrix.com',
|
446
|
+
# :default => 'dev.zhujianfeng.info',
|
447
|
+
:default => 'dev.mmtrix.com',
|
448
|
+
:public => false,
|
449
|
+
:type => String,
|
450
|
+
:allowed_from_server => false,
|
451
|
+
:description => "URI for the Mmtrix data collection service."
|
452
|
+
},
|
453
|
+
:api_host => {
|
454
|
+
# :default => 'rpm.mmtrix.com',
|
455
|
+
# :default => 'dev.zhujianfeng.info',
|
456
|
+
:default => 'dev.mmtrix.com',
|
457
|
+
:public => false,
|
458
|
+
:type => String,
|
459
|
+
:allowed_from_server => false,
|
460
|
+
:description => 'API host for Mmtrix.'
|
461
|
+
},
|
462
|
+
:port => {
|
463
|
+
# :default => DefaultSource.port,
|
464
|
+
# :default => 8410,
|
465
|
+
:default => 8207,
|
466
|
+
:public => false,
|
467
|
+
:type => Fixnum,
|
468
|
+
:allowed_from_server => false,
|
469
|
+
:description => 'Port for the Mmtrix data collection service.'
|
470
|
+
},
|
471
|
+
:api_port => {
|
472
|
+
:default => value_of(:port),
|
473
|
+
:public => false,
|
474
|
+
:type => Fixnum,
|
475
|
+
:allowed_from_server => false,
|
476
|
+
:description => 'Port for the Mmtrix API host.'
|
477
|
+
},
|
478
|
+
:sync_startup => {
|
479
|
+
:default => false,
|
480
|
+
:public => true,
|
481
|
+
:type => Boolean,
|
482
|
+
:allowed_from_server => false,
|
483
|
+
:description => 'Enable or disable synchronous connection to the Mmtrix data collection service during application startup.'
|
484
|
+
},
|
485
|
+
:send_data_on_exit => {
|
486
|
+
:default => true,
|
487
|
+
:public => true,
|
488
|
+
:type => Boolean,
|
489
|
+
:allowed_from_server => false,
|
490
|
+
:description => 'Enable or disable the exit handler that sends data to the Mmtrix <a href="/docs/apm/mmtrix-apm/getting-started/glossary#collector">collector</a>) before shutting down.'
|
491
|
+
},
|
492
|
+
:post_size_limit => {
|
493
|
+
:default => 2 * 1024 * 1024, # 2MB
|
494
|
+
:public => false,
|
495
|
+
:type => Fixnum,
|
496
|
+
:allowed_from_server => true,
|
497
|
+
:description => 'Maximum number of bytes to send to the Mmtrix data collection service.'
|
498
|
+
},
|
499
|
+
:timeout => {
|
500
|
+
:default => 2 * 60, # 2 minutes
|
501
|
+
:public => true,
|
502
|
+
:type => Fixnum,
|
503
|
+
:allowed_from_server => false,
|
504
|
+
:description => 'Maximum number of seconds to attempt to contact the Mmtrix <a href="/docs/apm/mmtrix-apm/getting-started/glossary#collector">collector</a>).'
|
505
|
+
},
|
506
|
+
:send_environment_info => {
|
507
|
+
:default => true,
|
508
|
+
:public => false,
|
509
|
+
:type => Boolean,
|
510
|
+
:allowed_from_server => false,
|
511
|
+
:description => 'Enable or disable transmission of application environment information to the Mmtrix data collection service.'
|
512
|
+
},
|
513
|
+
:data_report_period => {
|
514
|
+
:default => 60,
|
515
|
+
:public => false,
|
516
|
+
:type => Fixnum,
|
517
|
+
:allowed_from_server => true,
|
518
|
+
:description => 'Number of seconds betwixt connections to the Mmtrix data collection service. Note that transaction events have a separate report period, specified by data_report_periods.analytic_event_data.'
|
519
|
+
},
|
520
|
+
:'data_report_periods.analytic_event_data' => {
|
521
|
+
:default => 60,
|
522
|
+
:public => false,
|
523
|
+
:type => Fixnum,
|
524
|
+
:dynamic_name => true,
|
525
|
+
:allowed_from_server => true,
|
526
|
+
:description => 'Number of seconds between connections to the Mmtrix data collection service for sending transaction event data.'
|
527
|
+
},
|
528
|
+
:keep_retrying => {
|
529
|
+
:default => true,
|
530
|
+
:public => false,
|
531
|
+
:type => Boolean,
|
532
|
+
:deprecated => true,
|
533
|
+
:allowed_from_server => false,
|
534
|
+
:description => 'Enable or disable retrying failed connections to the Mmtrix data collection service.'
|
535
|
+
},
|
536
|
+
:force_reconnect => {
|
537
|
+
:default => false,
|
538
|
+
:public => false,
|
539
|
+
:type => Boolean,
|
540
|
+
:allowed_from_server => false,
|
541
|
+
:description => 'Force a new connection to the server before running the worker loop. Creates a separate agent run and is recorded as a separate instance by the Mmtrix data collection service.'
|
542
|
+
},
|
543
|
+
:report_instance_busy => {
|
544
|
+
:default => true,
|
545
|
+
:public => false,
|
546
|
+
:type => Boolean,
|
547
|
+
:allowed_from_server => false,
|
548
|
+
:description => 'Enable or disable transmission of metrics recording the percentage of time application instances spend servicing requests (duty cycle metrics).'
|
549
|
+
},
|
550
|
+
:log_file_name => {
|
551
|
+
:default => 'mmtrix_agent.log',
|
552
|
+
:public => true,
|
553
|
+
:type => String,
|
554
|
+
:allowed_from_server => false,
|
555
|
+
:description => 'Defines a name for the log file.'
|
556
|
+
},
|
557
|
+
:log_file_path => {
|
558
|
+
:default => 'log/',
|
559
|
+
:public => true,
|
560
|
+
:type => String,
|
561
|
+
:allowed_from_server => false,
|
562
|
+
:description => 'Defines a path to the agent log file, excluding the filename.'
|
563
|
+
},
|
564
|
+
:'audit_log.enabled' => {
|
565
|
+
:default => false,
|
566
|
+
:public => true,
|
567
|
+
:type => Boolean,
|
568
|
+
:allowed_from_server => false,
|
569
|
+
:description => 'Enable or disable the audit log, a log of communications with the Mmtrix <a href="/docs/apm/mmtrix-apm/getting-started/glossary#collector">collector</a>).'
|
570
|
+
},
|
571
|
+
:'audit_log.path' => {
|
572
|
+
:default => DefaultSource.audit_log_path,
|
573
|
+
:public => true,
|
574
|
+
:type => String,
|
575
|
+
:allowed_from_server => false,
|
576
|
+
:description => 'Specifies a path to the audit log file (including the filename).'
|
577
|
+
},
|
578
|
+
:'audit_log.endpoints' => {
|
579
|
+
:default => [".*"],
|
580
|
+
:public => true,
|
581
|
+
:type => Array,
|
582
|
+
:allowed_from_server => false,
|
583
|
+
:transform => DefaultSource.method(:convert_to_regexp_list),
|
584
|
+
:description => 'List of allowed endpoints to include in audit log'
|
585
|
+
},
|
586
|
+
:disable_samplers => {
|
587
|
+
:default => false,
|
588
|
+
:public => true,
|
589
|
+
:type => Boolean,
|
590
|
+
:allowed_from_server => false,
|
591
|
+
:description => 'Enable or disable the collection of sampler metrics. Sampler metrics are metrics that are not event-based (such as CPU time or memory usage).'
|
592
|
+
},
|
593
|
+
:disable_resque => {
|
594
|
+
:default => false,
|
595
|
+
:public => true,
|
596
|
+
:type => Boolean,
|
597
|
+
:allowed_from_server => false,
|
598
|
+
:description => 'Enable or disable <a href="/docs/agents/ruby-agent/background-jobs/resque-instrumentation">Resque instrumentation</a>.'
|
599
|
+
},
|
600
|
+
:disable_sidekiq => {
|
601
|
+
:default => false,
|
602
|
+
:public => true,
|
603
|
+
:type => Boolean,
|
604
|
+
:allowed_from_server => false,
|
605
|
+
:description => 'Enable or disable <a href="/docs/agents/ruby-agent/background-jobs/sidekiq-instrumentation">Sidekiq instrumentation</a>.'
|
606
|
+
},
|
607
|
+
:disable_dj => {
|
608
|
+
:default => false,
|
609
|
+
:public => true,
|
610
|
+
:type => Boolean,
|
611
|
+
:allowed_from_server => false,
|
612
|
+
:description => 'Enable or disable <a href="/docs/agents/ruby-agent/background-jobs/delayedjob">Delayed::Job instrumentation</a>.'
|
613
|
+
},
|
614
|
+
:disable_sinatra => {
|
615
|
+
:default => false,
|
616
|
+
:public => true,
|
617
|
+
:type => Boolean,
|
618
|
+
:allowed_from_server => false,
|
619
|
+
:description => 'Enable or disable <a href="/docs/agents/ruby-agent/frameworks/sinatra-support">Sinatra instrumentation</a>.'
|
620
|
+
},
|
621
|
+
:disable_sinatra_auto_middleware => {
|
622
|
+
:default => false,
|
623
|
+
:public => true,
|
624
|
+
:type => Boolean,
|
625
|
+
:allowed_from_server => false,
|
626
|
+
:description => 'Enable or disable agent middleware for Sinatra. This middleware is responsible for Sinatra advanced feature support; for example, cross application tracing, page load timing (sometimes referred to as real user monitoring or RUM), and error collection.'
|
627
|
+
},
|
628
|
+
:disable_view_instrumentation => {
|
629
|
+
:default => false,
|
630
|
+
:public => true,
|
631
|
+
:type => Boolean,
|
632
|
+
:allowed_from_server => false,
|
633
|
+
:description => 'Enable or disable view instrumentation.'
|
634
|
+
},
|
635
|
+
:disable_backtrace_cleanup => {
|
636
|
+
:default => false,
|
637
|
+
:public => true,
|
638
|
+
:type => Boolean,
|
639
|
+
:allowed_from_server => false,
|
640
|
+
:description => 'Defines whether the agent will remove <code>mmtrix_rpm</code> from backtraces.'
|
641
|
+
},
|
642
|
+
:disable_harvest_thread => {
|
643
|
+
:default => false,
|
644
|
+
:public => false,
|
645
|
+
:type => Boolean,
|
646
|
+
:allowed_from_server => false,
|
647
|
+
:description => 'Enable or disable the harvest thread.'
|
648
|
+
},
|
649
|
+
:skip_ar_instrumentation => {
|
650
|
+
:default => false,
|
651
|
+
:public => false,
|
652
|
+
:type => Boolean,
|
653
|
+
:allowed_from_server => false,
|
654
|
+
:description => 'Enable or disable active record instrumentation.'
|
655
|
+
},
|
656
|
+
:disable_activerecord_instrumentation => {
|
657
|
+
:default => value_of(:skip_ar_instrumentation),
|
658
|
+
:public => true,
|
659
|
+
:type => Boolean,
|
660
|
+
:allowed_from_server => false,
|
661
|
+
:description => 'Enable or disable active record instrumentation.'
|
662
|
+
},
|
663
|
+
:disable_data_mapper => {
|
664
|
+
:default => false,
|
665
|
+
:public => true,
|
666
|
+
:type => Boolean,
|
667
|
+
:allowed_from_server => false,
|
668
|
+
:description => 'Enable or disable DataMapper instrumentation.'
|
669
|
+
},
|
670
|
+
:disable_activejob => {
|
671
|
+
:default => false,
|
672
|
+
:public => true,
|
673
|
+
:type => Boolean,
|
674
|
+
:dynamic_name => true,
|
675
|
+
:allowed_from_server => false,
|
676
|
+
:description => 'Enable or disable ActiveJob instrumentation.'
|
677
|
+
},
|
678
|
+
:disable_memcached => {
|
679
|
+
:default => value_of(:disable_memcache_instrumentation),
|
680
|
+
:public => true,
|
681
|
+
:type => Boolean,
|
682
|
+
:allowed_from_server => false,
|
683
|
+
:description => 'Enable or disable instrumentation for the memcached gem.'
|
684
|
+
},
|
685
|
+
:disable_memcache_client => {
|
686
|
+
:default => value_of(:disable_memcache_instrumentation),
|
687
|
+
:public => true,
|
688
|
+
:type => Boolean,
|
689
|
+
:allowed_from_server => false,
|
690
|
+
:description => 'Enable or disable instrumenation for the memcache-client gem.'
|
691
|
+
},
|
692
|
+
:disable_dalli => {
|
693
|
+
:default => value_of(:disable_memcache_instrumentation),
|
694
|
+
:public => true,
|
695
|
+
:type => Boolean,
|
696
|
+
:allowed_from_server => false,
|
697
|
+
:description => 'Enable or disable instrumentation for the dalli gem.'
|
698
|
+
},
|
699
|
+
:disable_dalli_cas_client => {
|
700
|
+
:default => value_of(:disable_memcache_instrumentation),
|
701
|
+
:public => true,
|
702
|
+
:type => Boolean,
|
703
|
+
:allowed_from_server => false,
|
704
|
+
:description => "Enable or disable instrumentation for the dalli gem's additional CAS client support."
|
705
|
+
},
|
706
|
+
:disable_memcache_instrumentation => {
|
707
|
+
:default => false,
|
708
|
+
:public => true,
|
709
|
+
:type => Boolean,
|
710
|
+
:allowed_from_server => false,
|
711
|
+
:description => 'Enable or disable memcache instrumentation.'
|
712
|
+
},
|
713
|
+
:disable_gc_profiler => {
|
714
|
+
:default => false,
|
715
|
+
:public => true,
|
716
|
+
:type => Boolean,
|
717
|
+
:allowed_from_server => false,
|
718
|
+
:description => 'Enable or disable the use of GC::Profiler to measure time spent in garbage collection'
|
719
|
+
},
|
720
|
+
:'sidekiq.capture_params' => {
|
721
|
+
:default => false,
|
722
|
+
:public => true,
|
723
|
+
:type => Boolean,
|
724
|
+
:allowed_from_server => false,
|
725
|
+
:dynamic_name => true,
|
726
|
+
:deprecated => true,
|
727
|
+
:description => 'Enable or disable the capture of job arguments for transaction traces and traced errors in Sidekiq.'
|
728
|
+
},
|
729
|
+
:'resque.capture_params' => {
|
730
|
+
:default => false,
|
731
|
+
:public => true,
|
732
|
+
:type => Boolean,
|
733
|
+
:allowed_from_server => false,
|
734
|
+
:dynamic_name => true,
|
735
|
+
:deprecated => true,
|
736
|
+
:description => 'Enable or disable the capture of job arguments for transaction traces and traced errors in Resque.'
|
737
|
+
},
|
738
|
+
:'resque.use_ruby_dns' => {
|
739
|
+
:default => true,
|
740
|
+
:public => false,
|
741
|
+
:type => Boolean,
|
742
|
+
:allowed_from_server => false,
|
743
|
+
:description => 'Replace the libc DNS resolver with the all Ruby resolver Resolv'
|
744
|
+
},
|
745
|
+
:capture_memcache_keys => {
|
746
|
+
:default => false,
|
747
|
+
:public => true,
|
748
|
+
:type => Boolean,
|
749
|
+
:allowed_from_server => true,
|
750
|
+
:description => 'Enable or disable the capture of memcache keys from transaction traces.'
|
751
|
+
},
|
752
|
+
:'transaction_tracer.enabled' => {
|
753
|
+
:default => true,
|
754
|
+
:public => true,
|
755
|
+
:type => Boolean,
|
756
|
+
:allowed_from_server => true,
|
757
|
+
:description => 'Enable or disable <a href="/docs/apm/traces/transaction-traces/transaction-traces">transaction traces</a>.'
|
758
|
+
},
|
759
|
+
:'transaction_tracer.transaction_threshold' => {
|
760
|
+
:default => DefaultSource.transaction_tracer_transaction_threshold,
|
761
|
+
:public => true,
|
762
|
+
:type => Float,
|
763
|
+
:allowed_from_server => true,
|
764
|
+
:description => 'The agent will collect traces for transactions that exceed this time threshold (in seconds). Specify a float value or <code><a href="/docs/apm/mmtrix-apm/getting-started/glossary#apdex_f">apdex_f</a></code>.'
|
765
|
+
},
|
766
|
+
:'transaction_tracer.record_sql' => {
|
767
|
+
:default => 'obfuscated',
|
768
|
+
:public => true,
|
769
|
+
:type => String,
|
770
|
+
:allowed_from_server => true,
|
771
|
+
:description => 'Obfuscation level for SQL queries reported in transaction trace nodes. Valid options are <code>obfuscated</code>, <code>raw</code>, <code>none</code>.'
|
772
|
+
},
|
773
|
+
:'transaction_tracer.capture_attributes' => {
|
774
|
+
:default => true,
|
775
|
+
:public => true,
|
776
|
+
:type => Boolean,
|
777
|
+
:deprecated => true,
|
778
|
+
:allowed_from_server => false,
|
779
|
+
:description => 'Use transaction_tracer.attributes.enabled instead.'
|
780
|
+
},
|
781
|
+
:'transaction_tracer.explain_threshold' => {
|
782
|
+
:default => 0.5,
|
783
|
+
:public => true,
|
784
|
+
:type => Float,
|
785
|
+
:allowed_from_server => true,
|
786
|
+
:description => 'Threshold (in seconds) above which the agent will collect explain plans. Relevant only when <code><a href="#transaction_tracer.explain_enabled">explain_enabled</a></code> is true.'
|
787
|
+
},
|
788
|
+
:'transaction_tracer.explain_enabled' => {
|
789
|
+
:default => true,
|
790
|
+
:public => true,
|
791
|
+
:type => Boolean,
|
792
|
+
:allowed_from_server => true,
|
793
|
+
:description => 'Enable or disable the collection of explain plans in transaction traces. This setting will also apply to explain plans in Slow SQL traces if slow_sql.explain_enabled is not set separately.'
|
794
|
+
},
|
795
|
+
:'transaction_tracer.stack_trace_threshold' => {
|
796
|
+
:default => 0.5,
|
797
|
+
:public => true,
|
798
|
+
:type => Float,
|
799
|
+
:allowed_from_server => true,
|
800
|
+
:description => 'Stack traces will be included in transaction trace nodes when their duration exceeds this threshold.'
|
801
|
+
},
|
802
|
+
:'transaction_tracer.limit_segments' => {
|
803
|
+
:default => 4000,
|
804
|
+
:public => true,
|
805
|
+
:type => Fixnum,
|
806
|
+
:allowed_from_server => true,
|
807
|
+
:description => 'Maximum number of transaction trace nodes to record in a single transaction trace.'
|
808
|
+
},
|
809
|
+
:disable_sequel_instrumentation => {
|
810
|
+
:default => false,
|
811
|
+
:public => true,
|
812
|
+
:type => Boolean,
|
813
|
+
:allowed_from_server => false,
|
814
|
+
:description => 'Enable or disable <a href="/docs/agents/ruby-agent/frameworks/sequel-instrumentation">Sequel instrumentation</a>.'
|
815
|
+
},
|
816
|
+
:disable_database_instrumentation => {
|
817
|
+
:default => false,
|
818
|
+
:public => true,
|
819
|
+
:type => Boolean,
|
820
|
+
:allowed_from_server => false,
|
821
|
+
:deprecated => true,
|
822
|
+
:description => 'Enable or disable Sequel instrumentation. This option is deprecated; instead, use <a href="/docs/agents/ruby-agent/installation-and-configuration/ruby-agent-configuration#disable_sequel_instrumentation"><code>disable_sequel_instrumentation</code></a>'
|
823
|
+
},
|
824
|
+
:disable_mongo => {
|
825
|
+
:default => false,
|
826
|
+
:public => true,
|
827
|
+
:type => Boolean,
|
828
|
+
:allowed_from_server => false,
|
829
|
+
:dynamic_name => true,
|
830
|
+
:description => 'Defines whether the agent will install <a href="/docs/agents/ruby-agent/frameworks/mongo-instrumentation">instrumentation for the Mongo gem</a>.'
|
831
|
+
},
|
832
|
+
:'slow_sql.enabled' => {
|
833
|
+
:default => value_of(:'transaction_tracer.enabled'),
|
834
|
+
:public => true,
|
835
|
+
:type => Boolean,
|
836
|
+
:allowed_from_server => true,
|
837
|
+
:description => 'Enable or disable collection of slow SQL queries.'
|
838
|
+
},
|
839
|
+
:'slow_sql.explain_threshold' => {
|
840
|
+
:default => value_of(:'transaction_tracer.explain_threshold'),
|
841
|
+
:public => true,
|
842
|
+
:type => Float,
|
843
|
+
:allowed_from_server => true,
|
844
|
+
:description => 'Defines a duration threshold, over which the agent will collect explain plans in slow SQL queries.'
|
845
|
+
},
|
846
|
+
:'slow_sql.explain_enabled' => {
|
847
|
+
:default => value_of(:'transaction_tracer.explain_enabled'),
|
848
|
+
:public => true,
|
849
|
+
:type => Boolean,
|
850
|
+
:allowed_from_server => true,
|
851
|
+
:description => 'Enable or disable the collection of explain plans in slow SQL queries. If this setting is omitted, the transaction_tracer.explain_enabled setting will be applied as the default setting for explain plans in Slow SQL as well.'
|
852
|
+
},
|
853
|
+
:'slow_sql.record_sql' => {
|
854
|
+
:default => value_of(:'transaction_tracer.record_sql'),
|
855
|
+
:public => true,
|
856
|
+
:type => String,
|
857
|
+
:allowed_from_server => true,
|
858
|
+
:description => 'Defines an obfuscation level for slow SQL queries. Valid options are <code>obfuscated</code>, <code>raw</code>, <code>none</code>).'
|
859
|
+
},
|
860
|
+
:'mongo.capture_queries' => {
|
861
|
+
:default => true,
|
862
|
+
:public => true,
|
863
|
+
:type => Boolean,
|
864
|
+
:allowed_from_server => true,
|
865
|
+
:description => 'Enable or disable capturing Mongo queries in transaction traces.'
|
866
|
+
},
|
867
|
+
:'mongo.obfuscate_queries' => {
|
868
|
+
:default => true,
|
869
|
+
:public => true,
|
870
|
+
:type => Boolean,
|
871
|
+
:allowed_from_server => true,
|
872
|
+
:description => 'Enable or disable obfuscation of Mongo queries in transaction traces.'
|
873
|
+
},
|
874
|
+
:'error_collector.enabled' => {
|
875
|
+
:default => true,
|
876
|
+
:public => true,
|
877
|
+
:type => Boolean,
|
878
|
+
:allowed_from_server => true,
|
879
|
+
:description => 'Enable or disable recording of traced errors and error count metrics.'
|
880
|
+
},
|
881
|
+
:'error_collector.capture_attributes' => {
|
882
|
+
:default => true,
|
883
|
+
:public => true,
|
884
|
+
:type => Boolean,
|
885
|
+
:deprecated => true,
|
886
|
+
:allowed_from_server => false,
|
887
|
+
:description => 'Use error_collector.attributes.enabled instead.'
|
888
|
+
},
|
889
|
+
:'error_collector.ignore_errors' => {
|
890
|
+
:default => 'ActionController::RoutingError,Sinatra::NotFound',
|
891
|
+
:public => true,
|
892
|
+
:type => String,
|
893
|
+
:allowed_from_server => true,
|
894
|
+
:description => 'Specifies a comma-delimited list of error classes that the agent should ignore.'
|
895
|
+
},
|
896
|
+
:'rum.enabled' => {
|
897
|
+
:default => true,
|
898
|
+
:public => false,
|
899
|
+
:type => Boolean,
|
900
|
+
:allowed_from_server => true,
|
901
|
+
:description => 'Enable or disable page load timing (sometimes referred to as real user monitoring or RUM).'
|
902
|
+
},
|
903
|
+
:browser_key => {
|
904
|
+
:default => '',
|
905
|
+
:public => false,
|
906
|
+
:type => String,
|
907
|
+
:allowed_from_server => true,
|
908
|
+
:description => 'Real user monitoring license key for the browser timing header.'
|
909
|
+
},
|
910
|
+
:beacon => {
|
911
|
+
:default => '',
|
912
|
+
:public => false,
|
913
|
+
:type => String,
|
914
|
+
:allowed_from_server => true,
|
915
|
+
:description => 'Beacon for real user monitoring.'
|
916
|
+
},
|
917
|
+
:error_beacon => {
|
918
|
+
:default => '',
|
919
|
+
:public => false,
|
920
|
+
:type => String,
|
921
|
+
:allowed_from_server => true,
|
922
|
+
:description => 'Error beacon for real user monitoring.'
|
923
|
+
},
|
924
|
+
:application_id => {
|
925
|
+
:default => '',
|
926
|
+
:public => false,
|
927
|
+
:type => String,
|
928
|
+
:allowed_from_server => true,
|
929
|
+
:description => 'Application ID for real user monitoring.'
|
930
|
+
},
|
931
|
+
:js_agent_file => {
|
932
|
+
:default => '',
|
933
|
+
:public => false,
|
934
|
+
:type => String,
|
935
|
+
:allowed_from_server => true,
|
936
|
+
:description => 'Javascript agent file for real user monitoring.'
|
937
|
+
},
|
938
|
+
:'browser_monitoring.auto_instrument' => {
|
939
|
+
:default => value_of(:'rum.enabled'),
|
940
|
+
:public => true,
|
941
|
+
:type => Boolean,
|
942
|
+
:allowed_from_server => true,
|
943
|
+
:description => 'Enable or disable automatic insertion of the JavaScript header into outgoing responses for page load timing (sometimes referred to as real user monitoring or RUM).'
|
944
|
+
},
|
945
|
+
:'browser_monitoring.capture_attributes' => {
|
946
|
+
:default => false,
|
947
|
+
:public => true,
|
948
|
+
:type => Boolean,
|
949
|
+
:deprecated => true,
|
950
|
+
:allowed_from_server => false,
|
951
|
+
:description => 'Use browser_monitoring.attributes.enabled instead.'
|
952
|
+
},
|
953
|
+
:'browser_monitoring.loader' => {
|
954
|
+
:default => DefaultSource.browser_monitoring_loader,
|
955
|
+
:public => private,
|
956
|
+
:type => String,
|
957
|
+
:allowed_from_server => true,
|
958
|
+
:description => 'Type of JavaScript agent loader to use for browser monitoring instrumentation.'
|
959
|
+
},
|
960
|
+
:'browser_monitoring.loader_version' => {
|
961
|
+
:default => '',
|
962
|
+
:public => private,
|
963
|
+
:type => String,
|
964
|
+
:allowed_from_server => true,
|
965
|
+
:description => 'Version of JavaScript agent loader (returned from the Mmtrix <a href="/docs/apm/mmtrix-apm/getting-started/glossary#collector">collector</a>).)'
|
966
|
+
},
|
967
|
+
:'browser_monitoring.debug' => {
|
968
|
+
:default => false,
|
969
|
+
:public => false,
|
970
|
+
:type => Boolean,
|
971
|
+
:allowed_from_server => true,
|
972
|
+
:description => 'Enable or disable debugging version of JavaScript agent loader for browser monitoring instrumentation.'
|
973
|
+
},
|
974
|
+
:'browser_monitoring.ssl_for_http' => {
|
975
|
+
:default => nil,
|
976
|
+
:allow_nil => true,
|
977
|
+
:public => false,
|
978
|
+
:type => Boolean,
|
979
|
+
:allowed_from_server => true,
|
980
|
+
:description => 'Enable or disable HTTPS instrumentation by JavaScript agent on HTTP pages.'
|
981
|
+
},
|
982
|
+
:js_agent_loader => {
|
983
|
+
:default => '',
|
984
|
+
:public => false,
|
985
|
+
:type => String,
|
986
|
+
:allowed_from_server => true,
|
987
|
+
:description => 'JavaScript agent loader content.'
|
988
|
+
},
|
989
|
+
:js_errors_beta => {
|
990
|
+
:default => false,
|
991
|
+
:public => false,
|
992
|
+
:type => Boolean,
|
993
|
+
:allowed_from_server => false,
|
994
|
+
:deprecated => true,
|
995
|
+
:description => 'Enable or disable beta JavaScript error reporting.'
|
996
|
+
},
|
997
|
+
:trusted_account_ids => {
|
998
|
+
:default => [],
|
999
|
+
:public => false,
|
1000
|
+
:type => Array,
|
1001
|
+
:allowed_from_server => true,
|
1002
|
+
:description => 'List of trusted Mmtrix account IDs for the purposes of cross-application tracing. Inbound requests from applications including cross-application headers that do not come from an account in this list will be ignored.'
|
1003
|
+
},
|
1004
|
+
:"cross_application_tracer.enabled" => {
|
1005
|
+
:default => true,
|
1006
|
+
:public => true,
|
1007
|
+
:type => Boolean,
|
1008
|
+
:allowed_from_server => true,
|
1009
|
+
:description => 'Enable or disable <a href="/docs/apm/traces/cross-application-traces/cross-application-traces">cross application tracing</a>.'
|
1010
|
+
},
|
1011
|
+
:cross_application_tracing => {
|
1012
|
+
:default => nil,
|
1013
|
+
:allow_nil => true,
|
1014
|
+
:public => false,
|
1015
|
+
:type => Boolean,
|
1016
|
+
:allowed_from_server => false,
|
1017
|
+
:deprecated => true,
|
1018
|
+
:description => 'Deprecated in favor of cross_application_tracer.enabled'
|
1019
|
+
},
|
1020
|
+
:encoding_key => {
|
1021
|
+
:default => '',
|
1022
|
+
:public => false,
|
1023
|
+
:type => String,
|
1024
|
+
:allowed_from_server => true,
|
1025
|
+
:description => 'Encoding key for cross-application tracing.'
|
1026
|
+
},
|
1027
|
+
:cross_process_id => {
|
1028
|
+
:default => '',
|
1029
|
+
:public => false,
|
1030
|
+
:type => String,
|
1031
|
+
:allowed_from_server => true,
|
1032
|
+
:description => 'Cross process ID for cross-application tracing.'
|
1033
|
+
},
|
1034
|
+
:'thread_profiler.enabled' => {
|
1035
|
+
:default => DefaultSource.thread_profiler_enabled,
|
1036
|
+
:public => true,
|
1037
|
+
:type => Boolean,
|
1038
|
+
:allowed_from_server => true,
|
1039
|
+
:description => 'Enable or disable the thread profiler.'
|
1040
|
+
},
|
1041
|
+
:'xray_session.enabled' => {
|
1042
|
+
:default => true,
|
1043
|
+
:public => true,
|
1044
|
+
:type => Boolean,
|
1045
|
+
:allowed_from_server => true,
|
1046
|
+
:description => 'Enable or disable <a href="/docs/apm/transactions-menu/x-ray-sessions/x-ray-sessions">X-Ray sessions</a>.'
|
1047
|
+
},
|
1048
|
+
:'xray_session.allow_traces' => {
|
1049
|
+
:default => true,
|
1050
|
+
:public => false,
|
1051
|
+
:type => Boolean,
|
1052
|
+
:allowed_from_server => true,
|
1053
|
+
:description => 'Enable or disable X-Ray sessions recording transaction traces.'
|
1054
|
+
},
|
1055
|
+
:'xray_session.allow_profiles' => {
|
1056
|
+
:default => true,
|
1057
|
+
:public => false,
|
1058
|
+
:type => Boolean,
|
1059
|
+
:allowed_from_server => true,
|
1060
|
+
:description => 'Enable or disable X-Ray sessions taking thread profiles.'
|
1061
|
+
},
|
1062
|
+
:'xray_session.max_samples' => {
|
1063
|
+
:default => 10,
|
1064
|
+
:public => false,
|
1065
|
+
:type => Fixnum,
|
1066
|
+
:allowed_from_server => true,
|
1067
|
+
:description => 'Maximum number of transaction traces to buffer for active X-Ray sessions'
|
1068
|
+
},
|
1069
|
+
:'xray_session.max_profile_overhead' => {
|
1070
|
+
:default => 0.05,
|
1071
|
+
:public => false,
|
1072
|
+
:type => Float,
|
1073
|
+
:allowed_from_server => true,
|
1074
|
+
:description => 'Maximum overhead percentage for thread profiling before agent reduces polling frequency'
|
1075
|
+
},
|
1076
|
+
:marshaller => {
|
1077
|
+
:default => DefaultSource.marshaller,
|
1078
|
+
:public => true,
|
1079
|
+
:type => String,
|
1080
|
+
:allowed_from_server => false,
|
1081
|
+
:description => 'Specifies a marshaller for transmitting data to the Mmtrix <a href="/docs/apm/mmtrix-apm/getting-started/glossary#collector">collector</a>) (e.g json, pruby).'
|
1082
|
+
},
|
1083
|
+
:'analytics_events.enabled' => {
|
1084
|
+
:default => true,
|
1085
|
+
:public => true,
|
1086
|
+
:type => Boolean,
|
1087
|
+
:allowed_from_server => true,
|
1088
|
+
:description => 'Enable or disable analytics event sampling.'
|
1089
|
+
},
|
1090
|
+
:'analytics_events.max_samples_stored' => {
|
1091
|
+
:default => 1200,
|
1092
|
+
:public => true,
|
1093
|
+
:type => Fixnum,
|
1094
|
+
:allowed_from_server => true,
|
1095
|
+
:description => 'Defines the maximum number of request events reported from a single harvest.'
|
1096
|
+
},
|
1097
|
+
:'analytics_events.capture_attributes' => {
|
1098
|
+
:default => true,
|
1099
|
+
:public => true,
|
1100
|
+
:type => Boolean,
|
1101
|
+
:deprecated => true,
|
1102
|
+
:allowed_from_server => false,
|
1103
|
+
:description => 'Use transaction_events.attributes.enabled instead.'
|
1104
|
+
},
|
1105
|
+
:restart_thread_in_children => {
|
1106
|
+
:default => true,
|
1107
|
+
:public => false,
|
1108
|
+
:type => Boolean,
|
1109
|
+
:allowed_from_server => false,
|
1110
|
+
:description => 'Controls whether to check on running a transaction whether to respawn the harvest thread.'
|
1111
|
+
},
|
1112
|
+
:normalize_json_string_encodings => {
|
1113
|
+
:default => DefaultSource.normalize_json_string_encodings,
|
1114
|
+
:public => false,
|
1115
|
+
:type => Boolean,
|
1116
|
+
:allowed_from_server => false,
|
1117
|
+
:description => 'Controls whether to normalize string encodings prior to serializing data for the collector to JSON.'
|
1118
|
+
},
|
1119
|
+
:disable_vm_sampler => {
|
1120
|
+
:default => false,
|
1121
|
+
:public => true,
|
1122
|
+
:type => Boolean,
|
1123
|
+
:dynamic_name => true,
|
1124
|
+
:allowed_from_server => false,
|
1125
|
+
:description => 'Defines whether the agent will <a href="/docs/agents/ruby-agent/features/ruby-vm-measurements">sample performance measurements from the Ruby VM</a>.'
|
1126
|
+
},
|
1127
|
+
:disable_memory_sampler => {
|
1128
|
+
:default => false,
|
1129
|
+
:public => true,
|
1130
|
+
:type => Boolean,
|
1131
|
+
:dynamic_name => true,
|
1132
|
+
:allowed_from_server => false,
|
1133
|
+
:description => 'Defines whether the agent will sample the memory usage of the host process.'
|
1134
|
+
},
|
1135
|
+
:disable_cpu_sampler => {
|
1136
|
+
:default => false,
|
1137
|
+
:public => true,
|
1138
|
+
:type => Boolean,
|
1139
|
+
:dynamic_name => true,
|
1140
|
+
:allowed_from_server => false,
|
1141
|
+
:description => 'Defines whether the agent will sample the CPU usage of the host process.'
|
1142
|
+
},
|
1143
|
+
:disable_delayed_job_sampler => {
|
1144
|
+
:default => false,
|
1145
|
+
:public => true,
|
1146
|
+
:type => Boolean,
|
1147
|
+
:dynamic_name => true,
|
1148
|
+
:allowed_from_server => false,
|
1149
|
+
:description => 'Defines whether the agent will measure the depth of Delayed Job queues.'
|
1150
|
+
},
|
1151
|
+
:disable_active_record_4 => {
|
1152
|
+
:default => false,
|
1153
|
+
:public => true,
|
1154
|
+
:type => Boolean,
|
1155
|
+
:dynamic_name => true,
|
1156
|
+
:allowed_from_server => false,
|
1157
|
+
:description => 'Defines whether the agent will install instrumentation for ActiveRecord 4.'
|
1158
|
+
},
|
1159
|
+
:disable_curb => {
|
1160
|
+
:default => false,
|
1161
|
+
:public => true,
|
1162
|
+
:type => Boolean,
|
1163
|
+
:dynamic_name => true,
|
1164
|
+
:allowed_from_server => false,
|
1165
|
+
:description => 'Defines whether the agent will install instrumentation for the curb gem.'
|
1166
|
+
},
|
1167
|
+
:disable_excon => {
|
1168
|
+
:default => false,
|
1169
|
+
:public => true,
|
1170
|
+
:type => Boolean,
|
1171
|
+
:dynamic_name => true,
|
1172
|
+
:allowed_from_server => false,
|
1173
|
+
:description => 'Defines whether the agent will install instrumentation for the excon gem.'
|
1174
|
+
},
|
1175
|
+
:disable_httpclient => {
|
1176
|
+
:default => false,
|
1177
|
+
:public => true,
|
1178
|
+
:type => Boolean,
|
1179
|
+
:dynamic_name => true,
|
1180
|
+
:allowed_from_server => false,
|
1181
|
+
:description => 'Defines whether the agent will install instrumentation for the httpclient gem.'
|
1182
|
+
},
|
1183
|
+
:disable_net_http => {
|
1184
|
+
:default => false,
|
1185
|
+
:public => true,
|
1186
|
+
:type => Boolean,
|
1187
|
+
:dynamic_name => true,
|
1188
|
+
:allowed_from_server => false,
|
1189
|
+
:description => 'Defines whether the agent will install instrumentation for Net::HTTP.'
|
1190
|
+
},
|
1191
|
+
:disable_rack => {
|
1192
|
+
:default => false,
|
1193
|
+
:public => true,
|
1194
|
+
:type => Boolean,
|
1195
|
+
:dynamic_name => true,
|
1196
|
+
:allowed_from_server => false,
|
1197
|
+
:description => 'Defines whether the agent will hook into Rack::Builder\'s <code>to_app</code> method to find gems to instrument during application startup.'
|
1198
|
+
},
|
1199
|
+
:disable_rack_urlmap => {
|
1200
|
+
:default => false,
|
1201
|
+
:public => true,
|
1202
|
+
:type => Boolean,
|
1203
|
+
:dynamic_name => true,
|
1204
|
+
:allowed_from_server => false,
|
1205
|
+
:description => 'Defines whether the agent will hook into Rack::URLMap to install middleware tracing.'
|
1206
|
+
},
|
1207
|
+
:disable_rubyprof => {
|
1208
|
+
:default => false,
|
1209
|
+
:public => true,
|
1210
|
+
:type => Boolean,
|
1211
|
+
:dynamic_name => true,
|
1212
|
+
:allowed_from_server => false,
|
1213
|
+
:description => 'Defines whether the agent will use RubyProf in developer mode (if RubyProf is installed).'
|
1214
|
+
},
|
1215
|
+
:disable_typhoeus => {
|
1216
|
+
:default => false,
|
1217
|
+
:public => true,
|
1218
|
+
:type => Boolean,
|
1219
|
+
:dynamic_name => true,
|
1220
|
+
:allowed_from_server => false,
|
1221
|
+
:description => 'Defines whether the agent will install instrumentation for the typhoeus gem.'
|
1222
|
+
},
|
1223
|
+
:disable_middleware_instrumentation => {
|
1224
|
+
:default => false,
|
1225
|
+
:public => true,
|
1226
|
+
:type => Boolean,
|
1227
|
+
:allowed_from_server => false,
|
1228
|
+
:description => 'Defines whether the agent will wrap third-party middlewares in instrumentation (regardless of whether they are installed via Rack::Builder or Rails).'
|
1229
|
+
},
|
1230
|
+
:disable_rails_middleware => {
|
1231
|
+
:default => false,
|
1232
|
+
:public => false,
|
1233
|
+
:type => Boolean,
|
1234
|
+
:allowed_from_server => false,
|
1235
|
+
:description => 'Internal name for controlling Rails 3+ middleware instrumentation'
|
1236
|
+
},
|
1237
|
+
:'heroku.use_dyno_names' => {
|
1238
|
+
:default => true,
|
1239
|
+
:public => true,
|
1240
|
+
:type => Boolean,
|
1241
|
+
:allowed_from_server => false,
|
1242
|
+
:description => 'Controls whether or not we use the heroku dyno name as the hostname.'
|
1243
|
+
},
|
1244
|
+
:'heroku.dyno_name_prefixes_to_shorten' => {
|
1245
|
+
:default => ['scheduler', 'run'],
|
1246
|
+
:public => true,
|
1247
|
+
:type => Array,
|
1248
|
+
:allowed_from_server => false,
|
1249
|
+
:transform => DefaultSource.method(:convert_to_list),
|
1250
|
+
:description => 'List of prefixes for heroku dyno names (such as "scheduler") to report as hostname without trailing dot and process ID.'
|
1251
|
+
},
|
1252
|
+
:labels => {
|
1253
|
+
:default => '',
|
1254
|
+
:public => true,
|
1255
|
+
:type => String,
|
1256
|
+
:allowed_from_server => false,
|
1257
|
+
:description => 'A dictionary of label names and values that will be applied to the data sent from this agent. May also be expressed as a semi-colon delimited string of colon-separated pairs (e.g. "Server:One;Data Center:Primary".'
|
1258
|
+
},
|
1259
|
+
:aggressive_keepalive => {
|
1260
|
+
:default => true,
|
1261
|
+
:public => false,
|
1262
|
+
:type => Boolean,
|
1263
|
+
:allowed_from_server => true,
|
1264
|
+
:description => 'If true, attempt to keep the TCP connection to the collector alive between harvests.'
|
1265
|
+
},
|
1266
|
+
:keep_alive_timeout => {
|
1267
|
+
:default => 60,
|
1268
|
+
:public => false,
|
1269
|
+
:type => Fixnum,
|
1270
|
+
:allowed_from_server => true,
|
1271
|
+
:description => 'Timeout for keep alive on TCP connection to collector if supported by Ruby version. Only used in conjunction when aggressive_keepalive is enabled.'
|
1272
|
+
},
|
1273
|
+
:ca_bundle_path => {
|
1274
|
+
:default => nil,
|
1275
|
+
:allow_nil => true,
|
1276
|
+
:public => true,
|
1277
|
+
:type => String,
|
1278
|
+
:allowed_from_server => false,
|
1279
|
+
:description => "Manual override for the path to your local CA bundle. This CA bundle will be used to validate the SSL certificate presented by Mmtrix's data collection service."
|
1280
|
+
},
|
1281
|
+
:'rules.ignore_url_regexes' => {
|
1282
|
+
:default => [],
|
1283
|
+
:public => true,
|
1284
|
+
:type => Array,
|
1285
|
+
:allowed_from_server => true,
|
1286
|
+
:transform => DefaultSource.method(:convert_to_regexp_list),
|
1287
|
+
:description => 'A list of patterns that will cause a transaction to be ignored if any of them match the URI.'
|
1288
|
+
},
|
1289
|
+
:'synthetics.traces_limit' => {
|
1290
|
+
:default => 20,
|
1291
|
+
:public => false,
|
1292
|
+
:type => Fixnum,
|
1293
|
+
:allowed_from_server => true,
|
1294
|
+
:description => 'Maximum number of synthetics transaction traces to hold for a given harvest'
|
1295
|
+
},
|
1296
|
+
:'synthetics.events_limit' => {
|
1297
|
+
:default => 200,
|
1298
|
+
:public => false,
|
1299
|
+
:type => Fixnum,
|
1300
|
+
:allowed_from_server => true,
|
1301
|
+
:description => 'Maximum number of synthetics transaction events to hold for a given harvest'
|
1302
|
+
},
|
1303
|
+
:'custom_insights_events.enabled' => {
|
1304
|
+
:default => true,
|
1305
|
+
:public => true,
|
1306
|
+
:type => Boolean,
|
1307
|
+
:allowed_from_server => true,
|
1308
|
+
:description => 'Enable or disable custom Insights event recording.'
|
1309
|
+
},
|
1310
|
+
:'custom_insights_events.max_samples_stored' => {
|
1311
|
+
:default => 1000,
|
1312
|
+
:public => true,
|
1313
|
+
:type => Fixnum,
|
1314
|
+
:allowed_from_server => true,
|
1315
|
+
:description => 'Maximum number of custom Insights events buffered in memory at a time.',
|
1316
|
+
:dynamic_name => true
|
1317
|
+
},
|
1318
|
+
:disable_grape_instrumentation => {
|
1319
|
+
:default => false,
|
1320
|
+
:public => true,
|
1321
|
+
:type => Boolean,
|
1322
|
+
:allowed_from_server => false,
|
1323
|
+
:description => 'Disables installation of Grape instrumentation.'
|
1324
|
+
},
|
1325
|
+
:disable_grape => {
|
1326
|
+
:default => false,
|
1327
|
+
:public => true,
|
1328
|
+
:type => Boolean,
|
1329
|
+
:allowed_from_server => false,
|
1330
|
+
:description => 'Disables installation of Grape instrumentation.'
|
1331
|
+
},
|
1332
|
+
:'attributes.enabled' => {
|
1333
|
+
:default => true,
|
1334
|
+
:public => false,
|
1335
|
+
:type => Boolean,
|
1336
|
+
:allowed_from_server => false,
|
1337
|
+
:description => 'Enable or disable capture of attributes for all destinations.'
|
1338
|
+
},
|
1339
|
+
:'transaction_tracer.attributes.enabled' => {
|
1340
|
+
:default => value_of(:'transaction_tracer.capture_attributes'),
|
1341
|
+
:public => false,
|
1342
|
+
:type => Boolean,
|
1343
|
+
:allowed_from_server => false,
|
1344
|
+
:description => 'Enable or disable capture of attributes for transaction traces.'
|
1345
|
+
},
|
1346
|
+
:'transaction_events.attributes.enabled' => {
|
1347
|
+
:default => value_of(:'analytics_events.capture_attributes'),
|
1348
|
+
:public => false,
|
1349
|
+
:type => Boolean,
|
1350
|
+
:allowed_from_server => false,
|
1351
|
+
:description => 'Enable or disable capture of attributes for transaction events.'
|
1352
|
+
},
|
1353
|
+
:'error_collector.attributes.enabled' => {
|
1354
|
+
:default => value_of(:'error_collector.capture_attributes'),
|
1355
|
+
:public => false,
|
1356
|
+
:type => Boolean,
|
1357
|
+
:allowed_from_server => false,
|
1358
|
+
:description => 'Enable or disable capture of attributes for error collection.'
|
1359
|
+
},
|
1360
|
+
:'browser_monitoring.attributes.enabled' => {
|
1361
|
+
:default => value_of(:'browser_monitoring.capture_attributes'),
|
1362
|
+
:public => false,
|
1363
|
+
:type => Boolean,
|
1364
|
+
:allowed_from_server => false,
|
1365
|
+
:description => 'Enable or disable capture of attributes for browser monitoring.'
|
1366
|
+
},
|
1367
|
+
:'attributes.exclude' => {
|
1368
|
+
:default => [],
|
1369
|
+
:public => false,
|
1370
|
+
:type => Array,
|
1371
|
+
:allowed_from_server => false,
|
1372
|
+
:transform => DefaultSource.method(:convert_to_list),
|
1373
|
+
:description => 'Prefix of attributes to exclude from all destinations. Allows * as wildcard at end.'
|
1374
|
+
},
|
1375
|
+
:'transaction_tracer.attributes.exclude' => {
|
1376
|
+
:default => [],
|
1377
|
+
:public => false,
|
1378
|
+
:type => Array,
|
1379
|
+
:allowed_from_server => false,
|
1380
|
+
:transform => DefaultSource.method(:convert_to_list),
|
1381
|
+
:description => 'Prefix of attributes to exclude from transaction traces. Allows * as wildcard at end.'
|
1382
|
+
},
|
1383
|
+
:'transaction_events.attributes.exclude' => {
|
1384
|
+
:default => [],
|
1385
|
+
:public => false,
|
1386
|
+
:type => Array,
|
1387
|
+
:allowed_from_server => false,
|
1388
|
+
:transform => DefaultSource.method(:convert_to_list),
|
1389
|
+
:description => 'Prefix of attributes to exclude from transaction events. Allows * as wildcard at end.'
|
1390
|
+
},
|
1391
|
+
:'error_collector.attributes.exclude' => {
|
1392
|
+
:default => [],
|
1393
|
+
:public => false,
|
1394
|
+
:type => Array,
|
1395
|
+
:allowed_from_server => false,
|
1396
|
+
:transform => DefaultSource.method(:convert_to_list),
|
1397
|
+
:description => 'Prefix of attributes to exclude from error collection. Allows * as wildcard at end.'
|
1398
|
+
},
|
1399
|
+
:'browser_monitoring.attributes.exclude' => {
|
1400
|
+
:default => [],
|
1401
|
+
:public => false,
|
1402
|
+
:type => Array,
|
1403
|
+
:allowed_from_server => false,
|
1404
|
+
:transform => DefaultSource.method(:convert_to_list),
|
1405
|
+
:description => 'Prefix of attributes to exclude from browser monitoring. Allows * as wildcard at end.'
|
1406
|
+
},
|
1407
|
+
:'attributes.include' => {
|
1408
|
+
:default => [],
|
1409
|
+
:public => false,
|
1410
|
+
:type => Array,
|
1411
|
+
:allowed_from_server => false,
|
1412
|
+
:transform => DefaultSource.method(:convert_to_list),
|
1413
|
+
:description => 'Prefix of attributes to include in all destinations. Allows * as wildcard at end.'
|
1414
|
+
},
|
1415
|
+
:'transaction_tracer.attributes.include' => {
|
1416
|
+
:default => [],
|
1417
|
+
:public => false,
|
1418
|
+
:type => Array,
|
1419
|
+
:allowed_from_server => false,
|
1420
|
+
:transform => DefaultSource.method(:convert_to_list),
|
1421
|
+
:description => 'Prefix of attributes to include in transaction traces. Allows * as wildcard at end.'
|
1422
|
+
},
|
1423
|
+
:'transaction_events.attributes.include' => {
|
1424
|
+
:default => [],
|
1425
|
+
:public => false,
|
1426
|
+
:type => Array,
|
1427
|
+
:allowed_from_server => false,
|
1428
|
+
:transform => DefaultSource.method(:convert_to_list),
|
1429
|
+
:description => 'Prefix of attributes to include in transaction events. Allows * as wildcard at end.'
|
1430
|
+
},
|
1431
|
+
:'error_collector.attributes.include' => {
|
1432
|
+
:default => [],
|
1433
|
+
:public => false,
|
1434
|
+
:type => Array,
|
1435
|
+
:allowed_from_server => false,
|
1436
|
+
:transform => DefaultSource.method(:convert_to_list),
|
1437
|
+
:description => 'Prefix of attributes to include in error collection. Allows * as wildcard at end.'
|
1438
|
+
},
|
1439
|
+
:'browser_monitoring.attributes.include' => {
|
1440
|
+
:default => [],
|
1441
|
+
:public => false,
|
1442
|
+
:type => Array,
|
1443
|
+
:allowed_from_server => false,
|
1444
|
+
:transform => DefaultSource.method(:convert_to_list),
|
1445
|
+
:description => 'Prefix of attributes to include in browser monitoring. Allows * as wildcard at end.'
|
1446
|
+
},
|
1447
|
+
:'utilization.detect_aws' => {
|
1448
|
+
:default => true,
|
1449
|
+
:public => true,
|
1450
|
+
:type => Boolean,
|
1451
|
+
:allowed_from_server => false,
|
1452
|
+
:description => 'Enable or disable automatic AWS detection.'
|
1453
|
+
},
|
1454
|
+
:'utilization.detect_docker' => {
|
1455
|
+
:default => true,
|
1456
|
+
:public => true,
|
1457
|
+
:type => Boolean,
|
1458
|
+
:allowed_from_server => false,
|
1459
|
+
:description => 'Enable or disable automatic Docker detection.'
|
1460
|
+
},
|
1461
|
+
:'disable_utilization' => {
|
1462
|
+
:default => false,
|
1463
|
+
:public => false,
|
1464
|
+
:type => Boolean,
|
1465
|
+
:allowed_from_server => false,
|
1466
|
+
:description => 'Disable sending utilization data as part of connect settings hash.'
|
1467
|
+
}
|
1468
|
+
}.freeze
|
1469
|
+
end
|
1470
|
+
end
|
1471
|
+
end
|