newrelic_rpm 8.15.0 → 9.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.build_ignore +26 -0
- data/CHANGELOG.md +538 -44
- data/CONTRIBUTING.md +1 -1
- data/Gemfile +1 -1
- data/README.md +11 -6
- data/Rakefile +9 -9
- data/Thorfile +1 -1
- data/bin/newrelic +1 -0
- data/bin/newrelic_cmd +1 -0
- data/bin/nrdebug +36 -36
- data/init.rb +1 -1
- data/lib/new_relic/agent/agent.rb +3 -16
- data/lib/new_relic/agent/agent_helpers/connect.rb +5 -10
- data/lib/new_relic/agent/agent_helpers/harvest.rb +4 -4
- data/lib/new_relic/agent/agent_helpers/shutdown.rb +5 -5
- data/lib/new_relic/agent/agent_helpers/special_startup.rb +3 -4
- data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +47 -39
- data/lib/new_relic/agent/agent_helpers/startup.rb +13 -13
- data/lib/new_relic/agent/agent_helpers/transmit.rb +6 -6
- data/lib/new_relic/agent/agent_logger.rb +9 -9
- data/lib/new_relic/agent/attribute_filter.rb +2 -4
- data/lib/new_relic/agent/attribute_pre_filtering.rb +109 -0
- data/lib/new_relic/agent/attribute_processing.rb +2 -2
- data/lib/new_relic/agent/audit_logger.rb +5 -5
- data/lib/new_relic/agent/autostart.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command.rb +2 -2
- data/lib/new_relic/agent/commands/agent_command_router.rb +5 -4
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +8 -8
- data/lib/new_relic/agent/configuration/default_source.rb +428 -586
- data/lib/new_relic/agent/configuration/environment_source.rb +2 -2
- data/lib/new_relic/agent/configuration/high_security_source.rb +3 -5
- data/lib/new_relic/agent/configuration/manager.rb +16 -2
- data/lib/new_relic/agent/configuration/security_policy_source.rb +10 -26
- data/lib/new_relic/agent/configuration/server_source.rb +24 -24
- data/lib/new_relic/agent/configuration/yaml_source.rb +17 -4
- data/lib/new_relic/agent/connect/request_builder.rb +1 -1
- data/lib/new_relic/agent/connect/response_handler.rb +1 -1
- data/lib/new_relic/agent/custom_event_aggregator.rb +4 -4
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -1
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
- data/lib/new_relic/agent/database/obfuscator.rb +2 -2
- data/lib/new_relic/agent/database.rb +4 -18
- data/lib/new_relic/agent/datastores/metric_helper.rb +5 -5
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +11 -11
- data/lib/new_relic/agent/datastores/redis.rb +6 -6
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +8 -10
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +10 -10
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +7 -7
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +1 -1
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +6 -6
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +7 -7
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +4 -4
- data/lib/new_relic/agent/distributed_tracing.rb +6 -6
- data/lib/new_relic/agent/error_collector.rb +36 -8
- data/lib/new_relic/agent/error_filter.rb +5 -5
- data/lib/new_relic/agent/error_trace_aggregator.rb +5 -4
- data/lib/new_relic/agent/event_loop.rb +3 -3
- data/lib/new_relic/agent/external.rb +1 -1
- data/lib/new_relic/agent/harvester.rb +1 -3
- data/lib/new_relic/agent/heap.rb +2 -1
- data/lib/new_relic/agent/hostname.rb +1 -1
- data/lib/new_relic/agent/http_clients/abstract.rb +9 -21
- data/lib/new_relic/agent/http_clients/async_http_wrappers.rb +83 -0
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +7 -3
- data/lib/new_relic/agent/http_clients/ethon_wrappers.rb +111 -0
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +7 -5
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +4 -0
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +6 -2
- data/lib/new_relic/agent/http_clients/httpx_wrappers.rb +93 -0
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +5 -1
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +8 -5
- data/lib/new_relic/agent/http_clients/uri_util.rb +2 -2
- data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +6 -19
- data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +42 -0
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +3 -2
- 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 +10 -10
- data/lib/new_relic/agent/instrumentation/active_job.rb +16 -3
- data/lib/new_relic/agent/instrumentation/active_job_subscriber.rb +41 -0
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +3 -3
- data/lib/new_relic/agent/instrumentation/active_record.rb +4 -3
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +38 -36
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +5 -4
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +2 -2
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +3 -2
- data/lib/new_relic/agent/instrumentation/active_storage.rb +4 -0
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +2 -30
- data/lib/new_relic/agent/instrumentation/active_support.rb +21 -6
- 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 +13 -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/instrumentation.rb +4 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger.rb +3 -1
- 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 +26 -0
- data/lib/new_relic/agent/instrumentation/bunny/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +12 -3
- data/lib/new_relic/agent/instrumentation/bunny.rb +1 -1
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/instrumentation.rb +3 -4
- data/lib/new_relic/agent/instrumentation/concurrent_ruby/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +7 -6
- data/lib/new_relic/agent/instrumentation/curb/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +9 -5
- data/lib/new_relic/agent/instrumentation/curb.rb +1 -1
- data/lib/new_relic/agent/instrumentation/custom_events.rb +12 -0
- data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +2 -1
- data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +1 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +4 -1
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +2 -1
- data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +8 -4
- data/lib/new_relic/agent/instrumentation/elasticsearch.rb +2 -2
- 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 +5 -1
- data/lib/new_relic/agent/instrumentation/excon.rb +3 -3
- data/lib/new_relic/agent/instrumentation/fiber/chain.rb +27 -0
- data/lib/new_relic/agent/instrumentation/fiber/instrumentation.rb +23 -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/instrumentation.rb +8 -4
- data/lib/new_relic/agent/instrumentation/grape.rb +4 -4
- data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +7 -2
- data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +8 -4
- data/lib/new_relic/agent/instrumentation/grpc_client.rb +2 -2
- data/lib/new_relic/agent/instrumentation/grpc_server.rb +2 -2
- data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +4 -0
- data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +4 -0
- data/lib/new_relic/agent/instrumentation/httprb.rb +1 -1
- 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 +1 -1
- data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +3 -0
- data/lib/new_relic/agent/instrumentation/logger.rb +1 -1
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +3 -1
- data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +14 -5
- data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +3 -1
- data/lib/new_relic/agent/instrumentation/memcache.rb +12 -12
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +3 -3
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +1 -1
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +6 -8
- data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +5 -1
- data/lib/new_relic/agent/instrumentation/net_http.rb +2 -2
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +46 -1
- data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +7 -3
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +2 -2
- data/lib/new_relic/agent/instrumentation/queue_time.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +7 -1
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +7 -2
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +4 -4
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +14 -1
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +12 -15
- data/lib/new_relic/agent/instrumentation/rake.rb +3 -3
- data/lib/new_relic/agent/instrumentation/redis/constants.rb +1 -1
- data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +6 -1
- data/lib/new_relic/agent/instrumentation/redis.rb +1 -1
- data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +4 -0
- data/lib/new_relic/agent/instrumentation/resque.rb +1 -1
- 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/sequel.rb +8 -9
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +10 -10
- data/lib/new_relic/agent/instrumentation/sidekiq/client.rb +4 -0
- data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +26 -3
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +6 -3
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +10 -5
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +2 -4
- 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 +1 -1
- data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +3 -8
- data/lib/new_relic/agent/instrumentation/thread/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +6 -1
- data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +10 -6
- data/lib/new_relic/agent/javascript_instrumentor.rb +29 -24
- data/lib/new_relic/agent/linking_metadata.rb +2 -2
- data/lib/new_relic/agent/log_event_aggregator.rb +64 -17
- data/lib/new_relic/agent/log_event_attributes.rb +115 -0
- data/lib/new_relic/agent/logging.rb +77 -37
- data/lib/new_relic/agent/messaging.rb +9 -7
- data/lib/new_relic/agent/method_tracer.rb +7 -7
- data/lib/new_relic/agent/method_tracer_helpers.rb +27 -6
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +4 -5
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +1 -1
- data/lib/new_relic/agent/monitors/synthetics_monitor.rb +12 -1
- data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +2 -2
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +0 -1
- data/lib/new_relic/agent/new_relic_service.rb +47 -32
- data/lib/new_relic/agent/obfuscator.rb +1 -1
- data/lib/new_relic/agent/parameter_filtering.rb +6 -6
- data/lib/new_relic/agent/pipe_channel_manager.rb +7 -6
- data/lib/new_relic/agent/pipe_service.rb +5 -3
- data/lib/new_relic/agent/priority_sampled_buffer.rb +1 -1
- data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +0 -1
- data/lib/new_relic/agent/rules_engine.rb +1 -1
- data/lib/new_relic/agent/sampler.rb +2 -1
- data/lib/new_relic/agent/sampler_collection.rb +1 -1
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +5 -5
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +9 -9
- data/lib/new_relic/agent/samplers/memory_sampler.rb +9 -9
- data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
- data/lib/new_relic/agent/span_event_aggregator.rb +4 -4
- data/lib/new_relic/agent/span_event_primitive.rb +18 -6
- data/lib/new_relic/agent/sql_sampler.rb +2 -2
- data/lib/new_relic/agent/stats.rb +1 -1
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +1 -1
- data/lib/new_relic/agent/system_info.rb +36 -10
- data/lib/new_relic/agent/threading/agent_thread.rb +1 -1
- data/lib/new_relic/agent/threading/backtrace_node.rb +3 -3
- data/lib/new_relic/agent/threading/backtrace_service.rb +3 -7
- data/lib/new_relic/agent/threading/thread_profile.rb +5 -5
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
- data/lib/new_relic/agent/tracer.rb +25 -16
- data/lib/new_relic/agent/transaction/abstract_segment.rb +109 -48
- data/lib/new_relic/agent/transaction/datastore_segment.rb +1 -1
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +7 -6
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +13 -14
- data/lib/new_relic/agent/transaction/external_request_segment.rb +16 -13
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +2 -3
- data/lib/new_relic/agent/transaction/request_attributes.rb +47 -11
- data/lib/new_relic/agent/transaction/segment.rb +1 -1
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/trace.rb +1 -1
- data/lib/new_relic/agent/transaction/trace_context.rb +4 -4
- data/lib/new_relic/agent/transaction/trace_node.rb +8 -7
- data/lib/new_relic/agent/transaction/tracing.rb +10 -4
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction.rb +90 -58
- data/lib/new_relic/agent/transaction_error_primitive.rb +21 -5
- data/lib/new_relic/agent/transaction_event_aggregator.rb +4 -4
- data/lib/new_relic/agent/transaction_event_primitive.rb +22 -3
- data/lib/new_relic/agent/transaction_sampler.rb +3 -3
- data/lib/new_relic/agent/transaction_time_aggregator.rb +7 -3
- data/lib/new_relic/agent/utilization/aws.rb +1 -1
- data/lib/new_relic/agent/utilization/azure.rb +3 -3
- data/lib/new_relic/agent/utilization/gcp.rb +4 -6
- data/lib/new_relic/agent/utilization/pcf.rb +1 -1
- data/lib/new_relic/agent/utilization/vendor.rb +6 -8
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
- data/lib/new_relic/agent/vm/mri_vm.rb +9 -8
- data/lib/new_relic/agent/worker_loop.rb +1 -1
- data/lib/new_relic/agent.rb +133 -36
- data/lib/new_relic/cli/command.rb +4 -3
- data/lib/new_relic/cli/commands/deployments.rb +26 -25
- data/lib/new_relic/cli/commands/install.rb +23 -23
- data/lib/new_relic/collection_helper.rb +2 -2
- data/lib/new_relic/constants.rb +10 -8
- data/lib/new_relic/control/class_methods.rb +4 -10
- data/lib/new_relic/control/frameworks/rails.rb +44 -20
- data/lib/new_relic/control/frameworks/roda.rb +20 -0
- data/lib/new_relic/control/instance_methods.rb +6 -6
- data/lib/new_relic/control/instrumentation.rb +1 -15
- data/lib/new_relic/control/private_instance_methods.rb +1 -1
- data/lib/new_relic/dependency_detection.rb +20 -18
- data/lib/new_relic/environment_report.rb +4 -4
- data/lib/new_relic/helper.rb +2 -1
- data/lib/new_relic/language_support.rb +10 -1
- data/lib/new_relic/latest_changes.rb +6 -6
- data/lib/new_relic/local_environment.rb +0 -10
- data/lib/new_relic/noticed_error.rb +25 -20
- data/lib/new_relic/rack/agent_hooks.rb +1 -1
- data/lib/new_relic/rack/agent_middleware.rb +0 -16
- data/lib/new_relic/rack/browser_monitoring.rb +21 -17
- data/lib/new_relic/recipes/capistrano3.rb +1 -1
- data/lib/new_relic/recipes/capistrano_legacy.rb +6 -6
- data/lib/new_relic/recipes/helpers/send_deployment.rb +5 -5
- data/lib/new_relic/supportability_helper.rb +4 -1
- data/lib/new_relic/traced_thread.rb +2 -3
- data/lib/new_relic/version.rb +2 -2
- data/lib/newrelic_rpm.rb +4 -4
- data/lib/sequel/extensions/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +6 -6
- data/lib/sequel/plugins/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +4 -4
- data/lib/tasks/bump_version.rake +21 -0
- data/lib/tasks/config.rake +13 -12
- data/lib/tasks/coverage_report.rake +4 -4
- data/lib/tasks/helpers/config.html.erb +93 -0
- data/lib/tasks/helpers/format.rb +19 -15
- data/lib/tasks/helpers/newrelicyml.rb +144 -0
- data/lib/tasks/helpers/version_bump.rb +62 -0
- data/lib/tasks/install.rake +4 -4
- data/lib/tasks/instrumentation_generator/instrumentation.thor +16 -19
- data/lib/tasks/instrumentation_generator/templates/Envfile.tt +1 -1
- data/lib/tasks/instrumentation_generator/templates/chain.tt +1 -1
- data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +1 -1
- data/lib/tasks/newrelic.rb +1 -0
- data/lib/tasks/newrelicyml.rake +13 -0
- data/lib/tasks/tests.rake +77 -6
- data/newrelic.yml +393 -274
- data/newrelic_rpm.gemspec +41 -30
- data/test/agent_helper.rb +25 -24
- metadata +172 -35
- data/.gitignore +0 -42
- data/.project +0 -23
- data/.rubocop.yml +0 -1946
- data/.rubocop_todo.yml +0 -62
- data/.simplecov +0 -15
- data/.snyk +0 -11
- data/.yardopts +0 -27
- data/Brewfile +0 -12
- data/DOCKER.md +0 -167
- data/Dockerfile +0 -10
- data/Guardfile +0 -26
- data/config/database.yml +0 -5
- data/config.dot +0 -278
- data/docker-compose.yml +0 -107
- data/lefthook.yml +0 -9
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +0 -83
- data/lib/new_relic/agent/instrumentation/authlogic.rb +0 -33
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +0 -215
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +0 -36
- data/lib/new_relic/agent/instrumentation/sunspot.rb +0 -41
- data/lib/new_relic/agent/range_extensions.rb +0 -27
- data/lib/tasks/helpers/removers.rb +0 -33
- data/lib/tasks/multiverse.rake +0 -6
- data/lib/tasks/multiverse.rb +0 -77
@@ -13,7 +13,7 @@ module NewRelic
|
|
13
13
|
attr_accessor :distributed_trace_payload
|
14
14
|
attr_writer :distributed_trace_payload_created
|
15
15
|
|
16
|
-
SUPPORTABILITY_DISTRIBUTED_TRACE =
|
16
|
+
SUPPORTABILITY_DISTRIBUTED_TRACE = 'Supportability/DistributedTrace'
|
17
17
|
CREATE_PREFIX = "#{SUPPORTABILITY_DISTRIBUTED_TRACE}/CreatePayload"
|
18
18
|
ACCEPT_PREFIX = "#{SUPPORTABILITY_DISTRIBUTED_TRACE}/AcceptPayload"
|
19
19
|
IGNORE_PREFIX = "#{ACCEPT_PREFIX}/Ignored"
|
@@ -30,10 +30,10 @@ module NewRelic
|
|
30
30
|
IGNORE_ACCEPT_MAJOR_VERSION_METRIC = "#{IGNORE_PREFIX}/MajorVersion"
|
31
31
|
IGNORE_ACCEPT_UNTRUSTED_ACCOUNT_METRIC = "#{IGNORE_PREFIX}/UntrustedAccount"
|
32
32
|
|
33
|
-
LBRACE =
|
33
|
+
LBRACE = '{'
|
34
34
|
NULL_PAYLOAD = 'null'
|
35
35
|
|
36
|
-
NEWRELIC_TRACE_KEY =
|
36
|
+
NEWRELIC_TRACE_KEY = 'HTTP_NEWRELIC'
|
37
37
|
|
38
38
|
def accept_distributed_tracing_incoming_request(request)
|
39
39
|
return unless Agent.config[:'distributed_tracing.enabled']
|
@@ -55,7 +55,7 @@ module NewRelic
|
|
55
55
|
payload
|
56
56
|
rescue => e
|
57
57
|
NewRelic::Agent.increment_metric(CREATE_EXCEPTION_METRIC)
|
58
|
-
NewRelic::Agent.logger.warn(
|
58
|
+
NewRelic::Agent.logger.warn('Failed to create distributed trace payload', e)
|
59
59
|
nil
|
60
60
|
end
|
61
61
|
|
@@ -75,7 +75,7 @@ module NewRelic
|
|
75
75
|
true
|
76
76
|
rescue => e
|
77
77
|
NewRelic::Agent.increment_metric(ACCEPT_EXCEPTION_METRIC)
|
78
|
-
NewRelic::Agent.logger.warn(
|
78
|
+
NewRelic::Agent.logger.warn('Failed to accept distributed trace payload', e)
|
79
79
|
false
|
80
80
|
end
|
81
81
|
|
@@ -114,19 +114,18 @@ module NewRelic
|
|
114
114
|
decoded
|
115
115
|
rescue => e
|
116
116
|
NewRelic::Agent.increment_metric(ACCEPT_PARSE_EXCEPTION_METRIC)
|
117
|
-
NewRelic::Agent.logger.warn(
|
117
|
+
NewRelic::Agent.logger.warn('Error parsing distributed trace payload', e)
|
118
118
|
nil
|
119
119
|
end
|
120
120
|
|
121
121
|
def check_required_fields_present(payload)
|
122
|
-
if
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
!payload.timestamp.nil?
|
122
|
+
if !payload.version.nil? &&
|
123
|
+
!payload.parent_account_id.nil? &&
|
124
|
+
!payload.parent_app_id.nil? &&
|
125
|
+
!payload.parent_type.nil? &&
|
126
|
+
(!payload.transaction_id.nil? || !payload.id.nil?) &&
|
127
|
+
!payload.trace_id.nil? &&
|
128
|
+
!payload.timestamp.nil?
|
130
129
|
|
131
130
|
true
|
132
131
|
else
|
@@ -14,12 +14,13 @@ module NewRelic
|
|
14
14
|
# @api public
|
15
15
|
class ExternalRequestSegment < Segment
|
16
16
|
NR_SYNTHETICS_HEADER = 'X-NewRelic-Synthetics'
|
17
|
+
NR_SYNTHETICS_INFO_HEADER = 'X-NewRelic-Synthetics-Info'
|
17
18
|
APP_DATA_KEY = 'NewRelicAppData'
|
18
19
|
|
19
|
-
EXTERNAL_ALL =
|
20
|
-
EXTERNAL_ALL_WEB =
|
21
|
-
EXTERNAL_ALL_OTHER =
|
22
|
-
MISSING_STATUS_CODE =
|
20
|
+
EXTERNAL_ALL = 'External/all'
|
21
|
+
EXTERNAL_ALL_WEB = 'External/allWeb'
|
22
|
+
EXTERNAL_ALL_OTHER = 'External/allOther'
|
23
|
+
MISSING_STATUS_CODE = 'MissingHTTPStatusCode'
|
23
24
|
|
24
25
|
attr_reader :library, :uri, :procedure, :http_status_code
|
25
26
|
attr_writer :record_agent_attributes
|
@@ -62,14 +63,15 @@ module NewRelic
|
|
62
63
|
# @api public
|
63
64
|
def add_request_headers(request)
|
64
65
|
process_host_header(request)
|
65
|
-
synthetics_header = transaction
|
66
|
-
|
66
|
+
synthetics_header = transaction&.raw_synthetics_header
|
67
|
+
synthetics_info_header = transaction&.raw_synthetics_info_header
|
68
|
+
insert_synthetics_header(request, synthetics_header, synthetics_info_header) if synthetics_header
|
67
69
|
|
68
70
|
return unless record_metrics?
|
69
71
|
|
70
72
|
transaction.distributed_tracer.insert_headers(request)
|
71
73
|
rescue => e
|
72
|
-
NewRelic::Agent.logger.error(
|
74
|
+
NewRelic::Agent.logger.error('Error in add_request_headers', e)
|
73
75
|
end
|
74
76
|
|
75
77
|
# This method extracts app data from an external response if present. If
|
@@ -92,10 +94,10 @@ module NewRelic
|
|
92
94
|
@app_data = data
|
93
95
|
update_segment_name
|
94
96
|
else
|
95
|
-
NewRelic::Agent.logger.debug(
|
97
|
+
NewRelic::Agent.logger.debug('External segment response has invalid cross_app_id')
|
96
98
|
end
|
97
99
|
rescue => e
|
98
|
-
NewRelic::Agent.logger.error(
|
100
|
+
NewRelic::Agent.logger.error('Error in read_response_headers', e)
|
99
101
|
end
|
100
102
|
|
101
103
|
def cross_app_request? # :nodoc:
|
@@ -154,7 +156,7 @@ module NewRelic
|
|
154
156
|
|
155
157
|
end
|
156
158
|
rescue => e
|
157
|
-
NewRelic::Agent.logger.error(
|
159
|
+
NewRelic::Agent.logger.error('error during get_request_metadata', e)
|
158
160
|
end
|
159
161
|
|
160
162
|
# Process obfuscated +String+ sent from a called application that is also running a New Relic agent and
|
@@ -176,13 +178,13 @@ module NewRelic
|
|
176
178
|
@app_data = app_data
|
177
179
|
update_segment_name
|
178
180
|
else
|
179
|
-
NewRelic::Agent.logger.error(
|
181
|
+
NewRelic::Agent.logger.error('error processing response metadata: invalid/non-trusted ID')
|
180
182
|
end
|
181
183
|
end
|
182
184
|
|
183
185
|
nil
|
184
186
|
rescue => e
|
185
|
-
NewRelic::Agent.logger.error(
|
187
|
+
NewRelic::Agent.logger.error('error during process_response_metadata', e)
|
186
188
|
end
|
187
189
|
|
188
190
|
def record_metrics
|
@@ -207,8 +209,9 @@ module NewRelic
|
|
207
209
|
end
|
208
210
|
end
|
209
211
|
|
210
|
-
def insert_synthetics_header(request, header)
|
212
|
+
def insert_synthetics_header(request, header, info)
|
211
213
|
request[NR_SYNTHETICS_HEADER] = header
|
214
|
+
request[NR_SYNTHETICS_INFO_HEADER] = info if info
|
212
215
|
end
|
213
216
|
|
214
217
|
def segment_complete
|
@@ -15,7 +15,6 @@ module NewRelic
|
|
15
15
|
PRODUCE = 'Produce'.freeze
|
16
16
|
QUEUE = 'Queue'.freeze
|
17
17
|
PURGE = 'Purge'.freeze
|
18
|
-
SLASH = '/'.freeze
|
19
18
|
TEMP = 'Temp'.freeze
|
20
19
|
TOPIC = 'Topic'.freeze
|
21
20
|
UNKNOWN = 'Unknown'.freeze
|
@@ -73,7 +72,7 @@ module NewRelic
|
|
73
72
|
return @name if @name
|
74
73
|
|
75
74
|
@name = METRIC_PREFIX + library
|
76
|
-
@name << SLASH << TYPES[destination_type] << SLASH << ACTIONS[action] << SLASH
|
75
|
+
@name << NewRelic::SLASH << TYPES[destination_type] << NewRelic::SLASH << ACTIONS[action] << NewRelic::SLASH
|
77
76
|
|
78
77
|
if destination_type == :temporary_queue || destination_type == :temporary_topic
|
79
78
|
@name << TEMP
|
@@ -91,7 +90,7 @@ module NewRelic
|
|
91
90
|
transaction.distributed_tracer.log_request_headers(headers)
|
92
91
|
end
|
93
92
|
rescue => e
|
94
|
-
NewRelic::Agent.logger.error(
|
93
|
+
NewRelic::Agent.logger.error('Error during message header processing', e)
|
95
94
|
end
|
96
95
|
end
|
97
96
|
end
|
@@ -8,10 +8,16 @@ module NewRelic
|
|
8
8
|
module Agent
|
9
9
|
class Transaction
|
10
10
|
class RequestAttributes
|
11
|
-
|
12
|
-
|
11
|
+
# the HTTP standard has "referrer" mispelled as "referer"
|
12
|
+
attr_reader :accept, :content_length, :content_type, :host, :other_headers, :port, :referer, :request_method,
|
13
|
+
:request_path, :user_agent
|
13
14
|
|
14
|
-
HTTP_ACCEPT_HEADER_KEY =
|
15
|
+
HTTP_ACCEPT_HEADER_KEY = 'HTTP_ACCEPT'.freeze
|
16
|
+
|
17
|
+
BASE_HEADERS = %w[CONTENT_LENGTH CONTENT_TYPE HTTP_ACCEPT HTTP_REFERER HTTP_USER_AGENT PATH_INFO REMOTE_HOST
|
18
|
+
REQUEST_METHOD REQUEST_URI SERVER_PORT].freeze
|
19
|
+
|
20
|
+
ATTRIBUTE_PREFIX = 'request.headers.'
|
15
21
|
|
16
22
|
def initialize(request)
|
17
23
|
@request_path = path_from_request(request)
|
@@ -23,6 +29,7 @@ module NewRelic
|
|
23
29
|
@port = port_from_request(request)
|
24
30
|
@user_agent = attribute_from_request(request, :user_agent)
|
25
31
|
@request_method = attribute_from_request(request, :request_method)
|
32
|
+
@other_headers = other_headers_from_request(request)
|
26
33
|
end
|
27
34
|
|
28
35
|
def assign_agent_attributes(txn)
|
@@ -31,14 +38,17 @@ module NewRelic
|
|
31
38
|
AttributeFilter::DST_ERROR_COLLECTOR
|
32
39
|
|
33
40
|
if referer
|
34
|
-
|
41
|
+
destinations = allow_other_headers? ? default_destinations : AttributeFilter::DST_ERROR_COLLECTOR
|
42
|
+
txn.add_agent_attribute(:'request.headers.referer', referer, destinations)
|
35
43
|
end
|
36
44
|
|
37
45
|
if request_path
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
46
|
+
destinations = if allow_other_headers?
|
47
|
+
default_destinations
|
48
|
+
else
|
49
|
+
AttributeFilter::DST_TRANSACTION_TRACER | AttributeFilter::DST_ERROR_COLLECTOR
|
50
|
+
end
|
51
|
+
txn.add_agent_attribute(:'request.uri', request_path, destinations)
|
42
52
|
end
|
43
53
|
|
44
54
|
if accept
|
@@ -64,6 +74,14 @@ module NewRelic
|
|
64
74
|
if request_method
|
65
75
|
txn.add_agent_attribute(:'request.method', request_method, default_destinations)
|
66
76
|
end
|
77
|
+
|
78
|
+
if port && allow_other_headers?
|
79
|
+
txn.add_agent_attribute(:'request.headers.port', port, default_destinations)
|
80
|
+
end
|
81
|
+
|
82
|
+
other_headers.each do |header, value|
|
83
|
+
txn.add_agent_attribute(header, value, default_destinations)
|
84
|
+
end
|
67
85
|
end
|
68
86
|
|
69
87
|
private
|
@@ -85,12 +103,10 @@ module NewRelic
|
|
85
103
|
# rails construct the PATH_INFO enviroment variable improperly and we're generally
|
86
104
|
# being defensive.
|
87
105
|
|
88
|
-
ROOT_PATH = "/".freeze
|
89
|
-
|
90
106
|
def path_from_request(request)
|
91
107
|
path = attribute_from_request(request, :path) || ''
|
92
108
|
path = HTTPClients::URIUtil.strip_query_string(path)
|
93
|
-
path.empty? ?
|
109
|
+
path.empty? ? NewRelic::ROOT : path
|
94
110
|
end
|
95
111
|
|
96
112
|
def content_length_from_request(request)
|
@@ -116,6 +132,26 @@ module NewRelic
|
|
116
132
|
env[key]
|
117
133
|
end
|
118
134
|
end
|
135
|
+
|
136
|
+
def allow_other_headers?
|
137
|
+
NewRelic::Agent.config[:allow_all_headers] && !NewRelic::Agent.config[:high_security]
|
138
|
+
end
|
139
|
+
|
140
|
+
def other_headers_from_request(request)
|
141
|
+
# confirm that `request` is an instance of `Rack::Request` by checking
|
142
|
+
# for #each_header
|
143
|
+
return NewRelic::EMPTY_HASH unless allow_other_headers? && request.respond_to?(:each_header)
|
144
|
+
|
145
|
+
request.each_header.with_object({}) do |(header, value), hash|
|
146
|
+
next if BASE_HEADERS.include?(header)
|
147
|
+
|
148
|
+
hash[formatted_header(header)] = value
|
149
|
+
end
|
150
|
+
end
|
151
|
+
|
152
|
+
def formatted_header(raw_name)
|
153
|
+
"#{ATTRIBUTE_PREFIX}#{NewRelic::LanguageSupport.camelize_with_first_letter_downcased(raw_name)}".to_sym
|
154
|
+
end
|
119
155
|
end
|
120
156
|
end
|
121
157
|
end
|
@@ -32,7 +32,7 @@ module NewRelic
|
|
32
32
|
if segment = NewRelic::Agent::Tracer.current_segment
|
33
33
|
segment.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
34
34
|
else
|
35
|
-
NewRelic::Agent.logger.debug(
|
35
|
+
NewRelic::Agent.logger.debug('Attempted to merge untrusted attributes without segment')
|
36
36
|
end
|
37
37
|
end
|
38
38
|
|
@@ -20,7 +20,7 @@ module NewRelic
|
|
20
20
|
end
|
21
21
|
end
|
22
22
|
|
23
|
-
SUPPORTABILITY_PREFIX =
|
23
|
+
SUPPORTABILITY_PREFIX = 'Supportability/TraceContext'
|
24
24
|
CREATE_PREFIX = "#{SUPPORTABILITY_PREFIX}/Create"
|
25
25
|
ACCEPT_PREFIX = "#{SUPPORTABILITY_PREFIX}/Accept"
|
26
26
|
TRACESTATE_PREFIX = "#{SUPPORTABILITY_PREFIX}/TraceState"
|
@@ -73,7 +73,7 @@ module NewRelic
|
|
73
73
|
true
|
74
74
|
rescue Exception => e
|
75
75
|
NewRelic::Agent.increment_metric(CREATE_EXCEPTION_METRIC)
|
76
|
-
NewRelic::Agent.logger.warn(
|
76
|
+
NewRelic::Agent.logger.warn('Failed to create trace context payload', e)
|
77
77
|
false
|
78
78
|
end
|
79
79
|
|
@@ -95,7 +95,7 @@ module NewRelic
|
|
95
95
|
|
96
96
|
def create_trace_state_payload
|
97
97
|
unless Agent.config[:'distributed_tracing.enabled']
|
98
|
-
NewRelic::Agent.logger.warn(
|
98
|
+
NewRelic::Agent.logger.warn('Not configured to create WC3 trace context payload')
|
99
99
|
return
|
100
100
|
end
|
101
101
|
|
@@ -144,7 +144,7 @@ module NewRelic
|
|
144
144
|
true
|
145
145
|
rescue => e
|
146
146
|
NewRelic::Agent.increment_metric(ACCEPT_EXCEPTION_METRIC)
|
147
|
-
NewRelic::Agent.logger.warn(
|
147
|
+
NewRelic::Agent.logger.warn('Failed to accept trace context payload', e)
|
148
148
|
false
|
149
149
|
end
|
150
150
|
|
@@ -58,7 +58,7 @@ module NewRelic
|
|
58
58
|
end
|
59
59
|
|
60
60
|
def to_s_compact
|
61
|
-
str =
|
61
|
+
str = +''
|
62
62
|
str << metric_name
|
63
63
|
if children.any?
|
64
64
|
str << "{#{children.map { |cs| cs.to_s_compact }.join(',')}}"
|
@@ -67,9 +67,9 @@ module NewRelic
|
|
67
67
|
end
|
68
68
|
|
69
69
|
def to_debug_str(depth)
|
70
|
-
tab =
|
70
|
+
tab = (+' ') * depth
|
71
71
|
s = tab.clone
|
72
|
-
s << ">> #{'%3i ms' % (@entry_timestamp * 1000)} [#{self.class.name.split(
|
72
|
+
s << ">> #{'%3i ms' % (@entry_timestamp * 1000)} [#{self.class.name.split('::').last}] #{metric_name} \n"
|
73
73
|
unless params.empty?
|
74
74
|
params.each do |k, v|
|
75
75
|
s << "#{tab} -#{'%-16s' % k}: #{v.to_s[0..80]}\n"
|
@@ -136,10 +136,8 @@ module NewRelic
|
|
136
136
|
def each_node(&block)
|
137
137
|
yield(self)
|
138
138
|
|
139
|
-
|
140
|
-
|
141
|
-
node.each_node(&block)
|
142
|
-
end
|
139
|
+
@children&.each do |node|
|
140
|
+
node.each_node(&block)
|
143
141
|
end
|
144
142
|
end
|
145
143
|
|
@@ -149,11 +147,14 @@ module NewRelic
|
|
149
147
|
summary = yield(self)
|
150
148
|
summary.current_nest_count += 1 if summary
|
151
149
|
|
150
|
+
# no then branch coverage
|
151
|
+
# rubocop:disable Style/SafeNavigation
|
152
152
|
if @children
|
153
153
|
@children.each do |node|
|
154
154
|
node.each_node_with_nest_tracking(&block)
|
155
155
|
end
|
156
156
|
end
|
157
|
+
# rubocop:enable Style/SafeNavigation
|
157
158
|
|
158
159
|
summary.current_nest_count -= 1 if summary
|
159
160
|
end
|
@@ -29,14 +29,20 @@ module NewRelic
|
|
29
29
|
else
|
30
30
|
segment.record_on_finish = true
|
31
31
|
::NewRelic::Agent.logger.debug("Segment limit of #{segment_limit} reached, ceasing collection.")
|
32
|
+
|
33
|
+
if finished?
|
34
|
+
::NewRelic::Agent.logger.debug("Transaction #{best_name} has finished but segments still being created, resetting state.")
|
35
|
+
NewRelic::Agent::Tracer.state.reset
|
36
|
+
NewRelic::Agent.record_metric('Supportability/Transaction/SegmentLimitReachedAfterFinished/ResetState', 1)
|
37
|
+
end
|
32
38
|
end
|
33
39
|
segment.transaction_assigned
|
34
40
|
end
|
35
41
|
|
36
42
|
def segment_complete(segment)
|
37
43
|
# if parent was in another thread, remove the current_segment entry for this thread
|
38
|
-
if segment.parent && segment.parent.
|
39
|
-
remove_current_segment_by_thread_id(::
|
44
|
+
if segment.parent && segment.parent.starting_segment_key != NewRelic::Agent::Tracer.current_segment_key
|
45
|
+
remove_current_segment_by_thread_id(NewRelic::Agent::Tracer.current_segment_key)
|
40
46
|
else
|
41
47
|
set_current_segment(segment.parent)
|
42
48
|
end
|
@@ -52,8 +58,8 @@ module NewRelic
|
|
52
58
|
segments.each { |s| s.finalize }
|
53
59
|
end
|
54
60
|
|
55
|
-
WEB_TRANSACTION_TOTAL_TIME =
|
56
|
-
OTHER_TRANSACTION_TOTAL_TIME =
|
61
|
+
WEB_TRANSACTION_TOTAL_TIME = 'WebTransactionTotalTime'.freeze
|
62
|
+
OTHER_TRANSACTION_TOTAL_TIME = 'OtherTransactionTotalTime'.freeze
|
57
63
|
|
58
64
|
def record_total_time_metrics
|
59
65
|
total_time_metric = if recording_web_transaction?
|
@@ -63,7 +63,7 @@ module NewRelic
|
|
63
63
|
#
|
64
64
|
# This value will be forcibly capped by the max_capacity
|
65
65
|
def capacity
|
66
|
-
raise NotImplementedError.new(
|
66
|
+
raise NotImplementedError.new('TransactionSampleBuffer subclasses must provide a capacity override')
|
67
67
|
end
|
68
68
|
|
69
69
|
# Apply hard upper limit to the capacity to prevent users from
|