newrelic_rpm 3.12.0.288 → 9.10.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.build_ignore +26 -0
- data/CHANGELOG.md +5681 -0
- data/CONTRIBUTING.md +194 -0
- data/Gemfile +5 -2
- data/LICENSE +201 -150
- data/README.md +87 -143
- data/Rakefile +39 -55
- data/THIRD_PARTY_NOTICES.md +28 -0
- data/Thorfile +5 -0
- data/bin/newrelic +4 -9
- data/bin/newrelic_rpm +15 -0
- data/bin/nrdebug +86 -63
- data/init.rb +7 -9
- data/install.rb +3 -3
- data/lib/boot/strap.rb +101 -0
- data/lib/new_relic/agent/adaptive_sampler.rb +108 -0
- data/lib/new_relic/agent/agent.rb +158 -1000
- data/lib/new_relic/agent/agent_helpers/connect.rb +224 -0
- data/lib/new_relic/agent/agent_helpers/harvest.rb +153 -0
- data/lib/new_relic/agent/agent_helpers/shutdown.rb +72 -0
- data/lib/new_relic/agent/agent_helpers/special_startup.rb +74 -0
- data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +175 -0
- data/lib/new_relic/agent/agent_helpers/startup.rb +203 -0
- data/lib/new_relic/agent/agent_helpers/transmit.rb +76 -0
- data/lib/new_relic/agent/agent_logger.rb +39 -54
- data/lib/new_relic/agent/attribute_filter.rb +111 -35
- data/lib/new_relic/agent/attribute_pre_filtering.rb +109 -0
- data/lib/new_relic/agent/attribute_processing.rb +12 -12
- data/lib/new_relic/agent/attributes.rb +153 -0
- data/lib/new_relic/agent/audit_logger.rb +23 -7
- data/lib/new_relic/agent/autostart.rb +36 -47
- data/lib/new_relic/agent/aws.rb +62 -0
- data/lib/new_relic/agent/chained_call.rb +2 -2
- data/lib/new_relic/agent/commands/agent_command.rb +5 -5
- data/lib/new_relic/agent/commands/agent_command_router.rb +18 -35
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +20 -19
- data/lib/new_relic/agent/configuration/default_source.rb +1903 -823
- data/lib/new_relic/agent/configuration/dotted_hash.rb +7 -8
- data/lib/new_relic/agent/configuration/environment_source.rb +26 -14
- data/lib/new_relic/agent/configuration/event_harvest_config.rb +68 -0
- data/lib/new_relic/agent/configuration/high_security_source.rb +15 -15
- data/lib/new_relic/agent/configuration/manager.rb +143 -114
- data/lib/new_relic/agent/configuration/manual_source.rb +2 -2
- data/lib/new_relic/agent/configuration/mask_defaults.rb +4 -4
- data/lib/new_relic/agent/configuration/security_policy_source.rb +246 -0
- data/lib/new_relic/agent/configuration/server_source.rb +70 -27
- data/lib/new_relic/agent/configuration/yaml_source.rb +85 -35
- data/lib/new_relic/agent/configuration.rb +2 -2
- data/lib/new_relic/agent/connect/request_builder.rb +61 -0
- data/lib/new_relic/agent/connect/response_handler.rb +58 -0
- data/lib/new_relic/agent/custom_event_aggregator.rb +68 -56
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +138 -0
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +73 -49
- data/lib/new_relic/agent/database/obfuscator.rb +7 -25
- data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +5 -8
- data/lib/new_relic/agent/database.rb +166 -202
- data/lib/new_relic/agent/database_adapter.rb +35 -0
- data/lib/new_relic/agent/datastores/metric_helper.rb +62 -22
- data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +50 -0
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +21 -31
- data/lib/new_relic/agent/datastores/mongo.rb +8 -12
- data/lib/new_relic/agent/datastores/nosql_obfuscator.rb +41 -0
- data/lib/new_relic/agent/datastores/redis.rb +125 -0
- data/lib/new_relic/agent/datastores.rb +45 -30
- data/lib/new_relic/agent/deprecator.rb +2 -2
- data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +44 -0
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +253 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +84 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +75 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +159 -0
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +38 -0
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +245 -0
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +127 -0
- data/lib/new_relic/agent/distributed_tracing.rb +148 -0
- data/lib/new_relic/agent/encoding_normalizer.rb +9 -24
- data/lib/new_relic/agent/error_collector.rb +200 -142
- data/lib/new_relic/agent/error_event_aggregator.rb +41 -0
- data/lib/new_relic/agent/error_filter.rb +174 -0
- data/lib/new_relic/agent/error_trace_aggregator.rb +102 -0
- data/lib/new_relic/agent/event_aggregator.rb +150 -0
- data/lib/new_relic/agent/event_buffer.rb +15 -9
- data/lib/new_relic/agent/event_listener.rb +2 -3
- data/lib/new_relic/agent/event_loop.rb +28 -26
- data/lib/new_relic/agent/external.rb +110 -0
- data/lib/new_relic/agent/guid_generator.rb +30 -0
- data/lib/new_relic/agent/harvester.rb +7 -10
- data/lib/new_relic/agent/heap.rb +139 -0
- data/lib/new_relic/agent/hostname.rb +44 -5
- data/lib/new_relic/agent/http_clients/abstract.rb +73 -0
- data/lib/new_relic/agent/http_clients/async_http_wrappers.rb +80 -0
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +36 -24
- data/lib/new_relic/agent/http_clients/ethon_wrappers.rb +109 -0
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +49 -23
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +64 -0
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +29 -22
- data/lib/new_relic/agent/http_clients/httpx_wrappers.rb +91 -0
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +39 -11
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +30 -20
- data/lib/new_relic/agent/http_clients/uri_util.rb +23 -19
- data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +47 -0
- data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +42 -0
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +61 -74
- data/lib/new_relic/agent/instrumentation/action_dispatch.rb +31 -0
- data/lib/new_relic/agent/instrumentation/action_dispatch_subscriber.rb +64 -0
- data/lib/new_relic/agent/instrumentation/action_mailbox.rb +30 -0
- data/lib/new_relic/agent/instrumentation/action_mailbox_subscriber.rb +33 -0
- data/lib/new_relic/agent/instrumentation/action_mailer.rb +30 -0
- data/lib/new_relic/agent/instrumentation/action_mailer_subscriber.rb +85 -0
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +82 -66
- data/lib/new_relic/agent/instrumentation/active_job.rb +52 -20
- data/lib/new_relic/agent/instrumentation/active_job_subscriber.rb +41 -0
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +21 -7
- data/lib/new_relic/agent/instrumentation/active_record.rb +112 -42
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +217 -56
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +156 -0
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +98 -0
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +104 -59
- data/lib/new_relic/agent/instrumentation/active_storage.rb +27 -0
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +38 -0
- data/lib/new_relic/agent/instrumentation/active_support.rb +27 -0
- data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/chain.rb +69 -0
- data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/instrumentation.rb +17 -0
- data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/prepend.rb +37 -0
- data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger.rb +23 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger/chain.rb +23 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +24 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger/prepend.rb +12 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger.rb +26 -0
- data/lib/new_relic/agent/instrumentation/active_support_subscriber.rb +41 -0
- data/lib/new_relic/agent/instrumentation/async_http/chain.rb +23 -0
- data/lib/new_relic/agent/instrumentation/async_http/instrumentation.rb +37 -0
- data/lib/new_relic/agent/instrumentation/async_http/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/async_http.rb +28 -0
- data/lib/new_relic/agent/instrumentation/bunny/chain.rb +45 -0
- data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +159 -0
- data/lib/new_relic/agent/instrumentation/bunny/prepend.rb +35 -0
- data/lib/new_relic/agent/instrumentation/bunny.rb +32 -0
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/chain.rb +36 -0
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/instrumentation.rb +20 -0
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/prepend.rb +27 -0
- data/lib/new_relic/agent/instrumentation/concurrent_ruby.rb +32 -0
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +106 -74
- data/lib/new_relic/agent/instrumentation/curb/chain.rb +91 -0
- data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +225 -0
- data/lib/new_relic/agent/instrumentation/curb/prepend.rb +61 -0
- data/lib/new_relic/agent/instrumentation/curb.rb +16 -175
- data/lib/new_relic/agent/instrumentation/custom_events.rb +12 -0
- data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +38 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +36 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +51 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/prepend.rb +33 -0
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +95 -36
- data/lib/new_relic/agent/instrumentation/dynamodb/chain.rb +27 -0
- data/lib/new_relic/agent/instrumentation/dynamodb/instrumentation.rb +64 -0
- data/lib/new_relic/agent/instrumentation/dynamodb/prepend.rb +19 -0
- data/lib/new_relic/agent/instrumentation/dynamodb.rb +25 -0
- data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +29 -0
- data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +120 -0
- data/lib/new_relic/agent/instrumentation/elasticsearch/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/elasticsearch.rb +31 -0
- data/lib/new_relic/agent/instrumentation/ethon/chain.rb +39 -0
- data/lib/new_relic/agent/instrumentation/ethon/instrumentation.rb +105 -0
- data/lib/new_relic/agent/instrumentation/ethon/prepend.rb +35 -0
- data/lib/new_relic/agent/instrumentation/ethon.rb +39 -0
- data/lib/new_relic/agent/instrumentation/excon/middleware.rb +29 -16
- data/lib/new_relic/agent/instrumentation/excon.rb +29 -31
- data/lib/new_relic/agent/instrumentation/fiber/chain.rb +27 -0
- data/lib/new_relic/agent/instrumentation/fiber/instrumentation.rb +20 -0
- data/lib/new_relic/agent/instrumentation/fiber/prepend.rb +25 -0
- data/lib/new_relic/agent/instrumentation/fiber.rb +25 -0
- data/lib/new_relic/agent/instrumentation/grape/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +104 -0
- data/lib/new_relic/agent/instrumentation/grape/prepend.rb +17 -0
- data/lib/new_relic/agent/instrumentation/grape.rb +18 -85
- data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +97 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +93 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +111 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +30 -0
- data/lib/new_relic/agent/instrumentation/grpc/helper.rb +32 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/chain.rb +69 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +138 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/rpc_desc_prepend.rb +35 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/rpc_server_prepend.rb +26 -0
- data/lib/new_relic/agent/instrumentation/grpc_client.rb +23 -0
- data/lib/new_relic/agent/instrumentation/grpc_server.rb +25 -0
- data/lib/new_relic/agent/instrumentation/httpclient/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +41 -0
- data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/httpclient.rb +14 -22
- data/lib/new_relic/agent/instrumentation/httprb/chain.rb +22 -0
- data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +34 -0
- data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/httprb.rb +29 -0
- data/lib/new_relic/agent/instrumentation/httpx/chain.rb +20 -0
- data/lib/new_relic/agent/instrumentation/httpx/instrumentation.rb +51 -0
- data/lib/new_relic/agent/instrumentation/httpx/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/httpx.rb +27 -0
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +6 -7
- data/lib/new_relic/agent/instrumentation/logger/chain.rb +21 -0
- data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +69 -0
- data/lib/new_relic/agent/instrumentation/logger/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/logger.rb +26 -0
- data/lib/new_relic/agent/instrumentation/memcache/chain.rb +15 -0
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +97 -0
- data/lib/new_relic/agent/instrumentation/memcache/helper.rb +59 -0
- data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +99 -0
- data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +103 -0
- data/lib/new_relic/agent/instrumentation/memcache.rb +53 -109
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +17 -16
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +48 -14
- data/lib/new_relic/agent/instrumentation/mongo.rb +14 -110
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +140 -0
- data/lib/new_relic/agent/instrumentation/net_http/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +50 -0
- data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +21 -0
- data/lib/new_relic/agent/instrumentation/net_http.rb +44 -0
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +146 -0
- data/lib/new_relic/agent/instrumentation/padrino/chain.rb +38 -0
- data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +32 -0
- data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +20 -0
- data/lib/new_relic/agent/instrumentation/padrino.rb +21 -21
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +7 -7
- data/lib/new_relic/agent/instrumentation/queue_time.rb +19 -22
- data/lib/new_relic/agent/instrumentation/rack/chain.rb +66 -0
- data/lib/new_relic/agent/instrumentation/rack/helpers.rb +33 -0
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +81 -0
- data/lib/new_relic/agent/instrumentation/rack/prepend.rb +43 -0
- data/lib/new_relic/agent/instrumentation/rack.rb +49 -152
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +28 -55
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +5 -5
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +36 -0
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +46 -0
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb +30 -0
- data/lib/new_relic/agent/instrumentation/rails_notifications/custom_events.rb +30 -0
- data/lib/new_relic/agent/instrumentation/rake/chain.rb +20 -0
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +146 -0
- data/lib/new_relic/agent/instrumentation/rake/prepend.rb +14 -0
- data/lib/new_relic/agent/instrumentation/rake.rb +31 -0
- data/lib/new_relic/agent/instrumentation/redis/chain.rb +45 -0
- data/lib/new_relic/agent/instrumentation/redis/constants.rb +17 -0
- data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +98 -0
- data/lib/new_relic/agent/instrumentation/redis/middleware.rb +16 -0
- data/lib/new_relic/agent/instrumentation/redis/prepend.rb +29 -0
- data/lib/new_relic/agent/instrumentation/redis.rb +44 -0
- data/lib/new_relic/agent/instrumentation/resque/chain.rb +21 -0
- data/lib/new_relic/agent/instrumentation/resque/helper.rb +19 -0
- data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +38 -0
- data/lib/new_relic/agent/instrumentation/resque/prepend.rb +15 -0
- data/lib/new_relic/agent/instrumentation/resque.rb +38 -78
- data/lib/new_relic/agent/instrumentation/roda/chain.rb +43 -0
- data/lib/new_relic/agent/instrumentation/roda/ignorer.rb +45 -0
- data/lib/new_relic/agent/instrumentation/roda/instrumentation.rb +68 -0
- data/lib/new_relic/agent/instrumentation/roda/prepend.rb +24 -0
- data/lib/new_relic/agent/instrumentation/roda/roda_transaction_namer.rb +29 -0
- data/lib/new_relic/agent/instrumentation/roda.rb +36 -0
- data/lib/new_relic/agent/instrumentation/ruby_openai/chain.rb +36 -0
- data/lib/new_relic/agent/instrumentation/ruby_openai/instrumentation.rb +196 -0
- data/lib/new_relic/agent/instrumentation/ruby_openai/prepend.rb +20 -0
- data/lib/new_relic/agent/instrumentation/ruby_openai.rb +35 -0
- data/lib/new_relic/agent/instrumentation/sequel.rb +17 -23
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +13 -13
- data/lib/new_relic/agent/instrumentation/sidekiq/client.rb +24 -0
- data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +30 -0
- data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +60 -0
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +37 -45
- data/lib/new_relic/agent/instrumentation/sinatra/chain.rb +55 -0
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +31 -37
- data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +130 -0
- data/lib/new_relic/agent/instrumentation/sinatra/prepend.rb +33 -0
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +13 -7
- data/lib/new_relic/agent/instrumentation/sinatra.rb +35 -165
- data/lib/new_relic/agent/instrumentation/stripe.rb +28 -0
- data/lib/new_relic/agent/instrumentation/stripe_subscriber.rb +77 -0
- data/lib/new_relic/agent/instrumentation/thread/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +24 -0
- data/lib/new_relic/agent/instrumentation/thread/prepend.rb +22 -0
- data/lib/new_relic/agent/instrumentation/thread.rb +20 -0
- data/lib/new_relic/agent/instrumentation/tilt/chain.rb +24 -0
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +46 -0
- data/lib/new_relic/agent/instrumentation/tilt/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/tilt.rb +25 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +22 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +84 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +14 -0
- data/lib/new_relic/agent/instrumentation/typhoeus.rb +14 -47
- data/lib/new_relic/agent/instrumentation/view_component/chain.rb +21 -0
- data/lib/new_relic/agent/instrumentation/view_component/instrumentation.rb +39 -0
- data/lib/new_relic/agent/instrumentation/view_component/prepend.rb +13 -0
- data/lib/new_relic/agent/instrumentation/view_component.rb +26 -0
- data/lib/new_relic/agent/instrumentation.rb +2 -2
- data/lib/new_relic/agent/internal_agent_error.rb +3 -3
- data/lib/new_relic/agent/javascript_instrumentor.rb +72 -58
- data/lib/new_relic/agent/linking_metadata.rb +44 -0
- data/lib/new_relic/agent/llm/chat_completion_message.rb +25 -0
- data/lib/new_relic/agent/llm/chat_completion_summary.rb +66 -0
- data/lib/new_relic/agent/llm/embedding.rb +60 -0
- data/lib/new_relic/agent/llm/llm_event.rb +95 -0
- data/lib/new_relic/agent/llm/response_headers.rb +80 -0
- data/lib/new_relic/agent/llm.rb +49 -0
- data/lib/new_relic/agent/local_log_decorator.rb +37 -0
- data/lib/new_relic/agent/log_event_aggregator.rb +267 -0
- data/lib/new_relic/agent/log_event_attributes.rb +115 -0
- data/lib/new_relic/agent/log_once.rb +39 -0
- data/lib/new_relic/agent/log_priority.rb +20 -0
- data/lib/new_relic/agent/logging.rb +182 -0
- data/lib/new_relic/agent/memory_logger.rb +11 -4
- data/lib/new_relic/agent/messaging.rb +358 -0
- data/lib/new_relic/agent/method_tracer.rb +173 -195
- data/lib/new_relic/agent/method_tracer_helpers.rb +109 -66
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +117 -0
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +28 -0
- data/lib/new_relic/agent/monitors/inbound_request_monitor.rb +43 -0
- data/lib/new_relic/agent/monitors/synthetics_monitor.rb +64 -0
- data/lib/new_relic/agent/monitors.rb +26 -0
- data/lib/new_relic/agent/new_relic_service/encoders.rb +29 -13
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +18 -24
- data/lib/new_relic/agent/new_relic_service/marshaller.rb +8 -29
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +61 -0
- data/lib/new_relic/agent/new_relic_service.rb +406 -226
- data/lib/new_relic/agent/noticeable_error.rb +19 -0
- data/lib/new_relic/agent/null_logger.rb +8 -4
- data/lib/new_relic/agent/obfuscator.rb +8 -12
- data/lib/new_relic/agent/parameter_filtering.rb +41 -14
- data/lib/new_relic/agent/payload_metric_mapping.rb +57 -0
- data/lib/new_relic/agent/pipe_channel_manager.rb +37 -27
- data/lib/new_relic/agent/pipe_service.rb +23 -16
- data/lib/new_relic/agent/prepend_supportability.rb +16 -0
- data/lib/new_relic/agent/priority_sampled_buffer.rb +92 -0
- data/lib/new_relic/agent/rules_engine/replacement_rule.rb +12 -12
- data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +32 -12
- data/lib/new_relic/agent/rules_engine.rb +30 -7
- data/lib/new_relic/agent/sampler.rb +13 -13
- data/lib/new_relic/agent/sampler_collection.rb +5 -6
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +13 -10
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +22 -19
- data/lib/new_relic/agent/samplers/memory_sampler.rb +41 -25
- data/lib/new_relic/agent/samplers/object_sampler.rb +3 -3
- data/lib/new_relic/agent/samplers/vm_sampler.rb +22 -20
- data/lib/new_relic/agent/serverless_handler.rb +171 -0
- data/lib/new_relic/agent/span_event_aggregator.rb +49 -0
- data/lib/new_relic/agent/span_event_primitive.rb +222 -0
- data/lib/new_relic/agent/sql_sampler.rb +83 -47
- data/lib/new_relic/agent/stats.rb +80 -57
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +12 -13
- data/lib/new_relic/agent/stats_engine/stats_hash.rb +97 -40
- data/lib/new_relic/agent/stats_engine.rb +175 -9
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +44 -0
- data/lib/new_relic/agent/system_info.rb +203 -61
- data/lib/new_relic/agent/threading/agent_thread.rb +20 -15
- data/lib/new_relic/agent/threading/backtrace_node.rb +13 -14
- data/lib/new_relic/agent/threading/backtrace_service.rb +23 -26
- data/lib/new_relic/agent/threading/thread_profile.rb +32 -46
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +19 -0
- data/lib/new_relic/agent/tracer.rb +514 -0
- data/lib/new_relic/agent/transaction/abstract_segment.rb +388 -0
- data/lib/new_relic/agent/transaction/datastore_segment.rb +155 -0
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +185 -0
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +171 -0
- data/lib/new_relic/agent/transaction/external_request_segment.rb +265 -0
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +98 -0
- data/lib/new_relic/agent/transaction/request_attributes.rb +158 -0
- data/lib/new_relic/agent/transaction/segment.rb +102 -0
- data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +2 -4
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +3 -3
- data/lib/new_relic/agent/transaction/trace.rb +43 -37
- data/lib/new_relic/agent/transaction/trace_builder.rb +56 -0
- data/lib/new_relic/agent/transaction/trace_context.rb +168 -0
- data/lib/new_relic/agent/transaction/trace_node.rb +57 -66
- data/lib/new_relic/agent/transaction/tracing.rb +87 -0
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +7 -7
- data/lib/new_relic/agent/transaction.rb +438 -396
- data/lib/new_relic/agent/transaction_error_primitive.rb +105 -0
- data/lib/new_relic/agent/transaction_event_aggregator.rb +43 -260
- data/lib/new_relic/agent/transaction_event_primitive.rb +127 -0
- data/lib/new_relic/agent/transaction_event_recorder.rb +49 -0
- data/lib/new_relic/agent/transaction_metrics.rb +19 -10
- data/lib/new_relic/agent/transaction_sampler.rb +22 -219
- data/lib/new_relic/agent/transaction_time_aggregator.rb +160 -0
- data/lib/new_relic/agent/utilization/aws.rb +48 -0
- data/lib/new_relic/agent/utilization/azure.rb +17 -0
- data/lib/new_relic/agent/utilization/gcp.rb +33 -0
- data/lib/new_relic/agent/utilization/pcf.rb +33 -0
- data/lib/new_relic/agent/utilization/vendor.rb +157 -0
- data/lib/new_relic/agent/utilization_data.rb +124 -37
- data/lib/new_relic/agent/vm/c_ruby_vm.rb +99 -0
- data/lib/new_relic/agent/vm/jruby_vm.rb +3 -5
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +4 -4
- data/lib/new_relic/agent/vm/snapshot.rb +6 -6
- data/lib/new_relic/agent/vm.rb +5 -8
- data/lib/new_relic/agent/worker_loop.rb +16 -18
- data/lib/new_relic/agent.rb +476 -210
- data/lib/new_relic/base64.rb +25 -0
- data/lib/new_relic/cli/command.rb +27 -26
- data/lib/new_relic/cli/commands/deployments.rb +108 -50
- data/lib/new_relic/cli/commands/install.rb +35 -36
- data/lib/new_relic/coerce.rb +43 -16
- data/lib/new_relic/collection_helper.rb +49 -67
- data/lib/new_relic/constants.rb +45 -0
- data/lib/new_relic/control/class_methods.rb +7 -7
- data/lib/new_relic/control/frameworks/external.rb +3 -3
- data/lib/new_relic/control/frameworks/rails.rb +59 -49
- data/lib/new_relic/control/frameworks/rails3.rb +5 -7
- data/lib/new_relic/control/frameworks/rails4.rb +3 -3
- data/lib/new_relic/control/frameworks/rails_notifications.rb +14 -0
- data/lib/new_relic/control/frameworks/roda.rb +20 -0
- data/lib/new_relic/control/frameworks/ruby.rb +5 -5
- data/lib/new_relic/control/frameworks/sinatra.rb +8 -2
- data/lib/new_relic/control/frameworks.rb +2 -2
- data/lib/new_relic/control/instance_methods.rb +47 -29
- data/lib/new_relic/control/instrumentation.rb +27 -21
- data/lib/new_relic/control/private_instance_methods.rb +48 -0
- data/lib/new_relic/control/server_methods.rb +6 -60
- data/lib/new_relic/control.rb +3 -5
- data/lib/new_relic/delayed_job_injection.rb +2 -2
- data/lib/new_relic/dependency_detection.rb +234 -0
- data/lib/new_relic/environment_report.rb +42 -36
- data/lib/new_relic/helper.rb +54 -22
- data/lib/new_relic/language_support.rb +73 -99
- data/lib/new_relic/latest_changes.rb +13 -12
- data/lib/new_relic/local_environment.rb +55 -42
- data/lib/new_relic/metric_data.rb +37 -39
- data/lib/new_relic/metric_spec.rb +9 -24
- data/lib/new_relic/noticed_error.rb +103 -62
- data/lib/new_relic/rack/agent_hooks.rb +3 -3
- data/lib/new_relic/rack/agent_middleware.rb +5 -5
- data/lib/new_relic/rack/browser_monitoring.rb +147 -114
- data/lib/new_relic/rack.rb +2 -2
- data/lib/new_relic/recipes/capistrano3.rb +12 -55
- data/lib/new_relic/recipes/capistrano_legacy.rb +26 -29
- data/lib/new_relic/recipes/helpers/send_deployment.rb +70 -0
- data/lib/new_relic/recipes.rb +2 -2
- data/lib/new_relic/supportability_helper.rb +88 -0
- data/lib/new_relic/thread_local_storage.rb +31 -0
- data/lib/new_relic/traced_thread.rb +38 -0
- data/lib/new_relic/version.rb +7 -63
- data/lib/newrelic_rpm.rb +21 -34
- data/lib/sequel/extensions/new_relic_instrumentation.rb +99 -0
- data/lib/sequel/plugins/new_relic_instrumentation.rb +64 -0
- data/lib/tasks/all.rb +4 -4
- data/lib/tasks/bump_version.rake +21 -0
- data/lib/tasks/config.rake +27 -119
- data/lib/tasks/coverage_report.rake +28 -0
- data/lib/tasks/helpers/config.html.erb +115 -0
- data/lib/tasks/helpers/config.text.erb +8 -0
- data/lib/tasks/helpers/format.rb +127 -0
- data/lib/tasks/helpers/matches.rb +12 -0
- data/lib/tasks/helpers/newrelicyml.rb +144 -0
- data/lib/tasks/helpers/prompt.rb +24 -0
- data/lib/tasks/helpers/version_bump.rb +62 -0
- data/lib/tasks/install.rake +8 -4
- data/lib/tasks/instrumentation_generator/README.md +63 -0
- data/lib/tasks/instrumentation_generator/TODO.md +33 -0
- data/lib/tasks/instrumentation_generator/instrumentation.thor +129 -0
- data/lib/tasks/instrumentation_generator/templates/Envfile.tt +9 -0
- data/lib/tasks/instrumentation_generator/templates/chain.tt +21 -0
- data/lib/tasks/instrumentation_generator/templates/chain_method.tt +7 -0
- data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +29 -0
- data/lib/tasks/instrumentation_generator/templates/instrumentation.tt +13 -0
- data/lib/tasks/instrumentation_generator/templates/instrumentation_method.tt +3 -0
- data/lib/tasks/instrumentation_generator/templates/newrelic.yml.tt +19 -0
- data/lib/tasks/instrumentation_generator/templates/prepend.tt +13 -0
- data/lib/tasks/instrumentation_generator/templates/prepend_method.tt +3 -0
- data/lib/tasks/instrumentation_generator/templates/test.tt +15 -0
- data/lib/tasks/newrelic.rb +10 -0
- data/lib/tasks/newrelicyml.rake +13 -0
- data/lib/tasks/tests.rake +87 -16
- data/newrelic.yml +832 -10
- data/newrelic_rpm.gemspec +56 -56
- data/recipes/newrelic.rb +3 -3
- data/test/agent_helper.rb +513 -115
- metadata +384 -912
- data/.gitignore +0 -27
- data/.project +0 -23
- data/.travis.yml +0 -12
- data/.yardopts +0 -21
- data/CHANGELOG +0 -2300
- data/GUIDELINES_FOR_CONTRIBUTING.md +0 -80
- data/Guardfile +0 -8
- data/bin/mongrel_rpm +0 -33
- data/bin/newrelic_cmd +0 -5
- data/cert/cacert.pem +0 -1177
- data/config/database.yml +0 -5
- data/config.dot +0 -287
- data/lib/conditional_vendored_dependency_detection.rb +0 -7
- data/lib/conditional_vendored_metric_parser.rb +0 -9
- data/lib/new_relic/agent/busy_calculator.rb +0 -117
- data/lib/new_relic/agent/commands/xray_session.rb +0 -55
- data/lib/new_relic/agent/commands/xray_session_collection.rb +0 -161
- data/lib/new_relic/agent/cross_app_monitor.rb +0 -178
- data/lib/new_relic/agent/cross_app_tracing.rb +0 -339
- data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +0 -39
- data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +0 -53
- data/lib/new_relic/agent/hash_extensions.rb +0 -26
- data/lib/new_relic/agent/inbound_request_monitor.rb +0 -41
- data/lib/new_relic/agent/instrumentation/active_record_4.rb +0 -28
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +0 -72
- data/lib/new_relic/agent/instrumentation/authlogic.rb +0 -25
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +0 -167
- data/lib/new_relic/agent/instrumentation/evented_subscriber.rb +0 -100
- data/lib/new_relic/agent/instrumentation/excon/connection.rb +0 -33
- data/lib/new_relic/agent/instrumentation/merb/controller.rb +0 -44
- data/lib/new_relic/agent/instrumentation/merb/errors.rb +0 -33
- data/lib/new_relic/agent/instrumentation/metric_frame.rb +0 -39
- data/lib/new_relic/agent/instrumentation/net.rb +0 -36
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +0 -123
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +0 -46
- data/lib/new_relic/agent/instrumentation/rails/errors.rb +0 -51
- data/lib/new_relic/agent/instrumentation/rails3/errors.rb +0 -47
- data/lib/new_relic/agent/instrumentation/rails4/action_controller.rb +0 -29
- data/lib/new_relic/agent/instrumentation/rails4/action_view.rb +0 -25
- data/lib/new_relic/agent/instrumentation/rails4/errors.rb +0 -46
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +0 -26
- data/lib/new_relic/agent/instrumentation/rubyprof.rb +0 -26
- data/lib/new_relic/agent/instrumentation/sunspot.rb +0 -33
- data/lib/new_relic/agent/new_relic_service/pruby_marshaller.rb +0 -56
- data/lib/new_relic/agent/sampled_buffer.rb +0 -51
- data/lib/new_relic/agent/shim_agent.rb +0 -33
- data/lib/new_relic/agent/sized_buffer.rb +0 -23
- data/lib/new_relic/agent/stats_engine/metric_stats.rb +0 -237
- data/lib/new_relic/agent/stats_engine/samplers.rb +0 -28
- data/lib/new_relic/agent/supported_versions.rb +0 -259
- data/lib/new_relic/agent/synthetics_event_buffer.rb +0 -42
- data/lib/new_relic/agent/synthetics_monitor.rb +0 -50
- data/lib/new_relic/agent/traced_method_stack.rb +0 -99
- data/lib/new_relic/agent/transaction/attributes.rb +0 -161
- data/lib/new_relic/agent/transaction/developer_mode_sample_buffer.rb +0 -62
- data/lib/new_relic/agent/transaction/xray_sample_buffer.rb +0 -64
- data/lib/new_relic/agent/transaction_sample_builder.rb +0 -147
- data/lib/new_relic/agent/transaction_state.rb +0 -153
- data/lib/new_relic/agent/transaction_timings.rb +0 -57
- data/lib/new_relic/agent/vm/mri_vm.rb +0 -87
- data/lib/new_relic/agent/vm/rubinius_vm.rb +0 -132
- data/lib/new_relic/build.rb +0 -2
- data/lib/new_relic/control/frameworks/merb.rb +0 -29
- data/lib/new_relic/json_wrapper.rb +0 -78
- data/lib/new_relic/merbtasks.rb +0 -10
- data/lib/new_relic/metrics.rb +0 -13
- data/lib/new_relic/okjson.rb +0 -602
- data/lib/new_relic/rack/developer_mode/segment_summary.rb +0 -56
- data/lib/new_relic/rack/developer_mode.rb +0 -321
- data/lib/new_relic/rack/error_collector.rb +0 -27
- data/lib/new_relic/timer_lib.rb +0 -31
- data/lib/sequel/extensions/newrelic_instrumentation.rb +0 -79
- data/lib/sequel/plugins/newrelic_instrumentation.rb +0 -65
- data/lib/tasks/config.html.erb +0 -28
- data/lib/tasks/config.text.erb +0 -7
- data/lib/tasks/versions.html.erb +0 -27
- data/lib/tasks/versions.rake +0 -53
- data/lib/tasks/versions.txt.erb +0 -14
- data/test/config/newrelic.yml +0 -46
- data/test/config/test.cert.crt +0 -18
- data/test/config/test.cert.key +0 -15
- data/test/config/test_control.rb +0 -54
- data/test/environments/.gitignore +0 -16
- data/test/environments/lib/environments/runner.rb +0 -113
- data/test/environments/norails/Gemfile +0 -21
- data/test/environments/norails/Rakefile +0 -9
- data/test/environments/rails21/Gemfile +0 -25
- data/test/environments/rails21/Rakefile +0 -16
- data/test/environments/rails21/app/controllers/application.rb +0 -20
- data/test/environments/rails21/config/boot.rb +0 -113
- data/test/environments/rails21/config/database.yml +0 -26
- data/test/environments/rails21/config/environment.rb +0 -26
- data/test/environments/rails21/config/environments/development.rb +0 -10
- data/test/environments/rails21/config/environments/production.rb +0 -8
- data/test/environments/rails21/config/environments/test.rb +0 -10
- data/test/environments/rails21/config/routes.rb +0 -5
- data/test/environments/rails21/db/schema.rb +0 -5
- data/test/environments/rails22/Gemfile +0 -25
- data/test/environments/rails22/Rakefile +0 -16
- data/test/environments/rails22/app/controllers/application.rb +0 -20
- data/test/environments/rails22/config/boot.rb +0 -113
- data/test/environments/rails22/config/database.yml +0 -26
- data/test/environments/rails22/config/environment.rb +0 -25
- data/test/environments/rails22/config/environments/development.rb +0 -10
- data/test/environments/rails22/config/environments/production.rb +0 -8
- data/test/environments/rails22/config/environments/test.rb +0 -10
- data/test/environments/rails22/config/routes.rb +0 -5
- data/test/environments/rails22/db/schema.rb +0 -5
- data/test/environments/rails23/Gemfile +0 -24
- data/test/environments/rails23/Rakefile +0 -16
- data/test/environments/rails23/app/controllers/application.rb +0 -20
- data/test/environments/rails23/config/boot.rb +0 -127
- data/test/environments/rails23/config/database.yml +0 -26
- data/test/environments/rails23/config/environment.rb +0 -16
- data/test/environments/rails23/config/environments/production.rb +0 -8
- data/test/environments/rails23/config/environments/test.rb +0 -10
- data/test/environments/rails23/config/preinitializer.rb +0 -25
- data/test/environments/rails23/config/routes.rb +0 -5
- data/test/environments/rails23/db/schema.rb +0 -5
- data/test/environments/rails30/Gemfile +0 -23
- data/test/environments/rails30/Rakefile +0 -11
- data/test/environments/rails30/config/application.rb +0 -17
- data/test/environments/rails30/config/boot.rb +0 -10
- data/test/environments/rails30/config/database.yml +0 -26
- data/test/environments/rails30/config/environment.rb +0 -6
- data/test/environments/rails30/config/initializers/new_rails_defaults.rb +0 -11
- data/test/environments/rails30/db/schema.rb +0 -5
- data/test/environments/rails31/Gemfile +0 -24
- data/test/environments/rails31/Rakefile +0 -11
- data/test/environments/rails31/config/application.rb +0 -18
- data/test/environments/rails31/config/boot.rb +0 -10
- data/test/environments/rails31/config/database.yml +0 -26
- data/test/environments/rails31/config/environment.rb +0 -6
- data/test/environments/rails31/config/initializers/new_rails_defaults.rb +0 -21
- data/test/environments/rails31/db/schema.rb +0 -5
- data/test/environments/rails32/Gemfile +0 -26
- data/test/environments/rails32/Rakefile +0 -11
- data/test/environments/rails32/config/application.rb +0 -19
- data/test/environments/rails32/config/boot.rb +0 -10
- data/test/environments/rails32/config/database.yml +0 -31
- data/test/environments/rails32/config/environment.rb +0 -6
- data/test/environments/rails32/db/schema.rb +0 -5
- data/test/environments/rails40/Gemfile +0 -43
- data/test/environments/rails40/Rakefile +0 -11
- data/test/environments/rails40/config/application.rb +0 -18
- data/test/environments/rails40/config/boot.rb +0 -10
- data/test/environments/rails40/config/database.yml +0 -26
- data/test/environments/rails40/config/environment.rb +0 -6
- data/test/environments/rails40/db/schema.rb +0 -5
- data/test/environments/rails41/Gemfile +0 -35
- data/test/environments/rails41/Rakefile +0 -11
- data/test/environments/rails41/config/application.rb +0 -18
- data/test/environments/rails41/config/boot.rb +0 -10
- data/test/environments/rails41/config/database.yml +0 -26
- data/test/environments/rails41/config/environment.rb +0 -6
- data/test/environments/rails41/db/schema.rb +0 -5
- data/test/environments/rails42/Gemfile +0 -39
- data/test/environments/rails42/Rakefile +0 -11
- data/test/environments/rails42/config/application.rb +0 -18
- data/test/environments/rails42/config/boot.rb +0 -10
- data/test/environments/rails42/config/database.yml +0 -26
- data/test/environments/rails42/config/environment.rb +0 -6
- data/test/environments/rails42/db/schema.rb +0 -5
- data/test/fixtures/cross_agent_tests/README.md +0 -56
- data/test/fixtures/cross_agent_tests/attribute_configuration.json +0 -384
- data/test/fixtures/cross_agent_tests/cat_map.json +0 -597
- data/test/fixtures/cross_agent_tests/docker_container_id/README.md +0 -6
- data/test/fixtures/cross_agent_tests/docker_container_id/cases.json +0 -46
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-0.9.1.txt +0 -10
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.0.0.txt +0 -10
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-lxc-driver.txt +0 -10
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-native-driver-fs.txt +0 -10
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-native-driver-systemd.txt +0 -10
- data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.3.txt +0 -9
- data/test/fixtures/cross_agent_tests/docker_container_id/empty.txt +0 -0
- data/test/fixtures/cross_agent_tests/docker_container_id/heroku.txt +0 -1
- data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.04-lxc-container.txt +0 -10
- data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.04-no-container.txt +0 -10
- data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.10-no-container.txt +0 -10
- data/test/fixtures/cross_agent_tests/labels.json +0 -133
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/README.md +0 -16
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.colon_obfuscated.txt +0 -3
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.explain.txt +0 -3
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.obfuscated.txt +0 -3
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.explain.txt +0 -3
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.colon_obfuscated.txt +0 -5
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.explain.txt +0 -5
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.obfuscated.txt +0 -5
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.colon_obfuscated.txt +0 -5
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.explain.txt +0 -5
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.obfuscated.txt +0 -5
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.colon_obfuscated.txt +0 -3
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.explain.txt +0 -3
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.obfuscated.txt +0 -3
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.explain.txt +0 -3
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.colon_obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.explain.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.obfuscated.txt +0 -2
- data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.query.txt +0 -1
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_1logical.txt +0 -3
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_2logical.txt +0 -14
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_2core_2logical.txt +0 -14
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_4core_4logical.txt +0 -28
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_12core_24logical.txt +0 -575
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_20core_40logical.txt +0 -999
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_2logical.txt +0 -51
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_4logical.txt +0 -28
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_4core_4logical.txt +0 -28
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/4pack_4core_4logical.txt +0 -103
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/8pack_8core_8logical.txt +0 -199
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/README.md +0 -24
- data/test/fixtures/cross_agent_tests/proc_cpuinfo/Xpack_Xcore_2logical.txt +0 -43
- data/test/fixtures/cross_agent_tests/proc_meminfo/README.md +0 -7
- data/test/fixtures/cross_agent_tests/proc_meminfo/meminfo_4096MB.txt +0 -47
- data/test/fixtures/cross_agent_tests/rules.json +0 -165
- data/test/fixtures/cross_agent_tests/rum_client_config.json +0 -62
- data/test/fixtures/cross_agent_tests/rum_footer_insertion_location/close-body-in-comment.html +0 -10
- data/test/fixtures/cross_agent_tests/rum_footer_insertion_location/dynamic-iframe.html +0 -19
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/basic.html +0 -10
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/body_with_attributes.html +0 -3
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_after_x_ua_tag.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_before_x_ua_tag.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_with_spaces.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments1.html +0 -24
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments2.html +0 -24
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_after_x_ua_tag.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_before_x_ua_tag.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/empty_head +0 -4
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes1.html +0 -27
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes2.html +0 -24
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes_mismatch.html +0 -24
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes1.html +0 -25
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes_mismatch.html +0 -25
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/head_with_attributes.html +0 -10
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/incomplete_non_meta_tags.html +0 -10
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_end_header.html +0 -6
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_header.html +0 -7
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_html_and_no_header.html +0 -3
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_start_header.html +0 -9
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/script1.html +0 -19
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/script2.html +0 -17
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag.html +0 -10
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiline.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiple_tags.html +0 -12
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_spaces_around_equals.html +0 -10
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_others.html +0 -11
- data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_spaces.html +0 -10
- data/test/fixtures/cross_agent_tests/sql_obfuscation/README.md +0 -30
- data/test/fixtures/cross_agent_tests/sql_obfuscation/sql_obfuscation.json +0 -365
- data/test/fixtures/cross_agent_tests/sql_parsing.json +0 -55
- data/test/fixtures/cross_agent_tests/synthetics/README.md +0 -65
- data/test/fixtures/cross_agent_tests/synthetics/synthetics.json +0 -317
- data/test/fixtures/cross_agent_tests/transaction_segment_terms.json +0 -101
- data/test/fixtures/cross_agent_tests/url_clean.json +0 -15
- data/test/fixtures/cross_agent_tests/url_domain_extraction.json +0 -35
- data/test/helpers/exceptions.rb +0 -16
- data/test/helpers/file_searching.rb +0 -28
- data/test/helpers/mongo_metric_builder.rb +0 -28
- data/test/helpers/runtime_detection.rb +0 -17
- data/test/intentional_fail.rb +0 -13
- data/test/multiverse/.gitignore +0 -13
- data/test/multiverse/README.md +0 -85
- data/test/multiverse/lib/multiverse/color.rb +0 -23
- data/test/multiverse/lib/multiverse/envfile.rb +0 -66
- data/test/multiverse/lib/multiverse/environment.rb +0 -19
- data/test/multiverse/lib/multiverse/output_collector.rb +0 -82
- data/test/multiverse/lib/multiverse/runner.rb +0 -117
- data/test/multiverse/lib/multiverse/suite.rb +0 -525
- data/test/multiverse/script/runner +0 -5
- data/test/multiverse/suites/active_record/.gitignore +0 -1
- data/test/multiverse/suites/active_record/Envfile +0 -67
- data/test/multiverse/suites/active_record/Rakefile +0 -9
- data/test/multiverse/suites/active_record/active_record_test.rb +0 -374
- data/test/multiverse/suites/active_record/app/models/models.rb +0 -27
- data/test/multiverse/suites/active_record/ar_method_aliasing.rb +0 -43
- data/test/multiverse/suites/active_record/before_suite.rb +0 -23
- data/test/multiverse/suites/active_record/config/database.rb +0 -79
- data/test/multiverse/suites/active_record/config/database.yml +0 -19
- data/test/multiverse/suites/active_record/config/newrelic.yml +0 -18
- data/test/multiverse/suites/active_record/db/migrate/20141105131800_create_users_and_aliases.rb +0 -21
- data/test/multiverse/suites/active_record/db/migrate/20141106082200_create_orders_and_shipments.rb +0 -25
- data/test/multiverse/suites/activemerchant/Envfile +0 -36
- data/test/multiverse/suites/activemerchant/activemerchant_test.rb +0 -62
- data/test/multiverse/suites/agent_only/Envfile +0 -4
- data/test/multiverse/suites/agent_only/agent_attributes_test.rb +0 -145
- data/test/multiverse/suites/agent_only/agent_run_id_handling_test.rb +0 -39
- data/test/multiverse/suites/agent_only/audit_log_test.rb +0 -58
- data/test/multiverse/suites/agent_only/collector_exception_handling_test.rb +0 -87
- data/test/multiverse/suites/agent_only/config/newrelic.yml +0 -27
- data/test/multiverse/suites/agent_only/cross_application_tracing_test.rb +0 -94
- data/test/multiverse/suites/agent_only/custom_analytics_events_test.rb +0 -67
- data/test/multiverse/suites/agent_only/custom_queue_time_test.rb +0 -60
- data/test/multiverse/suites/agent_only/encoding_handling_test.rb +0 -130
- data/test/multiverse/suites/agent_only/exclusive_time_test.rb +0 -176
- data/test/multiverse/suites/agent_only/harvest_timestamps_test.rb +0 -83
- data/test/multiverse/suites/agent_only/http_response_code_test.rb +0 -38
- data/test/multiverse/suites/agent_only/keepalive_test.rb +0 -24
- data/test/multiverse/suites/agent_only/key_transactions_test.rb +0 -118
- data/test/multiverse/suites/agent_only/labels_test.rb +0 -83
- data/test/multiverse/suites/agent_only/logging_test.rb +0 -162
- data/test/multiverse/suites/agent_only/marshaling_test.rb +0 -88
- data/test/multiverse/suites/agent_only/pipe_manager_test.rb +0 -41
- data/test/multiverse/suites/agent_only/rename_rule_test.rb +0 -91
- data/test/multiverse/suites/agent_only/rum_instrumentation_test.rb +0 -97
- data/test/multiverse/suites/agent_only/script/env_change.rb +0 -10
- data/test/multiverse/suites/agent_only/script/loading.rb +0 -20
- data/test/multiverse/suites/agent_only/script/symbol_env.rb +0 -10
- data/test/multiverse/suites/agent_only/service_timeout_test.rb +0 -39
- data/test/multiverse/suites/agent_only/set_transaction_name_test.rb +0 -118
- data/test/multiverse/suites/agent_only/ssl_test.rb +0 -20
- data/test/multiverse/suites/agent_only/start_up_test.rb +0 -55
- data/test/multiverse/suites/agent_only/synthetics_test.rb +0 -131
- data/test/multiverse/suites/agent_only/testing_app.rb +0 -58
- data/test/multiverse/suites/agent_only/thread_profiling_test.rb +0 -160
- data/test/multiverse/suites/agent_only/transaction_ignoring_test.rb +0 -42
- data/test/multiverse/suites/agent_only/utilization_data_collection_test.rb +0 -171
- data/test/multiverse/suites/agent_only/xray_sessions_test.rb +0 -199
- data/test/multiverse/suites/bare/Envfile +0 -3
- data/test/multiverse/suites/bare/standalone_instrumentation_test.rb +0 -43
- data/test/multiverse/suites/capistrano/Capfile +0 -26
- data/test/multiverse/suites/capistrano/Envfile +0 -18
- data/test/multiverse/suites/capistrano/config/deploy/production.rb +0 -9
- data/test/multiverse/suites/capistrano/config/deploy.rb +0 -14
- data/test/multiverse/suites/capistrano/config/newrelic.yml +0 -21
- data/test/multiverse/suites/capistrano/deployment_test.rb +0 -54
- data/test/multiverse/suites/capistrano2/Capfile +0 -4
- data/test/multiverse/suites/capistrano2/Envfile +0 -8
- data/test/multiverse/suites/capistrano2/config/deploy.rb +0 -19
- data/test/multiverse/suites/capistrano2/config/newrelic.yml +0 -21
- data/test/multiverse/suites/capistrano2/deployment_test.rb +0 -37
- data/test/multiverse/suites/config_file_loading/Envfile +0 -13
- data/test/multiverse/suites/config_file_loading/config_file_loading_test.rb +0 -213
- data/test/multiverse/suites/curb/Envfile +0 -31
- data/test/multiverse/suites/curb/config/newrelic.yml +0 -18
- data/test/multiverse/suites/curb/curb_test.rb +0 -213
- data/test/multiverse/suites/datamapper/Envfile +0 -30
- data/test/multiverse/suites/datamapper/config/newrelic.yml +0 -20
- data/test/multiverse/suites/datamapper/datamapper_test.rb +0 -335
- data/test/multiverse/suites/deferred_instrumentation/Envfile +0 -15
- data/test/multiverse/suites/deferred_instrumentation/config/newrelic.yml +0 -20
- data/test/multiverse/suites/deferred_instrumentation/sinatra_test.rb +0 -107
- data/test/multiverse/suites/delayed_job/Envfile +0 -102
- data/test/multiverse/suites/delayed_job/before_suite.rb +0 -33
- data/test/multiverse/suites/delayed_job/config/newrelic.yml +0 -18
- data/test/multiverse/suites/delayed_job/delayed_job_sampler_test.rb +0 -128
- data/test/multiverse/suites/delayed_job/unsupported_backend_test.rb +0 -21
- data/test/multiverse/suites/excon/Envfile +0 -21
- data/test/multiverse/suites/excon/config/newrelic.yml +0 -18
- data/test/multiverse/suites/excon/excon_test.rb +0 -81
- data/test/multiverse/suites/grape/Envfile +0 -13
- data/test/multiverse/suites/grape/config/newrelic.yml +0 -19
- data/test/multiverse/suites/grape/grape_test.rb +0 -202
- data/test/multiverse/suites/grape/grape_test_api.rb +0 -64
- data/test/multiverse/suites/grape/grape_versioning_test.rb +0 -64
- data/test/multiverse/suites/grape/grape_versioning_test_api.rb +0 -72
- data/test/multiverse/suites/grape/unsupported_version_test.rb +0 -28
- data/test/multiverse/suites/high_security/Envfile +0 -3
- data/test/multiverse/suites/high_security/config/newrelic.yml +0 -70
- data/test/multiverse/suites/high_security/high_security_test.rb +0 -214
- data/test/multiverse/suites/httpclient/Envfile +0 -13
- data/test/multiverse/suites/httpclient/config/newrelic.yml +0 -18
- data/test/multiverse/suites/httpclient/httpclient_test.rb +0 -75
- data/test/multiverse/suites/json/Envfile +0 -25
- data/test/multiverse/suites/json/config/newrelic.yml +0 -22
- data/test/multiverse/suites/json/json_test.rb +0 -16
- data/test/multiverse/suites/marshalling/Envfile +0 -12
- data/test/multiverse/suites/marshalling/config/newrelic.yml +0 -20
- data/test/multiverse/suites/marshalling/marshalling_test.rb +0 -16
- data/test/multiverse/suites/memcached/Envfile +0 -52
- data/test/multiverse/suites/memcached/dalli_test.rb +0 -89
- data/test/multiverse/suites/memcached/memcache_client_test.rb +0 -25
- data/test/multiverse/suites/memcached/memcache_test_cases.rb +0 -302
- data/test/multiverse/suites/memcached/memcached_test.rb +0 -159
- data/test/multiverse/suites/mongo/Envfile +0 -69
- data/test/multiverse/suites/mongo/config/newrelic.yml +0 -18
- data/test/multiverse/suites/mongo/helpers/mongo_operation_tests.rb +0 -489
- data/test/multiverse/suites/mongo/helpers/mongo_replica_set.rb +0 -97
- data/test/multiverse/suites/mongo/helpers/mongo_replica_set_test.rb +0 -82
- data/test/multiverse/suites/mongo/helpers/mongo_server.rb +0 -241
- data/test/multiverse/suites/mongo/helpers/mongo_server_test.rb +0 -176
- data/test/multiverse/suites/mongo/mongo_connection_test.rb +0 -39
- data/test/multiverse/suites/mongo/mongo_instrumentation_test.rb +0 -39
- data/test/multiverse/suites/mongo/mongo_unsupported_version_test.rb +0 -72
- data/test/multiverse/suites/net_http/Envfile +0 -4
- data/test/multiverse/suites/net_http/config/newrelic.yml +0 -18
- data/test/multiverse/suites/net_http/net_http_test.rb +0 -111
- data/test/multiverse/suites/padrino/Envfile +0 -14
- data/test/multiverse/suites/padrino/config/newrelic.yml +0 -20
- data/test/multiverse/suites/padrino/padrino_test.rb +0 -52
- data/test/multiverse/suites/rack/Envfile +0 -35
- data/test/multiverse/suites/rack/builder_map_test.rb +0 -128
- data/test/multiverse/suites/rack/example_app.rb +0 -100
- data/test/multiverse/suites/rack/http_response_code_test.rb +0 -50
- data/test/multiverse/suites/rack/nested_non_rack_app_test.rb +0 -66
- data/test/multiverse/suites/rack/rack_auto_instrumentation_test.rb +0 -144
- data/test/multiverse/suites/rack/rack_cascade_test.rb +0 -45
- data/test/multiverse/suites/rack/rack_env_mutation_test.rb +0 -53
- data/test/multiverse/suites/rack/rack_parameter_filtering_test.rb +0 -49
- data/test/multiverse/suites/rack/rack_unsupported_version_test.rb +0 -43
- data/test/multiverse/suites/rack/url_map_test.rb +0 -117
- data/test/multiverse/suites/rails/Envfile +0 -61
- data/test/multiverse/suites/rails/action_controller_live_rum_test.rb +0 -39
- data/test/multiverse/suites/rails/activejob_test.rb +0 -152
- data/test/multiverse/suites/rails/app/views/foos/_foo.html.haml +0 -1
- data/test/multiverse/suites/rails/app/views/views/_a_partial.html.erb +0 -2
- data/test/multiverse/suites/rails/app/views/views/_mid_partial.html.erb +0 -1
- data/test/multiverse/suites/rails/app/views/views/_top_partial.html.erb +0 -3
- data/test/multiverse/suites/rails/app/views/views/deep_partial.html.erb +0 -3
- data/test/multiverse/suites/rails/app/views/views/haml_view.html.haml +0 -6
- data/test/multiverse/suites/rails/app/views/views/index.html.erb +0 -4
- data/test/multiverse/suites/rails/app.rb +0 -44
- data/test/multiverse/suites/rails/bad_instrumentation_test.rb +0 -29
- data/test/multiverse/suites/rails/config/newrelic.yml +0 -30
- data/test/multiverse/suites/rails/dummy.txt +0 -1
- data/test/multiverse/suites/rails/error_tracing_test.rb +0 -322
- data/test/multiverse/suites/rails/gc_instrumentation_test.rb +0 -93
- data/test/multiverse/suites/rails/ignore_test.rb +0 -79
- data/test/multiverse/suites/rails/middleware_instrumentation_test.rb +0 -41
- data/test/multiverse/suites/rails/middlewares.rb +0 -19
- data/test/multiverse/suites/rails/parameter_capture_test.rb +0 -299
- data/test/multiverse/suites/rails/queue_time_test.rb +0 -89
- data/test/multiverse/suites/rails/rails2_app/app/controllers/application.rb +0 -7
- data/test/multiverse/suites/rails/rails2_app/config/boot.rb +0 -127
- data/test/multiverse/suites/rails/rails2_app/config/database.yml +0 -18
- data/test/multiverse/suites/rails/rails2_app/config/environment.rb +0 -16
- data/test/multiverse/suites/rails/rails2_app/config/environments/development.rb +0 -10
- data/test/multiverse/suites/rails/rails2_app/config/initializers/load_newrelic_rpm.rb +0 -9
- data/test/multiverse/suites/rails/rails2_app/config/preinitializer.rb +0 -25
- data/test/multiverse/suites/rails/rails2_app/config/routes.rb +0 -19
- data/test/multiverse/suites/rails/rails2_app/db/schema.rb +0 -5
- data/test/multiverse/suites/rails/rails3_app/app_rails3_plus.rb +0 -92
- data/test/multiverse/suites/rails/request_statistics_test.rb +0 -192
- data/test/multiverse/suites/rails/transaction_ignoring_test.rb +0 -41
- data/test/multiverse/suites/rails/view_instrumentation_test.rb +0 -254
- data/test/multiverse/suites/resque/Envfile +0 -11
- data/test/multiverse/suites/resque/Rakefile +0 -3
- data/test/multiverse/suites/resque/config/newrelic.yml +0 -19
- data/test/multiverse/suites/resque/instrumentation_test.rb +0 -155
- data/test/multiverse/suites/resque/resque_marshalling_test.rb +0 -53
- data/test/multiverse/suites/sequel/Envfile +0 -34
- data/test/multiverse/suites/sequel/config/newrelic.yml +0 -18
- data/test/multiverse/suites/sequel/database.rb +0 -57
- data/test/multiverse/suites/sequel/sequel_extension_test.rb +0 -142
- data/test/multiverse/suites/sequel/sequel_helpers.rb +0 -62
- data/test/multiverse/suites/sequel/sequel_plugin_test.rb +0 -230
- data/test/multiverse/suites/sequel/sequel_safety_test.rb +0 -30
- data/test/multiverse/suites/sidekiq/Envfile +0 -31
- data/test/multiverse/suites/sidekiq/after_suite.rb +0 -16
- data/test/multiverse/suites/sidekiq/config/newrelic.yml +0 -20
- data/test/multiverse/suites/sidekiq/log/.gitkeep +0 -0
- data/test/multiverse/suites/sidekiq/sidekiq_instrumentation_test.rb +0 -181
- data/test/multiverse/suites/sidekiq/sidekiq_server.rb +0 -31
- data/test/multiverse/suites/sidekiq/test_worker.rb +0 -59
- data/test/multiverse/suites/sinatra/Envfile +0 -17
- data/test/multiverse/suites/sinatra/config/newrelic.yml +0 -21
- data/test/multiverse/suites/sinatra/ignoring_test.rb +0 -208
- data/test/multiverse/suites/sinatra/nested_middleware_test.rb +0 -39
- data/test/multiverse/suites/sinatra/sinatra_classic_test.rb +0 -99
- data/test/multiverse/suites/sinatra/sinatra_error_tracing_test.rb +0 -45
- data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +0 -96
- data/test/multiverse/suites/sinatra/sinatra_modular_test.rb +0 -89
- data/test/multiverse/suites/sinatra/sinatra_parameter_capture_test.rb +0 -65
- data/test/multiverse/suites/sinatra/sinatra_routes_test.rb +0 -49
- data/test/multiverse/suites/sinatra/sinatra_test_cases.rb +0 -137
- data/test/multiverse/suites/typhoeus/Envfile +0 -57
- data/test/multiverse/suites/typhoeus/config/newrelic.yml +0 -18
- data/test/multiverse/suites/typhoeus/typhoeus_test.rb +0 -144
- data/test/multiverse/suites/yajl/Envfile +0 -13
- data/test/multiverse/suites/yajl/config/newrelic.yml +0 -21
- data/test/multiverse/suites/yajl/yajl_test.rb +0 -18
- data/test/multiverse/test/multiverse_test.rb +0 -59
- data/test/multiverse/test/suite_examples/one/a/Envfile +0 -3
- data/test/multiverse/test/suite_examples/one/a/a_test.rb +0 -14
- data/test/multiverse/test/suite_examples/one/a/config/newrelic.yml +0 -22
- data/test/multiverse/test/suite_examples/one/b/Envfile +0 -3
- data/test/multiverse/test/suite_examples/one/b/b_test.rb +0 -14
- data/test/multiverse/test/suite_examples/one/b/config/newrelic.yml +0 -22
- data/test/multiverse/test/suite_examples/three/a/Envfile +0 -2
- data/test/multiverse/test/suite_examples/three/a/fail_test.rb +0 -10
- data/test/multiverse/test/suite_examples/three/b/Envfile +0 -2
- data/test/multiverse/test/suite_examples/three/b/win_test.rb +0 -10
- data/test/multiverse/test/suite_examples/two/a/Envfile +0 -1
- data/test/multiverse/test/suite_examples/two/a/fail_test.rb +0 -10
- data/test/new_relic/FAKECHANGELOG +0 -21
- data/test/new_relic/agent/agent/connect_test.rb +0 -308
- data/test/new_relic/agent/agent/start_test.rb +0 -191
- data/test/new_relic/agent/agent/start_worker_thread_test.rb +0 -74
- data/test/new_relic/agent/agent_logger_test.rb +0 -392
- data/test/new_relic/agent/agent_test.rb +0 -701
- data/test/new_relic/agent/agent_test_controller.rb +0 -84
- data/test/new_relic/agent/apdex_from_server_test.rb +0 -13
- data/test/new_relic/agent/attribute_filter_test.rb +0 -218
- data/test/new_relic/agent/attribute_processing_test.rb +0 -160
- data/test/new_relic/agent/audit_logger_test.rb +0 -213
- data/test/new_relic/agent/autostart_test.rb +0 -110
- data/test/new_relic/agent/busy_calculator_test.rb +0 -98
- data/test/new_relic/agent/commands/agent_command_router_test.rb +0 -256
- data/test/new_relic/agent/commands/agent_command_test.rb +0 -37
- data/test/new_relic/agent/commands/thread_profiler_session_test.rb +0 -215
- data/test/new_relic/agent/commands/xray_session_collection_test.rb +0 -332
- data/test/new_relic/agent/commands/xray_session_test.rb +0 -42
- data/test/new_relic/agent/configuration/default_source_test.rb +0 -226
- data/test/new_relic/agent/configuration/dotted_hash_test.rb +0 -53
- data/test/new_relic/agent/configuration/environment_source_test.rb +0 -201
- data/test/new_relic/agent/configuration/high_security_source_test.rb +0 -83
- data/test/new_relic/agent/configuration/manager_test.rb +0 -460
- data/test/new_relic/agent/configuration/manual_source_test.rb +0 -18
- data/test/new_relic/agent/configuration/orphan_configuration_test.rb +0 -89
- data/test/new_relic/agent/configuration/server_source_test.rb +0 -202
- data/test/new_relic/agent/configuration/yaml_source_test.rb +0 -93
- data/test/new_relic/agent/cross_app_monitor_test.rb +0 -248
- data/test/new_relic/agent/cross_app_tracing_test.rb +0 -71
- data/test/new_relic/agent/custom_event_aggregator_test.rb +0 -88
- data/test/new_relic/agent/database/postgres_explain_obfuscator_test.rb +0 -34
- data/test/new_relic/agent/database/sql_obfuscation_test.rb +0 -59
- data/test/new_relic/agent/database_test.rb +0 -400
- data/test/new_relic/agent/datastores/metric_helper_test.rb +0 -97
- data/test/new_relic/agent/datastores/mongo/metric_translator_test.rb +0 -320
- data/test/new_relic/agent/datastores/mongo/obfuscator_test.rb +0 -91
- data/test/new_relic/agent/datastores/mongo/statement_formatter_test.rb +0 -72
- data/test/new_relic/agent/datastores_test.rb +0 -195
- data/test/new_relic/agent/deprecator_test.rb +0 -52
- data/test/new_relic/agent/encoding_normalizer_test.rb +0 -66
- data/test/new_relic/agent/error_collector_test.rb +0 -595
- data/test/new_relic/agent/event_buffer_test_cases.rb +0 -152
- data/test/new_relic/agent/event_listener_test.rb +0 -70
- data/test/new_relic/agent/event_loop_test.rb +0 -202
- data/test/new_relic/agent/harvester_test.rb +0 -79
- data/test/new_relic/agent/hash_extensions_test.rb +0 -34
- data/test/new_relic/agent/hostname_test.rb +0 -93
- data/test/new_relic/agent/http_clients/uri_util_test.rb +0 -64
- data/test/new_relic/agent/inbound_request_monitor_test.rb +0 -49
- data/test/new_relic/agent/instrumentation/action_controller_subscriber_test.rb +0 -299
- data/test/new_relic/agent/instrumentation/action_view_subscriber_test.rb +0 -239
- data/test/new_relic/agent/instrumentation/active_job_test.rb +0 -20
- data/test/new_relic/agent/instrumentation/active_record_helper_test.rb +0 -77
- data/test/new_relic/agent/instrumentation/active_record_subscriber_test.rb +0 -132
- data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +0 -325
- data/test/new_relic/agent/instrumentation/instrumentation_test.rb +0 -14
- data/test/new_relic/agent/instrumentation/metric_frame_test.rb +0 -22
- data/test/new_relic/agent/instrumentation/middleware_proxy_test.rb +0 -257
- data/test/new_relic/agent/instrumentation/middleware_tracing_test.rb +0 -49
- data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +0 -35
- data/test/new_relic/agent/instrumentation/queue_time_test.rb +0 -103
- data/test/new_relic/agent/instrumentation/rack_test.rb +0 -47
- data/test/new_relic/agent/instrumentation/sequel_helper_test.rb +0 -36
- data/test/new_relic/agent/instrumentation/sinatra/transaction_namer_test.rb +0 -55
- data/test/new_relic/agent/instrumentation/sinatra_test.rb +0 -80
- data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +0 -196
- data/test/new_relic/agent/javascript_instrumentor_test.rb +0 -340
- data/test/new_relic/agent/memory_logger_test.rb +0 -67
- data/test/new_relic/agent/method_interrobang_test.rb +0 -31
- data/test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb +0 -122
- data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +0 -224
- data/test/new_relic/agent/method_tracer_test.rb +0 -474
- data/test/new_relic/agent/method_visibility_test.rb +0 -90
- data/test/new_relic/agent/mock_scope_listener.rb +0 -27
- data/test/new_relic/agent/new_relic_service_test.rb +0 -1063
- data/test/new_relic/agent/obfuscator_test.rb +0 -77
- data/test/new_relic/agent/parameter_filtering_test.rb +0 -39
- data/test/new_relic/agent/pipe_channel_manager_test.rb +0 -278
- data/test/new_relic/agent/pipe_service_test.rb +0 -145
- data/test/new_relic/agent/rpm_agent_test.rb +0 -104
- data/test/new_relic/agent/rules_engine_test.rb +0 -136
- data/test/new_relic/agent/sampled_buffer_test.rb +0 -106
- data/test/new_relic/agent/sampler_collection_test.rb +0 -90
- data/test/new_relic/agent/sampler_test.rb +0 -66
- data/test/new_relic/agent/samplers/cpu_sampler_test.rb +0 -51
- data/test/new_relic/agent/samplers/vm_sampler_test.rb +0 -349
- data/test/new_relic/agent/shim_agent_test.rb +0 -20
- data/test/new_relic/agent/sized_buffer_test.rb +0 -29
- data/test/new_relic/agent/sql_sampler_test.rb +0 -403
- data/test/new_relic/agent/stats_engine/gc_profiler_test.rb +0 -188
- data/test/new_relic/agent/stats_engine/metric_stats_test.rb +0 -347
- data/test/new_relic/agent/stats_engine/samplers_test.rb +0 -98
- data/test/new_relic/agent/stats_engine/stats_hash_test.rb +0 -198
- data/test/new_relic/agent/stats_engine_test.rb +0 -32
- data/test/new_relic/agent/stats_test.rb +0 -189
- data/test/new_relic/agent/synthetics_event_buffer_test.rb +0 -54
- data/test/new_relic/agent/synthetics_monitor_test.rb +0 -93
- data/test/new_relic/agent/system_info_test.rb +0 -61
- data/test/new_relic/agent/threading/agent_thread_test.rb +0 -149
- data/test/new_relic/agent/threading/backtrace_node_test.rb +0 -184
- data/test/new_relic/agent/threading/backtrace_service_test.rb +0 -595
- data/test/new_relic/agent/threading/fake_thread.rb +0 -43
- data/test/new_relic/agent/threading/thread_profile_test.rb +0 -272
- data/test/new_relic/agent/threading/threaded_test_case.rb +0 -18
- data/test/new_relic/agent/traced_method_stack_test.rb +0 -187
- data/test/new_relic/agent/transaction/attributes_test.rb +0 -276
- data/test/new_relic/agent/transaction/developer_mode_sample_buffer_test.rb +0 -75
- data/test/new_relic/agent/transaction/slowest_sample_buffer_test.rb +0 -67
- data/test/new_relic/agent/transaction/synthetics_sample_buffer_test.rb +0 -38
- data/test/new_relic/agent/transaction/trace_node_test.rb +0 -361
- data/test/new_relic/agent/transaction/trace_test.rb +0 -394
- data/test/new_relic/agent/transaction/xray_sample_buffer_test.rb +0 -71
- data/test/new_relic/agent/transaction_event_aggregator_test.rb +0 -433
- data/test/new_relic/agent/transaction_interrobang_test.rb +0 -33
- data/test/new_relic/agent/transaction_metrics_test.rb +0 -113
- data/test/new_relic/agent/transaction_sample_builder_test.rb +0 -215
- data/test/new_relic/agent/transaction_sampler_test.rb +0 -849
- data/test/new_relic/agent/transaction_state_test.rb +0 -122
- data/test/new_relic/agent/transaction_test.rb +0 -1435
- data/test/new_relic/agent/transaction_timings_test.rb +0 -91
- data/test/new_relic/agent/utilization_data_test.rb +0 -18
- data/test/new_relic/agent/vm/monotonic_gc_profiler_test.rb +0 -42
- data/test/new_relic/agent/vm/mri_vm_test.rb +0 -42
- data/test/new_relic/agent/vm/rubinius_vm_test.rb +0 -69
- data/test/new_relic/agent/vm/snapshot_test.rb +0 -13
- data/test/new_relic/agent/vm_test.rb +0 -48
- data/test/new_relic/agent/worker_loop_test.rb +0 -98
- data/test/new_relic/agent_test.rb +0 -471
- data/test/new_relic/cli/commands/deployments_test.rb +0 -121
- data/test/new_relic/cli/commands/install_test.rb +0 -27
- data/test/new_relic/coerce_test.rb +0 -95
- data/test/new_relic/collection_helper_test.rb +0 -151
- data/test/new_relic/control/class_methods_test.rb +0 -48
- data/test/new_relic/control/frameworks/rails_test.rb +0 -29
- data/test/new_relic/control/instance_methods_test.rb +0 -50
- data/test/new_relic/control/instrumentation_test.rb +0 -56
- data/test/new_relic/control_test.rb +0 -232
- data/test/new_relic/data_container_tests.rb +0 -76
- data/test/new_relic/dependency_detection_test.rb +0 -155
- data/test/new_relic/dispatcher_test.rb +0 -59
- data/test/new_relic/environment_report_test.rb +0 -107
- data/test/new_relic/evil_server.rb +0 -55
- data/test/new_relic/fake_collector.rb +0 -398
- data/test/new_relic/fake_external_server.rb +0 -65
- data/test/new_relic/fake_instance_metadata_service.rb +0 -45
- data/test/new_relic/fake_rpm_site.rb +0 -35
- data/test/new_relic/fake_server.rb +0 -104
- data/test/new_relic/filtering_test_app.rb +0 -19
- data/test/new_relic/framework_test.rb +0 -58
- data/test/new_relic/http_client_test_cases.rb +0 -621
- data/test/new_relic/json_wrapper_test.rb +0 -32
- data/test/new_relic/language_support_test.rb +0 -74
- data/test/new_relic/latest_changes_test.rb +0 -45
- data/test/new_relic/license_test.rb +0 -126
- data/test/new_relic/load_test.rb +0 -15
- data/test/new_relic/local_environment_test.rb +0 -103
- data/test/new_relic/marshalling_test_cases.rb +0 -140
- data/test/new_relic/metric_data_test.rb +0 -191
- data/test/new_relic/metric_parser/metric_parser_test.rb +0 -17
- data/test/new_relic/metric_spec_test.rb +0 -145
- data/test/new_relic/multiverse_helpers.rb +0 -271
- data/test/new_relic/noticed_error_test.rb +0 -197
- data/test/new_relic/rack/agent_hooks_test.rb +0 -44
- data/test/new_relic/rack/agent_middleware_test.rb +0 -32
- data/test/new_relic/rack/browser_monitoring_test.rb +0 -197
- data/test/new_relic/rack/deferred_instrumentation_test.rb +0 -33
- data/test/new_relic/rack/developer_mode/segment_summary_test.rb +0 -96
- data/test/new_relic/rack/developer_mode_helper_test.rb +0 -136
- data/test/new_relic/rack/developer_mode_test.rb +0 -93
- data/test/new_relic/rack/error_collector_test.rb +0 -77
- data/test/new_relic/transaction_ignoring_test_cases.rb +0 -102
- data/test/new_relic/version_number_test.rb +0 -101
- data/test/performance/README.md +0 -182
- data/test/performance/lib/performance/baseline.rb +0 -36
- data/test/performance/lib/performance/baseline_compare_reporter.rb +0 -103
- data/test/performance/lib/performance/baseline_save_reporter.rb +0 -24
- data/test/performance/lib/performance/console_reporter.rb +0 -66
- data/test/performance/lib/performance/formatting_helpers.rb +0 -22
- data/test/performance/lib/performance/hako_client.rb +0 -31
- data/test/performance/lib/performance/hako_reporter.rb +0 -26
- data/test/performance/lib/performance/instrumentation/cpu_usage.rb +0 -26
- data/test/performance/lib/performance/instrumentation/gc_stats.rb +0 -58
- data/test/performance/lib/performance/instrumentation/perf_tools.rb +0 -30
- data/test/performance/lib/performance/instrumentation/stackprof.rb +0 -46
- data/test/performance/lib/performance/instrumentor.rb +0 -96
- data/test/performance/lib/performance/json_reporter.rb +0 -15
- data/test/performance/lib/performance/platform.rb +0 -37
- data/test/performance/lib/performance/reporting.rb +0 -36
- data/test/performance/lib/performance/result.rb +0 -104
- data/test/performance/lib/performance/runner.rb +0 -221
- data/test/performance/lib/performance/table.rb +0 -105
- data/test/performance/lib/performance/test_case.rb +0 -152
- data/test/performance/lib/performance/timer.rb +0 -40
- data/test/performance/lib/performance.rb +0 -38
- data/test/performance/script/baselines +0 -102
- data/test/performance/script/mega-runner +0 -37
- data/test/performance/script/runner +0 -133
- data/test/performance/suites/active_record.rb +0 -47
- data/test/performance/suites/agent_attributes.rb +0 -62
- data/test/performance/suites/config.rb +0 -35
- data/test/performance/suites/marshalling.rb +0 -156
- data/test/performance/suites/queue_time.rb +0 -21
- data/test/performance/suites/rack_middleware.rb +0 -136
- data/test/performance/suites/rum_autoinsertion.rb +0 -75
- data/test/performance/suites/sql_obfuscation.rb +0 -30
- data/test/performance/suites/startup.rb +0 -12
- data/test/performance/suites/stats_hash.rb +0 -30
- data/test/performance/suites/thread_profiling.rb +0 -116
- data/test/performance/suites/trace_execution_scoped.rb +0 -32
- data/test/performance/suites/transaction_tracing.rb +0 -106
- data/test/script/build_test_gem.sh +0 -57
- data/test/script/ci.sh +0 -170
- data/test/script/ci_agent-tests_runner.sh +0 -82
- data/test/script/ci_bench.sh +0 -52
- data/test/script/ci_multiverse_runner.sh +0 -63
- data/test/script/path_hash.rb +0 -49
- data/test/test_helper.rb +0 -267
- data/ui/helpers/developer_mode_helper.rb +0 -324
- data/ui/helpers/google_pie_chart.rb +0 -53
- data/ui/views/layouts/newrelic_default.rhtml +0 -48
- data/ui/views/newrelic/_explain_plans.rhtml +0 -27
- data/ui/views/newrelic/_sample.rhtml +0 -20
- data/ui/views/newrelic/_segment.rhtml +0 -28
- data/ui/views/newrelic/_segment_limit_message.rhtml +0 -1
- data/ui/views/newrelic/_segment_row.rhtml +0 -12
- data/ui/views/newrelic/_show_sample_detail.rhtml +0 -24
- data/ui/views/newrelic/_show_sample_sql.rhtml +0 -24
- data/ui/views/newrelic/_show_sample_summary.rhtml +0 -3
- data/ui/views/newrelic/_sql_row.rhtml +0 -16
- data/ui/views/newrelic/_stack_trace.rhtml +0 -15
- data/ui/views/newrelic/_table.rhtml +0 -12
- data/ui/views/newrelic/explain_sql.rhtml +0 -43
- data/ui/views/newrelic/file/images/arrow-close.png +0 -0
- data/ui/views/newrelic/file/images/arrow-open.png +0 -0
- data/ui/views/newrelic/file/images/blue_bar.gif +0 -0
- data/ui/views/newrelic/file/images/file_icon.png +0 -0
- data/ui/views/newrelic/file/images/gray_bar.gif +0 -0
- data/ui/views/newrelic/file/images/new-relic-rpm-desktop.gif +0 -0
- data/ui/views/newrelic/file/images/new_relic_rpm_desktop.gif +0 -0
- data/ui/views/newrelic/file/images/textmate.png +0 -0
- data/ui/views/newrelic/file/javascript/jquery-1.4.2.js +0 -6243
- data/ui/views/newrelic/file/javascript/transaction_sample.js +0 -123
- data/ui/views/newrelic/file/stylesheets/style.css +0 -490
- data/ui/views/newrelic/index.rhtml +0 -70
- data/ui/views/newrelic/sample_not_found.rhtml +0 -2
- data/ui/views/newrelic/show_sample.rhtml +0 -81
- data/ui/views/newrelic/threads.rhtml +0 -45
- data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection/version.rb +0 -7
- data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection.rb +0 -122
- data/vendor/gems/metric_parser-0.1.0.pre1/.specification +0 -116
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb +0 -5
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/action_mailer.rb +0 -18
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_merchant.rb +0 -35
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_record.rb +0 -37
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/apdex.rb +0 -93
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/background_transaction.rb +0 -11
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/client.rb +0 -50
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller.rb +0 -71
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_cpu.rb +0 -47
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_ext.rb +0 -21
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database.rb +0 -52
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database_pool.rb +0 -28
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net.rb +0 -32
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net_parser.rb +0 -21
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/errors.rb +0 -15
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/external.rb +0 -59
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/frontend.rb +0 -44
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/gc.rb +0 -24
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/hibernate_session.rb +0 -11
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java.rb +0 -35
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java_parser.rb +0 -21
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp.rb +0 -38
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp_tag.rb +0 -11
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/mem_cache.rb +0 -59
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/metric_parser.rb +0 -138
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/middleware.rb +0 -34
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/nested.rb +0 -24
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/orm.rb +0 -31
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/other_transaction.rb +0 -44
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet.rb +0 -11
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_context_listener.rb +0 -11
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_filter.rb +0 -11
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_init.rb +0 -11
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr.rb +0 -31
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr_request_handler.rb +0 -19
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring.rb +0 -58
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_controller.rb +0 -10
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_view.rb +0 -10
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_action.rb +0 -24
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_result.rb +0 -24
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/version.rb +0 -9
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/view.rb +0 -74
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_frontend.rb +0 -22
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_service.rb +0 -18
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_transaction.rb +0 -137
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser.rb +0 -70
data/newrelic.yml
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
#
|
2
|
-
# This file configures the New Relic
|
3
|
-
# .NET, PHP, Python and
|
2
|
+
# This file configures the New Relic agent. New Relic monitors Ruby, Java,
|
3
|
+
# .NET, PHP, Python, Node, and Go applications with deep visibility and low
|
4
4
|
# overhead. For more information, visit www.newrelic.com.
|
5
|
-
|
5
|
+
|
6
6
|
# Generated <%= Time.now.strftime('%B %d, %Y') %><%= ", for version #{@agent_version}" if @agent_version %>
|
7
|
-
|
7
|
+
#<%= "\n# #{generated_for_user}\n#" if generated_for_user %>
|
8
8
|
# For full documentation of agent configuration options, please refer to
|
9
9
|
# https://docs.newrelic.com/docs/agents/ruby-agent/installation-configuration/ruby-agent-configuration
|
10
10
|
|
@@ -13,15 +13,841 @@ common: &default_settings
|
|
13
13
|
license_key: <%= license_key %>
|
14
14
|
|
15
15
|
# Your application name. Renaming here affects where data displays in New
|
16
|
-
# Relic.
|
16
|
+
# Relic. For more details, see https://docs.newrelic.com/docs/apm/new-relic-apm/maintenance/renaming-applications
|
17
17
|
app_name: <%= app_name %>
|
18
18
|
|
19
19
|
# To disable the agent regardless of other settings, uncomment the following:
|
20
20
|
# agent_enabled: false
|
21
21
|
|
22
|
-
# Logging level for log/newrelic_agent.log
|
22
|
+
# Logging level for log/newrelic_agent.log; options are error, warn, info, or
|
23
|
+
# debug.
|
23
24
|
log_level: info
|
24
25
|
|
26
|
+
# All of the following configuration options are optional. Review them, and
|
27
|
+
# uncomment or edit them if they appear relevant to your application needs.
|
28
|
+
|
29
|
+
# An array of ActiveSupport custom event names to subscribe to and instrument. For
|
30
|
+
# example,
|
31
|
+
# - one.custom.event
|
32
|
+
# - another.event
|
33
|
+
# - a.third.event
|
34
|
+
# active_support_custom_events_names: []
|
35
|
+
|
36
|
+
# If false, all LLM instrumentation (OpenAI only for now) will be disabled and no
|
37
|
+
# metrics, events, or spans will be sent. AI Monitoring is automatically disabled
|
38
|
+
# if high_security mode is enabled.
|
39
|
+
# ai_monitoring.enabled: false
|
40
|
+
|
41
|
+
# If false, LLM instrumentation (OpenAI only for now) will not capture input and
|
42
|
+
# output content on specific LLM events.
|
43
|
+
# The excluded attributes include:
|
44
|
+
# * content from LlmChatCompletionMessage events
|
45
|
+
# * input from LlmEmbedding events
|
46
|
+
# This is an optional security setting to prevent recording sensitive data sent to
|
47
|
+
# and received from your LLMs.
|
48
|
+
# ai_monitoring.record_content.enabled: true
|
49
|
+
|
50
|
+
# If true, enables capture of all HTTP request headers for all destinations.
|
51
|
+
# allow_all_headers: false
|
52
|
+
|
53
|
+
# Your New Relic userKey. Required when using the New Relic REST API v2 to record
|
54
|
+
# deployments using the newrelic deployments command.
|
55
|
+
# api_key: ""
|
56
|
+
|
57
|
+
# If true, enables log decoration and the collection of log events and metrics.
|
58
|
+
# application_logging.enabled: true
|
59
|
+
|
60
|
+
# A hash with key/value pairs to add as custom attributes to all log events
|
61
|
+
# forwarded to New Relic. If sending using an environment variable, the value must
|
62
|
+
# be formatted like: "key1=value1,key2=value2"
|
63
|
+
# application_logging.forwarding.custom_attributes: {}
|
64
|
+
|
65
|
+
# If true, the agent captures log records emitted by your application.
|
66
|
+
# application_logging.forwarding.enabled: true
|
67
|
+
|
68
|
+
# Sets the minimum level a log event must have to be forwarded to New Relic.
|
69
|
+
# This is based on the integer values of Ruby's Logger::Severity constants:
|
70
|
+
# https://github.com/ruby/ruby/blob/master/lib/logger/severity.rb
|
71
|
+
# The intention is to forward logs with the level given to the configuration, as
|
72
|
+
# well as any logs with a higher level of severity.
|
73
|
+
# For example, setting this value to "debug" will forward all log events to New
|
74
|
+
# Relic. Setting this value to "error" will only forward log events with the
|
75
|
+
# levels "error", "fatal", and "unknown".
|
76
|
+
# Valid values (ordered lowest to highest):
|
77
|
+
# * "debug"
|
78
|
+
# * "info"
|
79
|
+
# * "warn"
|
80
|
+
# * "error"
|
81
|
+
# * "fatal"
|
82
|
+
# * "unknown"
|
83
|
+
# application_logging.forwarding.log_level: debug
|
84
|
+
|
85
|
+
# Defines the maximum number of log records to buffer in memory at a time.
|
86
|
+
# application_logging.forwarding.max_samples_stored: 10000
|
87
|
+
|
88
|
+
# If true, the agent decorates logs with metadata to link to entities, hosts,
|
89
|
+
# traces, and spans.
|
90
|
+
# application_logging.local_decorating.enabled: false
|
91
|
+
|
92
|
+
# If true, the agent captures metrics related to logging for your application.
|
93
|
+
# application_logging.metrics.enabled: true
|
94
|
+
|
95
|
+
# If true, enables capture of attributes for all destinations.
|
96
|
+
# attributes.enabled: true
|
97
|
+
|
98
|
+
# Prefix of attributes to exclude from all destinations. Allows * as wildcard at
|
99
|
+
# end.
|
100
|
+
# attributes.exclude: []
|
101
|
+
|
102
|
+
# Prefix of attributes to include in all destinations. Allows * as wildcard at
|
103
|
+
# end.
|
104
|
+
# attributes.include: []
|
105
|
+
|
106
|
+
# If true, enables an audit log which logs communications with the New Relic
|
107
|
+
# collector.
|
108
|
+
# audit_log.enabled: false
|
109
|
+
|
110
|
+
# List of allowed endpoints to include in audit log.
|
111
|
+
# audit_log.endpoints: [".*"]
|
112
|
+
|
113
|
+
# Specifies a path to the audit log file (including the filename).
|
114
|
+
# audit_log.path: log/newrelic_audit.log
|
115
|
+
|
116
|
+
# Specify a list of constants that should prevent the agent from starting
|
117
|
+
# automatically. Separate individual constants with a comma ,. For example,
|
118
|
+
# "Rails::Console,UninstrumentedBackgroundJob".
|
119
|
+
# autostart.denylisted_constants: Rails::Command::ConsoleCommand,Rails::Command::CredentialsCommand,Rails::Command::Db::System::ChangeCommand,Rails::Command::DbConsoleCommand,Rails::Command::DestroyCommand,Rails::Command::DevCommand,Rails::Command::EncryptedCommand,Rails::Command::GenerateCommand,Rails::Command::InitializersCommand,Rails::Command::NotesCommand,Rails::Command::RoutesCommand,Rails::Command::RunnerCommand,Rails::Command::SecretsCommand,Rails::Console,Rails::DBConsole
|
120
|
+
|
121
|
+
# Defines a comma-delimited list of executables that the agent should not
|
122
|
+
# instrument. For example, "rake,my_ruby_script.rb".
|
123
|
+
# autostart.denylisted_executables: irb,rspec
|
124
|
+
|
125
|
+
# Defines a comma-delimited list of Rake tasks that the agent should not
|
126
|
+
# instrument. For example, "assets:precompile,db:migrate".
|
127
|
+
# autostart.denylisted_rake_tasks: about,assets:clean,assets:clobber,assets:environment,assets:precompile,assets:precompile:all,db:create,db:drop,db:fixtures:load,db:migrate,db:migrate:status,db:rollback,db:schema:cache:clear,db:schema:cache:dump,db:schema:dump,db:schema:load,db:seed,db:setup,db:structure:dump,db:version,doc:app,log:clear,middleware,notes,notes:custom,rails:template,rails:update,routes,secret,spec,spec:features,spec:requests,spec:controllers,spec:helpers,spec:models,spec:views,spec:routing,spec:rcov,stats,test,test:all,test:all:db,test:recent,test:single,test:uncommitted,time:zones:all,tmp:clear,tmp:create,webpacker:compile
|
128
|
+
|
129
|
+
# Backports the faster ActiveRecord connection lookup introduced in Rails 6, which
|
130
|
+
# improves agent performance when instrumenting ActiveRecord. Note that this
|
131
|
+
# setting may not be compatible with other gems that patch ActiveRecord.
|
132
|
+
# backport_fast_active_record_connection_lookup: false
|
133
|
+
|
134
|
+
# If true, the agent captures attributes from browser monitoring.
|
135
|
+
# browser_monitoring.attributes.enabled: false
|
136
|
+
|
137
|
+
# Prefix of attributes to exclude from browser monitoring. Allows * as wildcard at
|
138
|
+
# end.
|
139
|
+
# browser_monitoring.attributes.exclude: []
|
140
|
+
|
141
|
+
# Prefix of attributes to include in browser monitoring. Allows * as wildcard at
|
142
|
+
# end.
|
143
|
+
# browser_monitoring.attributes.include: []
|
144
|
+
|
145
|
+
# If true, enables auto-injection of the JavaScript header for page load timing
|
146
|
+
# (sometimes referred to as real user monitoring or RUM).
|
147
|
+
# browser_monitoring.auto_instrument: true
|
148
|
+
|
149
|
+
# If true, enables auto-injection of Content Security Policy Nonce in browser
|
150
|
+
# monitoring scripts. For now, auto-injection only works with Rails 5.2+.
|
151
|
+
# browser_monitoring.content_security_policy_nonce: true
|
152
|
+
|
153
|
+
# Manual override for the path to your local CA bundle. This CA bundle will be
|
154
|
+
# used to validate the SSL certificate presented by New Relic's data collection
|
155
|
+
# service.
|
156
|
+
# ca_bundle_path: nil
|
157
|
+
|
158
|
+
# Enable or disable the capture of memcache keys from transaction traces.
|
159
|
+
# capture_memcache_keys: false
|
160
|
+
|
161
|
+
# When true, the agent captures HTTP request parameters and attaches them to
|
162
|
+
# transaction traces, traced errors, and TransactionError events.
|
163
|
+
# When using the capture_params setting, the Ruby agent will not attempt to filter
|
164
|
+
# secret information. Recommendation: To filter secret information from request
|
165
|
+
# parameters, use the attributes.include setting instead. For more information,
|
166
|
+
# see the Ruby attribute examples.
|
167
|
+
# capture_params: false
|
168
|
+
|
169
|
+
# If true, the agent will clear Tracer::State in Agent.drop_buffered_data.
|
170
|
+
# clear_transaction_state_after_fork: false
|
171
|
+
|
172
|
+
# If true, the agent will report source code level metrics for traced methods.
|
173
|
+
# see:
|
174
|
+
# https://docs.newrelic.com/docs/apm/agents/ruby-agent/features/ruby-codestream-integration/
|
175
|
+
# code_level_metrics.enabled: true
|
176
|
+
|
177
|
+
# Path to newrelic.yml. If undefined, the agent checks the following directories
|
178
|
+
# (in order):
|
179
|
+
# * config/newrelic.yml
|
180
|
+
# * newrelic.yml
|
181
|
+
# * $HOME/.newrelic/newrelic.yml
|
182
|
+
# * $HOME/newrelic.yml
|
183
|
+
# config_path: newrelic.yml
|
184
|
+
|
185
|
+
# If false, custom attributes will not be sent on events.
|
186
|
+
# custom_attributes.enabled: true
|
187
|
+
|
188
|
+
# If true, the agent captures custom events.
|
189
|
+
# custom_insights_events.enabled: true
|
190
|
+
|
191
|
+
# * Specify a maximum number of custom events to buffer in memory at a time.'
|
192
|
+
# * When configuring the agent for AI monitoring, set to max value 100000. This
|
193
|
+
# ensures the agent captures the maximum amount of LLM events.
|
194
|
+
# custom_insights_events.max_samples_stored: 3000
|
195
|
+
|
196
|
+
# If false, the agent will not add database_name parameter to transaction or slow
|
197
|
+
# sql traces.
|
198
|
+
# datastore_tracer.database_name_reporting.enabled: true
|
199
|
+
|
200
|
+
# If false, the agent will not report datastore instance metrics, nor add host or
|
201
|
+
# port_path_or_id parameters to transaction or slow SQL traces.
|
202
|
+
# datastore_tracer.instance_reporting.enabled: true
|
203
|
+
|
204
|
+
# If true, disables Action Cable instrumentation.
|
205
|
+
# disable_action_cable_instrumentation: false
|
206
|
+
|
207
|
+
# If true, disables Action Controller instrumentation.
|
208
|
+
# disable_action_controller: false
|
209
|
+
|
210
|
+
# If true, disables Action Mailbox instrumentation.
|
211
|
+
# disable_action_mailbox: false
|
212
|
+
|
213
|
+
# If true, disables Action Mailer instrumentation.
|
214
|
+
# disable_action_mailer: false
|
215
|
+
|
216
|
+
# If true, disables Active Record instrumentation.
|
217
|
+
# disable_active_record_instrumentation: false
|
218
|
+
|
219
|
+
# If true, disables instrumentation for Active Record 4+
|
220
|
+
# disable_active_record_notifications: false
|
221
|
+
|
222
|
+
# If true, disables Active Storage instrumentation.
|
223
|
+
# disable_active_storage: false
|
224
|
+
|
225
|
+
# If true, disables Active Support instrumentation.
|
226
|
+
# disable_active_support: false
|
227
|
+
|
228
|
+
# If true, disables Active Job instrumentation.
|
229
|
+
# disable_activejob: false
|
230
|
+
|
231
|
+
# If true, the agent won't sample the CPU usage of the host process.
|
232
|
+
# disable_cpu_sampler: false
|
233
|
+
|
234
|
+
# If true, the agent won't measure the depth of Delayed Job queues.
|
235
|
+
# disable_delayed_job_sampler: false
|
236
|
+
|
237
|
+
# If true, disables the use of GC::Profiler to measure time spent in garbage
|
238
|
+
# collection
|
239
|
+
# disable_gc_profiler: false
|
240
|
+
|
241
|
+
# If true, the agent won't sample the memory usage of the host process.
|
242
|
+
# disable_memory_sampler: false
|
243
|
+
|
244
|
+
# If true, the agent won't wrap third-party middlewares in instrumentation
|
245
|
+
# (regardless of whether they are installed via Rack::Builder or Rails).
|
246
|
+
# When middleware instrumentation is disabled, if an application is using
|
247
|
+
# middleware that could alter the response code, the HTTP status code reported on
|
248
|
+
# the transaction may not reflect the altered value.
|
249
|
+
# disable_middleware_instrumentation: false
|
250
|
+
|
251
|
+
# If true, disables agent middleware for Roda. This middleware is responsible for
|
252
|
+
# advanced feature support such as page load timing and error collection.
|
253
|
+
# disable_roda_auto_middleware: false
|
254
|
+
|
255
|
+
# If true, disables the collection of sampler metrics. Sampler metrics are metrics
|
256
|
+
# that are not event-based (such as CPU time or memory usage).
|
257
|
+
# disable_samplers: false
|
258
|
+
|
259
|
+
# If true, disables Sequel instrumentation.
|
260
|
+
# disable_sequel_instrumentation: false
|
261
|
+
|
262
|
+
# If true, disables Sidekiq instrumentation.
|
263
|
+
# disable_sidekiq: false
|
264
|
+
|
265
|
+
# If true, disables agent middleware for Sinatra. This middleware is responsible
|
266
|
+
# for advanced feature support such as cross application tracing, page load
|
267
|
+
# timing, and error collection.
|
268
|
+
# Cross application tracing is deprecated in favor of distributed tracing.
|
269
|
+
# Distributed tracing is on by default for Ruby agent versions 8.0.0 and above.
|
270
|
+
# Middlewares are not required to support distributed tracing.
|
271
|
+
# To continue using cross application tracing, update the following options in
|
272
|
+
# your newrelic.yml configuration file:
|
273
|
+
# ``yaml
|
274
|
+
# # newrelic.yml
|
275
|
+
# cross_application_tracer:
|
276
|
+
# enabled: true
|
277
|
+
# distributed_tracing:
|
278
|
+
# enabled: false
|
279
|
+
# ``
|
280
|
+
# disable_sinatra_auto_middleware: false
|
281
|
+
|
282
|
+
# If true, disables view instrumentation.
|
283
|
+
# disable_view_instrumentation: false
|
284
|
+
|
285
|
+
# If true, the agent won't sample performance measurements from the Ruby VM.
|
286
|
+
# disable_vm_sampler: false
|
287
|
+
|
288
|
+
# Distributed tracing lets you see the path that a request takes through your
|
289
|
+
# distributed system. Enabling distributed tracing changes the behavior of some
|
290
|
+
# New Relic features, so carefully consult the transition guide before you enable
|
291
|
+
# this feature.
|
292
|
+
# distributed_tracing.enabled: true
|
293
|
+
|
294
|
+
# If true, the agent captures Elasticsearch queries in transaction traces.
|
295
|
+
# elasticsearch.capture_queries: true
|
296
|
+
|
297
|
+
# If true, the agent obfuscates Elasticsearch queries in transaction traces.
|
298
|
+
# elasticsearch.obfuscate_queries: true
|
299
|
+
|
300
|
+
# If true, the agent captures attributes from error collection.
|
301
|
+
# error_collector.attributes.enabled: true
|
302
|
+
|
303
|
+
# Prefix of attributes to exclude from error collection. Allows * as wildcard at
|
304
|
+
# end.
|
305
|
+
# error_collector.attributes.exclude: []
|
306
|
+
|
307
|
+
# Prefix of attributes to include in error collection. Allows * as wildcard at
|
308
|
+
# end.
|
309
|
+
# error_collector.attributes.include: []
|
310
|
+
|
311
|
+
# If true, the agent collects TransactionError events.
|
312
|
+
# error_collector.capture_events: true
|
313
|
+
|
314
|
+
# If true, the agent captures traced errors and error count metrics.
|
315
|
+
# error_collector.enabled: true
|
316
|
+
|
317
|
+
# A list of error classes that the agent should treat as expected.
|
318
|
+
# This option can't be set via environment variable.
|
319
|
+
# error_collector.expected_classes: []
|
320
|
+
|
321
|
+
# A map of error classes to a list of messages. When an error of one of the
|
322
|
+
# classes specified here occurs, if its error message contains one of the strings
|
323
|
+
# corresponding to it here, that error will be treated as expected.
|
324
|
+
# This option can't be set via environment variable.
|
325
|
+
# error_collector.expected_messages: {}
|
326
|
+
|
327
|
+
# A comma separated list of status codes, possibly including ranges. Errors
|
328
|
+
# associated with these status codes, where applicable, will be treated as
|
329
|
+
# expected.
|
330
|
+
# error_collector.expected_status_codes: ""
|
331
|
+
|
332
|
+
# A list of error classes that the agent should ignore.
|
333
|
+
# This option can't be set via environment variable.
|
334
|
+
# error_collector.ignore_classes: ["ActionController::RoutingError", "Sinatra::NotFound"]
|
335
|
+
|
336
|
+
# A map of error classes to a list of messages. When an error of one of the
|
337
|
+
# classes specified here occurs, if its error message contains one of the strings
|
338
|
+
# corresponding to it here, that error will be ignored.
|
339
|
+
# This option can't be set via environment variable.
|
340
|
+
# error_collector.ignore_messages: {}
|
341
|
+
|
342
|
+
# A comma separated list of status codes, possibly including ranges. Errors
|
343
|
+
# associated with these status codes, where applicable, will be ignored.
|
344
|
+
# error_collector.ignore_status_codes: ""
|
345
|
+
|
346
|
+
# Defines the maximum number of frames in an error backtrace. Backtraces over this
|
347
|
+
# amount are truncated in the middle, preserving the beginning and the end of the
|
348
|
+
# stack trace.
|
349
|
+
# error_collector.max_backtrace_frames: 50
|
350
|
+
|
351
|
+
# Defines the maximum number of TransactionError events reported per harvest
|
352
|
+
# cycle.
|
353
|
+
# error_collector.max_event_samples_stored: 100
|
354
|
+
|
355
|
+
# Allows newrelic distributed tracing headers to be suppressed on outbound
|
356
|
+
# requests.
|
357
|
+
# exclude_newrelic_header: false
|
358
|
+
|
359
|
+
# The exit handler that sends all cached data to the collector before shutting
|
360
|
+
# down is forcibly installed. This is true even when it detects scenarios where it
|
361
|
+
# generally should not be. The known use case for this option is when Sinatra runs
|
362
|
+
# as an embedded service within another framework. The agent detects the Sinatra
|
363
|
+
# app and skips the at_exit handler as a result. Sinatra classically runs the
|
364
|
+
# entire application in an at_exit block and would otherwise misbehave if the
|
365
|
+
# agent's at_exit handler was also installed in those circumstances. Note:
|
366
|
+
# send_data_on_exit should also be set to true in tandem with this setting.
|
367
|
+
# force_install_exit_handler: false
|
368
|
+
|
369
|
+
# Ordinarily the agent reports dyno names with a trailing dot and process ID (for
|
370
|
+
# example, worker.3). You can remove this trailing data by specifying the prefixes
|
371
|
+
# you want to report without trailing data (for example, worker).
|
372
|
+
# heroku.dyno_name_prefixes_to_shorten: ["scheduler", "run"]
|
373
|
+
|
374
|
+
# If true, the agent uses Heroku dyno names as the hostname.
|
375
|
+
# heroku.use_dyno_names: true
|
376
|
+
|
377
|
+
# If true, enables high security mode. Ensure you understand the implications of
|
378
|
+
# high security mode before enabling this setting.
|
379
|
+
# high_security: false
|
380
|
+
|
381
|
+
# If true (the default), data sent to the trace observer is batched instead of
|
382
|
+
# sending each span individually.
|
383
|
+
# infinite_tracing.batching: true
|
384
|
+
|
385
|
+
# Configure the compression level for data sent to the trace observer.
|
386
|
+
# May be one of: :none, :low, :medium, :high.
|
387
|
+
# Set the level to :none to disable compression.
|
388
|
+
# infinite_tracing.compression_level: high
|
389
|
+
|
390
|
+
# Configures the hostname for the trace observer Host. When configured, enables
|
391
|
+
# tail-based sampling by sending all recorded spans to a trace observer for
|
392
|
+
# further sampling decisions, irrespective of any usual agent sampling decision.
|
393
|
+
# infinite_tracing.trace_observer.host: ""
|
394
|
+
|
395
|
+
# Configures the TCP/IP port for the trace observer Host
|
396
|
+
# infinite_tracing.trace_observer.port: 443
|
397
|
+
|
398
|
+
# Controls auto-instrumentation of ActiveSupport::BroadcastLogger at start up. May
|
399
|
+
# be one of: auto, prepend, chain, disabled. Used in Rails versions >= 7.1.
|
400
|
+
# instrumentation.active_support_broadcast_logger: auto
|
401
|
+
|
402
|
+
# Controls auto-instrumentation of ActiveSupport::Logger at start up. May be one
|
403
|
+
# of: auto, prepend, chain, disabled. Used in Rails versions below 7.1.
|
404
|
+
# instrumentation.active_support_logger: auto
|
405
|
+
|
406
|
+
# Controls auto-instrumentation of Async::HTTP at start up. May be one of: auto,
|
407
|
+
# prepend, chain, disabled.
|
408
|
+
# instrumentation.async_http: auto
|
409
|
+
|
410
|
+
# Controls auto-instrumentation of bunny at start-up. May be one of: auto,
|
411
|
+
# prepend, chain, disabled.
|
412
|
+
# instrumentation.bunny: auto
|
413
|
+
|
414
|
+
# Controls auto-instrumentation of the concurrent-ruby library at start-up. May be
|
415
|
+
# one of: auto, prepend, chain, disabled.
|
416
|
+
# instrumentation.concurrent_ruby: auto
|
417
|
+
|
418
|
+
# Controls auto-instrumentation of Curb at start-up. May be one of: auto, prepend,
|
419
|
+
# chain, disabled.
|
420
|
+
# instrumentation.curb: auto
|
421
|
+
|
422
|
+
# Controls auto-instrumentation of Delayed Job at start-up. May be one of: auto,
|
423
|
+
# prepend, chain, disabled.
|
424
|
+
# instrumentation.delayed_job: auto
|
425
|
+
|
426
|
+
# Controls auto-instrumentation of the aws-sdk-dynamodb library at start-up. May
|
427
|
+
# be one of auto, prepend, chain, disabled.
|
428
|
+
# instrumentation.dynamodb: auto
|
429
|
+
|
430
|
+
# Controls auto-instrumentation of the elasticsearch library at start-up. May be
|
431
|
+
# one of: auto, prepend, chain, disabled.
|
432
|
+
# instrumentation.elasticsearch: auto
|
433
|
+
|
434
|
+
# Controls auto-instrumentation of ethon at start up. May be one of auto, prepend,
|
435
|
+
# chain, disabled
|
436
|
+
# instrumentation.ethon: auto
|
437
|
+
|
438
|
+
# Controls auto-instrumentation of Excon at start-up. May be one of: enabled,
|
439
|
+
# disabled.
|
440
|
+
# instrumentation.excon: enabled
|
441
|
+
|
442
|
+
# Controls auto-instrumentation of the Fiber class at start-up. May be one of:
|
443
|
+
# auto, prepend, chain, disabled.
|
444
|
+
# instrumentation.fiber: auto
|
445
|
+
|
446
|
+
# Controls auto-instrumentation of Grape at start-up. May be one of: auto,
|
447
|
+
# prepend, chain, disabled.
|
448
|
+
# instrumentation.grape: auto
|
449
|
+
|
450
|
+
# Specifies a list of hostname patterns separated by commas that will match gRPC
|
451
|
+
# hostnames that traffic is to be ignored by New Relic for. New Relic's gRPC
|
452
|
+
# client instrumentation will ignore traffic streamed to a host matching any of
|
453
|
+
# these patterns, and New Relic's gRPC server instrumentation will ignore traffic
|
454
|
+
# for a server running on a host whose hostname matches any of these patterns. By
|
455
|
+
# default, no traffic is ignored when gRPC instrumentation is itself enabled. For
|
456
|
+
# example, "private.com$,exception.*"
|
457
|
+
# instrumentation.grpc.host_denylist: []
|
458
|
+
|
459
|
+
# Controls auto-instrumentation of gRPC clients at start-up. May be one of: auto,
|
460
|
+
# prepend, chain, disabled.
|
461
|
+
# instrumentation.grpc_client: auto
|
462
|
+
|
463
|
+
# Controls auto-instrumentation of gRPC servers at start-up. May be one of: auto,
|
464
|
+
# prepend, chain, disabled.
|
465
|
+
# instrumentation.grpc_server: auto
|
466
|
+
|
467
|
+
# Controls auto-instrumentation of HTTPClient at start-up. May be one of: auto,
|
468
|
+
# prepend, chain, disabled.
|
469
|
+
# instrumentation.httpclient: auto
|
470
|
+
|
471
|
+
# Controls auto-instrumentation of http.rb gem at start-up. May be one of: auto,
|
472
|
+
# prepend, chain, disabled.
|
473
|
+
# instrumentation.httprb: auto
|
474
|
+
|
475
|
+
# Controls auto-instrumentation of httpx at start up. May be one of auto, prepend,
|
476
|
+
# chain, disabled
|
477
|
+
# instrumentation.httpx: auto
|
478
|
+
|
479
|
+
# Controls auto-instrumentation of Ruby standard library Logger at start-up. May
|
480
|
+
# be one of: auto, prepend, chain, disabled.
|
481
|
+
# instrumentation.logger: auto
|
482
|
+
|
483
|
+
# Controls auto-instrumentation of dalli gem for Memcache at start-up. May be one
|
484
|
+
# of: auto, prepend, chain, disabled.
|
485
|
+
# instrumentation.memcache: auto
|
486
|
+
|
487
|
+
# Controls auto-instrumentation of memcache-client gem for Memcache at start-up.
|
488
|
+
# May be one of: auto, prepend, chain, disabled.
|
489
|
+
# instrumentation.memcache_client: auto
|
490
|
+
|
491
|
+
# Controls auto-instrumentation of memcached gem for Memcache at start-up. May be
|
492
|
+
# one of: auto, prepend, chain, disabled.
|
493
|
+
# instrumentation.memcached: auto
|
494
|
+
|
495
|
+
# Controls auto-instrumentation of Mongo at start-up. May be one of: enabled,
|
496
|
+
# disabled.
|
497
|
+
# instrumentation.mongo: enabled
|
498
|
+
|
499
|
+
# Controls auto-instrumentation of Net::HTTP at start-up. May be one of: auto,
|
500
|
+
# prepend, chain, disabled.
|
501
|
+
# instrumentation.net_http: auto
|
502
|
+
|
503
|
+
# Controls auto-instrumentation of Puma::Rack. When enabled, the agent hooks into
|
504
|
+
# the to_app method in Puma::Rack::Builder to find gems to instrument during
|
505
|
+
# application startup. May be one of: auto, prepend, chain, disabled.
|
506
|
+
# instrumentation.puma_rack: auto
|
507
|
+
|
508
|
+
# Controls auto-instrumentation of Puma::Rack::URLMap at start-up. May be one of:
|
509
|
+
# auto, prepend, chain, disabled.
|
510
|
+
# instrumentation.puma_rack_urlmap: auto
|
511
|
+
|
512
|
+
# Controls auto-instrumentation of Rack. When enabled, the agent hooks into the
|
513
|
+
# to_app method in Rack::Builder to find gems to instrument during application
|
514
|
+
# startup. May be one of: auto, prepend, chain, disabled.
|
515
|
+
# instrumentation.rack: auto
|
516
|
+
|
517
|
+
# Controls auto-instrumentation of Rack::URLMap at start-up. May be one of: auto,
|
518
|
+
# prepend, chain, disabled.
|
519
|
+
# instrumentation.rack_urlmap: auto
|
520
|
+
|
521
|
+
# Controls auto-instrumentation of rake at start-up. May be one of: auto, prepend,
|
522
|
+
# chain, disabled.
|
523
|
+
# instrumentation.rake: auto
|
524
|
+
|
525
|
+
# Controls auto-instrumentation of Redis at start-up. May be one of: auto,
|
526
|
+
# prepend, chain, disabled.
|
527
|
+
# instrumentation.redis: auto
|
528
|
+
|
529
|
+
# Controls auto-instrumentation of resque at start-up. May be one of: auto,
|
530
|
+
# prepend, chain, disabled.
|
531
|
+
# instrumentation.resque: auto
|
532
|
+
|
533
|
+
# Controls auto-instrumentation of Roda at start-up. May be one of: auto, prepend,
|
534
|
+
# chain, disabled.
|
535
|
+
# instrumentation.roda: auto
|
536
|
+
|
537
|
+
# Controls auto-instrumentation of the ruby-openai gem at start-up. May be one of:
|
538
|
+
# auto, prepend, chain, disabled. Defaults to disabled in high security mode.
|
539
|
+
# instrumentation.ruby_openai: auto
|
540
|
+
|
541
|
+
# Controls auto-instrumentation of Sinatra at start-up. May be one of: auto,
|
542
|
+
# prepend, chain, disabled.
|
543
|
+
# instrumentation.sinatra: auto
|
544
|
+
|
545
|
+
# Controls auto-instrumentation of Stripe at startup. May be one of: enabled,
|
546
|
+
# disabled.
|
547
|
+
# instrumentation.stripe: enabled
|
548
|
+
|
549
|
+
# Controls auto-instrumentation of the Thread class at start-up to allow the agent
|
550
|
+
# to correctly nest spans inside of an asynchronous transaction. This does not
|
551
|
+
# enable the agent to automatically trace all threads created (see
|
552
|
+
# instrumentation.thread.tracing). May be one of: auto, prepend, chain, disabled.
|
553
|
+
# instrumentation.thread: auto
|
554
|
+
|
555
|
+
# Controls auto-instrumentation of the Thread class at start-up to automatically
|
556
|
+
# add tracing to all Threads created in the application.
|
557
|
+
# instrumentation.thread.tracing: true
|
558
|
+
|
559
|
+
# Controls auto-instrumentation of the Tilt template rendering library at
|
560
|
+
# start-up. May be one of: auto, prepend, chain, disabled.
|
561
|
+
# instrumentation.tilt: auto
|
562
|
+
|
563
|
+
# Controls auto-instrumentation of Typhoeus at start-up. May be one of: auto,
|
564
|
+
# prepend, chain, disabled.
|
565
|
+
# instrumentation.typhoeus: auto
|
566
|
+
|
567
|
+
# Controls auto-instrumentation of ViewComponent at startup. May be one of: auto,
|
568
|
+
# prepend, chain, disabled.
|
569
|
+
# instrumentation.view_component: auto
|
570
|
+
|
571
|
+
# A dictionary of label names and values that will be applied to the data sent
|
572
|
+
# from this agent. May also be expressed as a semicolon-delimited ; string of
|
573
|
+
# colon-separated : pairs. For example, Server:One;Data Center:Primary.
|
574
|
+
# labels: ""
|
575
|
+
|
576
|
+
# Defines a name for the log file.
|
577
|
+
# log_file_name: newrelic_agent.log
|
578
|
+
|
579
|
+
# Defines a path to the agent log file, excluding the filename.
|
580
|
+
# log_file_path: log/
|
581
|
+
|
582
|
+
# Specifies a marshaller for transmitting data to the New Relic collector.
|
583
|
+
# Currently json is the only valid value for this setting.
|
584
|
+
# marshaller: json
|
585
|
+
|
586
|
+
# If true, the agent will collect metadata about messages and attach them as
|
587
|
+
# segment parameters.
|
588
|
+
# message_tracer.segment_parameters.enabled: true
|
589
|
+
|
590
|
+
# If true, the agent captures Mongo queries in transaction traces.
|
591
|
+
# mongo.capture_queries: true
|
592
|
+
|
593
|
+
# If true, the agent obfuscates Mongo queries in transaction traces.
|
594
|
+
# mongo.obfuscate_queries: true
|
595
|
+
|
596
|
+
# When true, the agent transmits data about your app to the New Relic collector.
|
597
|
+
# monitor_mode: true
|
598
|
+
|
599
|
+
# If true, uses Module#prepend rather than alias_method for ActiveRecord
|
600
|
+
# instrumentation.
|
601
|
+
# prepend_active_record_instrumentation: false
|
602
|
+
|
603
|
+
# Specify a custom host name for display in the New Relic UI.
|
604
|
+
# process_host.display_name: default hostname
|
605
|
+
|
606
|
+
# Defines a host for communicating with the New Relic collector via a proxy
|
607
|
+
# server.
|
608
|
+
# proxy_host: nil
|
609
|
+
|
610
|
+
# Defines a password for communicating with the New Relic collector via a proxy
|
611
|
+
# server.
|
612
|
+
# proxy_pass: nil
|
613
|
+
|
614
|
+
# Defines a port for communicating with the New Relic collector via a proxy
|
615
|
+
# server.
|
616
|
+
# proxy_port: 8080
|
617
|
+
|
618
|
+
# Defines a user for communicating with the New Relic collector via a proxy
|
619
|
+
# server.
|
620
|
+
# proxy_user: nil
|
621
|
+
|
622
|
+
# Timeout for waiting on connect to complete before a rake task
|
623
|
+
# rake.connect_timeout: 10
|
624
|
+
|
625
|
+
# Specify an Array of Rake tasks to automatically instrument. This configuration
|
626
|
+
# option converts the Array to a RegEx list. If you'd like to allow all tasks by
|
627
|
+
# default, use rake.tasks: [.+]. No rake tasks will be instrumented unless they're
|
628
|
+
# added to this list. For more information, visit the New Relic Rake
|
629
|
+
# Instrumentation docs.
|
630
|
+
# rake.tasks: []
|
631
|
+
|
632
|
+
# Define transactions you want the agent to ignore, by specifying a list of
|
633
|
+
# patterns matching the URI you want to ignore. For more detail, see the docs on
|
634
|
+
# ignoring specific transactions.
|
635
|
+
# rules.ignore_url_regexes: []
|
636
|
+
|
637
|
+
# Applies Language Agent Security Policy settings.
|
638
|
+
# security_policies_token: ""
|
639
|
+
|
640
|
+
# If true, enables the exit handler that sends data to the New Relic collector
|
641
|
+
# before shutting down.
|
642
|
+
# send_data_on_exit: true
|
643
|
+
|
644
|
+
# If true, the agent will operate in a streamlined mode suitable for use with
|
645
|
+
# short-lived serverless functions. NOTE: Only AWS Lambda functions are supported
|
646
|
+
# currently and this option is not intended for use without New Relic's Ruby
|
647
|
+
# Lambda layer offering.
|
648
|
+
# serverless_mode.enabled: false
|
649
|
+
|
650
|
+
# An array of strings that will collectively serve as a denylist for filtering
|
651
|
+
# which Sidekiq job arguments get reported to New Relic. To capture any Sidekiq
|
652
|
+
# arguments, 'job.sidekiq.args.*' must be added to the separate
|
653
|
+
# :'attributes.include' configuration option. Each string in this array will be
|
654
|
+
# turned into a regular expression via Regexp.new to permit advanced matching. For
|
655
|
+
# job argument hashes, if either a key or value matches the pair will be excluded.
|
656
|
+
# All matching job argument array elements and job argument scalars will be
|
657
|
+
# excluded.
|
658
|
+
# sidekiq.args.exclude: []
|
659
|
+
|
660
|
+
# An array of strings that will collectively serve as an allowlist for filtering
|
661
|
+
# which Sidekiq job arguments get reported to New Relic. To capture any Sidekiq
|
662
|
+
# arguments, 'job.sidekiq.args.*' must be added to the separate
|
663
|
+
# :'attributes.include' configuration option. Each string in this array will be
|
664
|
+
# turned into a regular expression via Regexp.new to permit advanced matching. For
|
665
|
+
# job argument hashes, if either a key or value matches the pair will be included.
|
666
|
+
# All matching job argument array elements and job argument scalars will be
|
667
|
+
# included.
|
668
|
+
# sidekiq.args.include: []
|
669
|
+
|
670
|
+
# If true, the agent collects slow SQL queries.
|
671
|
+
# slow_sql.enabled: true
|
672
|
+
|
673
|
+
# If true, the agent collects explain plans in slow SQL queries. If this setting
|
674
|
+
# is omitted, the transaction_tracer.explain_enabled setting will be applied as
|
675
|
+
# the default setting for explain plans in slow SQL as well.
|
676
|
+
# slow_sql.explain_enabled: true
|
677
|
+
|
678
|
+
# Specify a threshold in seconds. The agent collects slow SQL queries and explain
|
679
|
+
# plans that exceed this threshold.
|
680
|
+
# slow_sql.explain_threshold: 0.5
|
681
|
+
|
682
|
+
# Defines an obfuscation level for slow SQL queries. Valid options are obfuscated,
|
683
|
+
# raw, or none.
|
684
|
+
# slow_sql.record_sql: obfuscated
|
685
|
+
|
686
|
+
# Generate a longer sql_id for slow SQL traces. sql_id is used for aggregation of
|
687
|
+
# similar queries.
|
688
|
+
# slow_sql.use_longer_sql_id: false
|
689
|
+
|
690
|
+
# If true, the agent captures attributes on span events.
|
691
|
+
# span_events.attributes.enabled: true
|
692
|
+
|
693
|
+
# Prefix of attributes to exclude from span events. Allows * as wildcard at end.
|
694
|
+
# span_events.attributes.exclude: []
|
695
|
+
|
696
|
+
# Prefix of attributes to include on span events. Allows * as wildcard at end.
|
697
|
+
# span_events.attributes.include: []
|
698
|
+
|
699
|
+
# If true, enables span event sampling.
|
700
|
+
# span_events.enabled: true
|
701
|
+
|
702
|
+
# * Defines the maximum number of span events reported from a single harvest. Any
|
703
|
+
# Integer between 1 and 10000 is valid.'
|
704
|
+
# * When configuring the agent for AI monitoring, set to max value 10000.This
|
705
|
+
# ensures the agent captures the maximum amount of distributed traces.
|
706
|
+
# span_events.max_samples_stored: 2000
|
707
|
+
|
708
|
+
# Sets the maximum number of span events to buffer when streaming to the trace
|
709
|
+
# observer.
|
710
|
+
# span_events.queue_size: 10000
|
711
|
+
|
712
|
+
# Specify a list of exceptions you do not want the agent to strip when
|
713
|
+
# strip_exception_messages is true. Separate exceptions with a comma. For example,
|
714
|
+
# "ImportantException,PreserveMessageException".
|
715
|
+
# strip_exception_messages.allowed_classes: ""
|
716
|
+
|
717
|
+
# If true, the agent strips messages from all exceptions except those in the
|
718
|
+
# allowlist. Enabled automatically in high security mode.
|
719
|
+
# strip_exception_messages.enabled: false
|
720
|
+
|
721
|
+
# An array of strings to specify which keys and/or values inside a Stripe event's
|
722
|
+
# user_data hash should
|
723
|
+
# not be reported to New Relic. Each string in this array will be turned into a
|
724
|
+
# regular expression via
|
725
|
+
# Regexp.new to permit advanced matching. For each hash pair, if either the key or
|
726
|
+
# value is matched the
|
727
|
+
# pair will not be reported. By default, no user_data is reported, so this option
|
728
|
+
# should only be used if
|
729
|
+
# the stripe.user_data.include option is being used.
|
730
|
+
# stripe.user_data.exclude: []
|
731
|
+
|
732
|
+
# An array of strings to specify which keys inside a Stripe event's user_data hash
|
733
|
+
# should be reported
|
734
|
+
# to New Relic. Each string in this array will be turned into a regular expression
|
735
|
+
# via Regexp.new to
|
736
|
+
# permit advanced matching. Setting the value to ["."] will report all user_data.
|
737
|
+
# stripe.user_data.include: []
|
738
|
+
|
739
|
+
# When set to true, forces a synchronous connection to the New Relic collector
|
740
|
+
# during application startup. For very short-lived processes, this helps ensure
|
741
|
+
# the New Relic agent has time to report.
|
742
|
+
# sync_startup: false
|
743
|
+
|
744
|
+
# If true, tracer state storage is thread-local, otherwise, fiber-local
|
745
|
+
# thread_local_tracer_state: false
|
746
|
+
|
747
|
+
# If true, enables use of the thread profiler.
|
748
|
+
# thread_profiler.enabled: false
|
749
|
+
|
750
|
+
# Defines the maximum number of seconds the agent should spend attempting to
|
751
|
+
# connect to the collector.
|
752
|
+
# timeout: 120
|
753
|
+
|
754
|
+
# If true, the agent captures attributes from transaction events.
|
755
|
+
# transaction_events.attributes.enabled: true
|
756
|
+
|
757
|
+
# Prefix of attributes to exclude from transaction events. Allows * as wildcard at
|
758
|
+
# end.
|
759
|
+
# transaction_events.attributes.exclude: []
|
760
|
+
|
761
|
+
# Prefix of attributes to include in transaction events. Allows * as wildcard at
|
762
|
+
# end.
|
763
|
+
# transaction_events.attributes.include: []
|
764
|
+
|
765
|
+
# If true, enables transaction event sampling.
|
766
|
+
# transaction_events.enabled: true
|
767
|
+
|
768
|
+
# Defines the maximum number of transaction events reported from a single harvest.
|
769
|
+
# transaction_events.max_samples_stored: 1200
|
770
|
+
|
771
|
+
# If true, the agent captures attributes on transaction segments.
|
772
|
+
# transaction_segments.attributes.enabled: true
|
773
|
+
|
774
|
+
# Prefix of attributes to exclude from transaction segments. Allows * as wildcard
|
775
|
+
# at end.
|
776
|
+
# transaction_segments.attributes.exclude: []
|
777
|
+
|
778
|
+
# Prefix of attributes to include on transaction segments. Allows * as wildcard at
|
779
|
+
# end.
|
780
|
+
# transaction_segments.attributes.include: []
|
781
|
+
|
782
|
+
# If true, the agent captures attributes from transaction traces.
|
783
|
+
# transaction_tracer.attributes.enabled: true
|
784
|
+
|
785
|
+
# Prefix of attributes to exclude from transaction traces. Allows * as wildcard at
|
786
|
+
# end.
|
787
|
+
# transaction_tracer.attributes.exclude: []
|
788
|
+
|
789
|
+
# Prefix of attributes to include in transaction traces. Allows * as wildcard at
|
790
|
+
# end.
|
791
|
+
# transaction_tracer.attributes.include: []
|
792
|
+
|
793
|
+
# If true, enables collection of transaction traces.
|
794
|
+
# transaction_tracer.enabled: true
|
795
|
+
|
796
|
+
# If true, enables the collection of explain plans in transaction traces. This
|
797
|
+
# setting will also apply to explain plans in slow SQL traces if
|
798
|
+
# slow_sql.explain_enabled is not set separately.
|
799
|
+
# transaction_tracer.explain_enabled: true
|
800
|
+
|
801
|
+
# Threshold (in seconds) above which the agent will collect explain plans.
|
802
|
+
# Relevant only when explain_enabled is true.
|
803
|
+
# transaction_tracer.explain_threshold: 0.5
|
804
|
+
|
805
|
+
# Maximum number of transaction trace nodes to record in a single transaction
|
806
|
+
# trace.
|
807
|
+
# transaction_tracer.limit_segments: 4000
|
808
|
+
|
809
|
+
# If true, the agent records Redis command arguments in transaction traces.
|
810
|
+
# transaction_tracer.record_redis_arguments: false
|
811
|
+
|
812
|
+
# Obfuscation level for SQL queries reported in transaction trace nodes.
|
813
|
+
# By default, this is set to obfuscated, which strips out the numeric and string
|
814
|
+
# literals.
|
815
|
+
# - If you do not want the agent to capture query information, set this to none.
|
816
|
+
# - If you want the agent to capture all query information in its original form,
|
817
|
+
# set this to raw.
|
818
|
+
# - When you enable high security mode, this is automatically set to obfuscated.
|
819
|
+
# transaction_tracer.record_sql: obfuscated
|
820
|
+
|
821
|
+
# Specify a threshold in seconds. The agent includes stack traces in transaction
|
822
|
+
# trace nodes when the stack trace duration exceeds this threshold.
|
823
|
+
# transaction_tracer.stack_trace_threshold: 0.5
|
824
|
+
|
825
|
+
# Specify a threshold in seconds. Transactions with a duration longer than this
|
826
|
+
# threshold are eligible for transaction traces. Specify a float value or the
|
827
|
+
# string apdex_f.
|
828
|
+
# transaction_tracer.transaction_threshold: 1.0
|
829
|
+
|
830
|
+
# If true, the agent automatically detects that it is running in an AWS
|
831
|
+
# environment.
|
832
|
+
# utilization.detect_aws: true
|
833
|
+
|
834
|
+
# If true, the agent automatically detects that it is running in an Azure
|
835
|
+
# environment.
|
836
|
+
# utilization.detect_azure: true
|
837
|
+
|
838
|
+
# If true, the agent automatically detects that it is running in Docker.
|
839
|
+
# utilization.detect_docker: true
|
840
|
+
|
841
|
+
# If true, the agent automatically detects that it is running in an Google Cloud
|
842
|
+
# Platform environment.
|
843
|
+
# utilization.detect_gcp: true
|
844
|
+
|
845
|
+
# If true, the agent automatically detects that it is running in Kubernetes.
|
846
|
+
# utilization.detect_kubernetes: true
|
847
|
+
|
848
|
+
# If true, the agent automatically detects that it is running in a Pivotal Cloud
|
849
|
+
# Foundry environment.
|
850
|
+
# utilization.detect_pcf: true
|
25
851
|
|
26
852
|
# Environment-specific settings are in this section.
|
27
853
|
# RAILS_ENV or RACK_ENV (as appropriate) is used to determine the environment.
|
@@ -30,10 +856,6 @@ development:
|
|
30
856
|
<<: *default_settings
|
31
857
|
app_name: <%= app_name %> (Development)
|
32
858
|
|
33
|
-
# NOTE: There is substantial overhead when running in developer mode.
|
34
|
-
# Do not use for production or load testing.
|
35
|
-
developer_mode: true
|
36
|
-
|
37
859
|
test:
|
38
860
|
<<: *default_settings
|
39
861
|
# It doesn't make sense to report to New Relic from automated test runs.
|