newrelic_rpm 8.9.0 → 8.10.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.rubocop.yml +23 -8
- data/.rubocop_todo.yml +243 -0
- data/.simplecov +10 -2
- data/.snyk +11 -0
- data/Brewfile +1 -0
- data/CHANGELOG.md +78 -0
- data/Guardfile +1 -0
- data/Rakefile +5 -0
- data/Thorfile +6 -0
- data/bin/newrelic +2 -1
- data/bin/newrelic_cmd +1 -0
- data/bin/nrdebug +3 -2
- data/init.rb +3 -2
- data/install.rb +1 -0
- data/lib/new_relic/agent/adaptive_sampler.rb +4 -3
- data/lib/new_relic/agent/agent/shutdown.rb +3 -2
- data/lib/new_relic/agent/agent/special_startup.rb +3 -2
- data/lib/new_relic/agent/agent/start_worker_thread.rb +15 -14
- data/lib/new_relic/agent/agent/startup.rb +11 -10
- data/lib/new_relic/agent/agent.rb +35 -33
- data/lib/new_relic/agent/agent_logger.rb +2 -1
- data/lib/new_relic/agent/attribute_filter.rb +1 -0
- data/lib/new_relic/agent/attribute_processing.rb +4 -3
- data/lib/new_relic/agent/attributes.rb +2 -1
- data/lib/new_relic/agent/audit_logger.rb +1 -0
- data/lib/new_relic/agent/autostart.rb +1 -0
- data/lib/new_relic/agent/chained_call.rb +1 -0
- data/lib/new_relic/agent/commands/agent_command.rb +1 -0
- data/lib/new_relic/agent/commands/agent_command_router.rb +4 -3
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +1 -0
- data/lib/new_relic/agent/configuration/default_source.rb +35 -7
- data/lib/new_relic/agent/configuration/dotted_hash.rb +1 -0
- data/lib/new_relic/agent/configuration/environment_source.rb +2 -1
- data/lib/new_relic/agent/configuration/event_harvest_config.rb +1 -0
- data/lib/new_relic/agent/configuration/high_security_source.rb +1 -0
- data/lib/new_relic/agent/configuration/manager.rb +2 -1
- data/lib/new_relic/agent/configuration/manual_source.rb +1 -0
- data/lib/new_relic/agent/configuration/mask_defaults.rb +1 -0
- data/lib/new_relic/agent/configuration/security_policy_source.rb +7 -3
- data/lib/new_relic/agent/configuration/server_source.rb +7 -6
- data/lib/new_relic/agent/configuration/yaml_source.rb +4 -1
- data/lib/new_relic/agent/configuration.rb +1 -0
- data/lib/new_relic/agent/connect/request_builder.rb +1 -0
- data/lib/new_relic/agent/connect/response_handler.rb +4 -3
- data/lib/new_relic/agent/custom_event_aggregator.rb +5 -4
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -0
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +1 -0
- data/lib/new_relic/agent/database/obfuscator.rb +2 -1
- data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +1 -0
- data/lib/new_relic/agent/database.rb +3 -2
- data/lib/new_relic/agent/database_adapter.rb +1 -0
- data/lib/new_relic/agent/datastores/metric_helper.rb +9 -8
- data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +2 -0
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +1 -0
- data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +2 -1
- data/lib/new_relic/agent/datastores/mongo.rb +1 -0
- data/lib/new_relic/agent/datastores/redis.rb +3 -2
- data/lib/new_relic/agent/datastores.rb +4 -3
- data/lib/new_relic/agent/deprecator.rb +1 -0
- data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +1 -0
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +16 -16
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +9 -9
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +18 -18
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +8 -8
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +2 -2
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +40 -39
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +16 -14
- data/lib/new_relic/agent/distributed_tracing.rb +17 -17
- data/lib/new_relic/agent/encoding_normalizer.rb +1 -0
- data/lib/new_relic/agent/error_collector.rb +6 -4
- data/lib/new_relic/agent/error_event_aggregator.rb +3 -3
- data/lib/new_relic/agent/error_filter.rb +1 -0
- data/lib/new_relic/agent/error_trace_aggregator.rb +2 -1
- data/lib/new_relic/agent/event_aggregator.rb +20 -19
- data/lib/new_relic/agent/event_buffer.rb +1 -0
- data/lib/new_relic/agent/event_listener.rb +1 -0
- data/lib/new_relic/agent/event_loop.rb +7 -6
- data/lib/new_relic/agent/external.rb +9 -8
- data/lib/new_relic/agent/guid_generator.rb +2 -1
- data/lib/new_relic/agent/harvester.rb +1 -0
- data/lib/new_relic/agent/heap.rb +3 -2
- data/lib/new_relic/agent/hostname.rb +4 -2
- data/lib/new_relic/agent/http_clients/abstract.rb +1 -1
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +5 -5
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +4 -4
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +1 -1
- data/lib/new_relic/agent/http_clients/uri_util.rb +1 -1
- data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +6 -4
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +10 -4
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +6 -4
- data/lib/new_relic/agent/instrumentation/active_job.rb +2 -1
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +2 -1
- data/lib/new_relic/agent/instrumentation/active_record.rb +9 -8
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +15 -14
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +3 -2
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +1 -0
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +5 -3
- data/lib/new_relic/agent/instrumentation/active_storage.rb +2 -1
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +16 -14
- data/lib/new_relic/agent/instrumentation/active_support_logger/chain.rb +1 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +1 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger/prepend.rb +1 -0
- data/lib/new_relic/agent/instrumentation/active_support_logger.rb +2 -1
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +2 -1
- data/lib/new_relic/agent/instrumentation/authlogic.rb +2 -1
- data/lib/new_relic/agent/instrumentation/bunny/chain.rb +10 -9
- data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +10 -10
- data/lib/new_relic/agent/instrumentation/bunny/prepend.rb +4 -3
- data/lib/new_relic/agent/instrumentation/bunny.rb +1 -1
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +13 -9
- data/lib/new_relic/agent/instrumentation/curb/chain.rb +21 -21
- data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +8 -8
- data/lib/new_relic/agent/instrumentation/curb/prepend.rb +2 -2
- data/lib/new_relic/agent/instrumentation/curb.rb +2 -1
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +43 -42
- data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +2 -2
- data/lib/new_relic/agent/instrumentation/delayed_job/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +3 -2
- data/lib/new_relic/agent/instrumentation/excon/middleware.rb +3 -2
- data/lib/new_relic/agent/instrumentation/excon.rb +2 -1
- data/lib/new_relic/agent/instrumentation/grape/chain.rb +6 -5
- data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +5 -4
- data/lib/new_relic/agent/instrumentation/grape/prepend.rb +4 -3
- data/lib/new_relic/agent/instrumentation/grape.rb +1 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +98 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +90 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +112 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +31 -0
- data/lib/new_relic/agent/instrumentation/grpc/helper.rb +33 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/chain.rb +70 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +135 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/rpc_desc_prepend.rb +36 -0
- data/lib/new_relic/agent/instrumentation/grpc/server/rpc_server_prepend.rb +27 -0
- data/lib/new_relic/agent/instrumentation/grpc_client.rb +24 -0
- data/lib/new_relic/agent/instrumentation/grpc_server.rb +26 -0
- data/lib/new_relic/agent/instrumentation/httpclient/chain.rb +1 -0
- data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +6 -5
- data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +1 -0
- data/lib/new_relic/agent/instrumentation/httpclient.rb +2 -1
- data/lib/new_relic/agent/instrumentation/httprb/chain.rb +1 -0
- data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +4 -3
- data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +1 -0
- data/lib/new_relic/agent/instrumentation/httprb.rb +2 -1
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +2 -1
- data/lib/new_relic/agent/instrumentation/logger/chain.rb +2 -1
- data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +5 -0
- data/lib/new_relic/agent/instrumentation/logger/prepend.rb +1 -0
- data/lib/new_relic/agent/instrumentation/logger.rb +2 -1
- data/lib/new_relic/agent/instrumentation/memcache/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +19 -19
- data/lib/new_relic/agent/instrumentation/memcache/helper.rb +8 -8
- data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +17 -14
- data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +14 -14
- data/lib/new_relic/agent/instrumentation/memcache.rb +1 -1
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +1 -0
- data/lib/new_relic/agent/instrumentation/mongo.rb +2 -1
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +14 -12
- data/lib/new_relic/agent/instrumentation/net_http/chain.rb +1 -0
- data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +5 -4
- data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +1 -0
- data/lib/new_relic/agent/instrumentation/net_http.rb +2 -1
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +5 -4
- data/lib/new_relic/agent/instrumentation/padrino/chain.rb +1 -0
- data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +1 -0
- data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +1 -0
- data/lib/new_relic/agent/instrumentation/padrino.rb +2 -1
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +3 -2
- data/lib/new_relic/agent/instrumentation/queue_time.rb +1 -0
- data/lib/new_relic/agent/instrumentation/rack/chain.rb +12 -11
- data/lib/new_relic/agent/instrumentation/rack/helpers.rb +1 -0
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +7 -6
- data/lib/new_relic/agent/instrumentation/rack/prepend.rb +4 -3
- data/lib/new_relic/agent/instrumentation/rack.rb +1 -0
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +6 -5
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -0
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +3 -1
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +3 -1
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb +3 -1
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +3 -2
- data/lib/new_relic/agent/instrumentation/rake/chain.rb +2 -1
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rake/prepend.rb +1 -0
- data/lib/new_relic/agent/instrumentation/rake.rb +3 -2
- data/lib/new_relic/agent/instrumentation/redis/chain.rb +3 -3
- data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +5 -5
- data/lib/new_relic/agent/instrumentation/redis/prepend.rb +3 -3
- data/lib/new_relic/agent/instrumentation/redis.rb +2 -1
- data/lib/new_relic/agent/instrumentation/resque/chain.rb +2 -1
- data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -0
- data/lib/new_relic/agent/instrumentation/resque/prepend.rb +1 -0
- data/lib/new_relic/agent/instrumentation/resque.rb +3 -2
- data/lib/new_relic/agent/instrumentation/sequel.rb +8 -7
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +1 -0
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +6 -4
- data/lib/new_relic/agent/instrumentation/sinatra/chain.rb +1 -0
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +2 -1
- data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +1 -0
- data/lib/new_relic/agent/instrumentation/sinatra/prepend.rb +1 -0
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +2 -1
- data/lib/new_relic/agent/instrumentation/sinatra.rb +2 -1
- data/lib/new_relic/agent/instrumentation/sunspot.rb +2 -1
- data/lib/new_relic/agent/instrumentation/thread/chain.rb +2 -1
- data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +1 -0
- data/lib/new_relic/agent/instrumentation/thread/prepend.rb +1 -0
- data/lib/new_relic/agent/instrumentation/thread.rb +2 -1
- data/lib/new_relic/agent/instrumentation/tilt/chain.rb +1 -0
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +1 -0
- data/lib/new_relic/agent/instrumentation/tilt/prepend.rb +1 -0
- data/lib/new_relic/agent/instrumentation/tilt.rb +1 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +1 -0
- data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +6 -5
- data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +1 -0
- data/lib/new_relic/agent/instrumentation/typhoeus.rb +2 -1
- data/lib/new_relic/agent/instrumentation.rb +1 -0
- data/lib/new_relic/agent/internal_agent_error.rb +1 -0
- data/lib/new_relic/agent/javascript_instrumentor.rb +7 -6
- data/lib/new_relic/agent/linking_metadata.rb +2 -2
- data/lib/new_relic/agent/log_event_aggregator.rb +6 -5
- data/lib/new_relic/agent/log_once.rb +1 -0
- data/lib/new_relic/agent/log_priority.rb +1 -0
- data/lib/new_relic/agent/logging.rb +13 -12
- data/lib/new_relic/agent/memory_logger.rb +1 -0
- data/lib/new_relic/agent/messaging.rb +18 -18
- data/lib/new_relic/agent/method_tracer.rb +6 -5
- data/lib/new_relic/agent/method_tracer_helpers.rb +8 -5
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +3 -2
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +3 -2
- data/lib/new_relic/agent/monitors/inbound_request_monitor.rb +1 -0
- data/lib/new_relic/agent/monitors/synthetics_monitor.rb +2 -1
- data/lib/new_relic/agent/monitors.rb +5 -4
- data/lib/new_relic/agent/new_relic_service/encoders.rb +2 -1
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +4 -3
- data/lib/new_relic/agent/new_relic_service/marshaller.rb +1 -0
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +1 -0
- data/lib/new_relic/agent/new_relic_service.rb +11 -11
- data/lib/new_relic/agent/noticible_error.rb +1 -1
- data/lib/new_relic/agent/null_logger.rb +1 -0
- data/lib/new_relic/agent/obfuscator.rb +2 -1
- data/lib/new_relic/agent/parameter_filtering.rb +1 -0
- data/lib/new_relic/agent/payload_metric_mapping.rb +1 -0
- data/lib/new_relic/agent/pipe_channel_manager.rb +6 -5
- data/lib/new_relic/agent/pipe_service.rb +1 -0
- data/lib/new_relic/agent/prepend_supportability.rb +2 -1
- data/lib/new_relic/agent/priority_sampled_buffer.rb +2 -1
- data/lib/new_relic/agent/range_extensions.rb +8 -27
- data/lib/new_relic/agent/rules_engine/replacement_rule.rb +2 -1
- data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +1 -0
- data/lib/new_relic/agent/rules_engine.rb +2 -1
- data/lib/new_relic/agent/sampler.rb +1 -0
- data/lib/new_relic/agent/sampler_collection.rb +1 -0
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +1 -0
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +1 -0
- data/lib/new_relic/agent/samplers/memory_sampler.rb +5 -4
- data/lib/new_relic/agent/samplers/object_sampler.rb +1 -0
- data/lib/new_relic/agent/samplers/vm_sampler.rb +1 -0
- data/lib/new_relic/agent/span_event_aggregator.rb +2 -1
- data/lib/new_relic/agent/span_event_primitive.rb +15 -11
- data/lib/new_relic/agent/sql_sampler.rb +7 -6
- data/lib/new_relic/agent/stats.rb +3 -1
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +1 -0
- data/lib/new_relic/agent/stats_engine/stats_hash.rb +3 -2
- data/lib/new_relic/agent/stats_engine.rb +1 -0
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +6 -5
- data/lib/new_relic/agent/system_info.rb +8 -7
- data/lib/new_relic/agent/threading/agent_thread.rb +11 -6
- data/lib/new_relic/agent/threading/backtrace_node.rb +6 -3
- data/lib/new_relic/agent/threading/backtrace_service.rb +1 -0
- data/lib/new_relic/agent/threading/thread_profile.rb +1 -0
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -0
- data/lib/new_relic/agent/tracer.rb +17 -14
- data/lib/new_relic/agent/transaction/abstract_segment.rb +64 -31
- data/lib/new_relic/agent/transaction/datastore_segment.rb +12 -11
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +52 -47
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +21 -21
- data/lib/new_relic/agent/transaction/external_request_segment.rb +36 -27
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +6 -5
- data/lib/new_relic/agent/transaction/request_attributes.rb +29 -28
- data/lib/new_relic/agent/transaction/segment.rb +8 -7
- data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +1 -0
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -0
- data/lib/new_relic/agent/transaction/trace.rb +3 -2
- data/lib/new_relic/agent/transaction/trace_builder.rb +10 -9
- data/lib/new_relic/agent/transaction/trace_context.rb +22 -19
- data/lib/new_relic/agent/transaction/trace_node.rb +9 -8
- data/lib/new_relic/agent/transaction/tracing.rb +7 -6
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -0
- data/lib/new_relic/agent/transaction.rb +22 -21
- data/lib/new_relic/agent/transaction_error_primitive.rb +9 -8
- data/lib/new_relic/agent/transaction_event_aggregator.rb +5 -4
- data/lib/new_relic/agent/transaction_event_primitive.rb +3 -3
- data/lib/new_relic/agent/transaction_event_recorder.rb +14 -12
- data/lib/new_relic/agent/transaction_metrics.rb +3 -2
- data/lib/new_relic/agent/transaction_sampler.rb +4 -3
- data/lib/new_relic/agent/transaction_time_aggregator.rb +13 -12
- data/lib/new_relic/agent/utilization/aws.rb +4 -3
- data/lib/new_relic/agent/utilization/azure.rb +1 -0
- data/lib/new_relic/agent/utilization/gcp.rb +6 -5
- data/lib/new_relic/agent/utilization/pcf.rb +3 -2
- data/lib/new_relic/agent/utilization/vendor.rb +27 -26
- data/lib/new_relic/agent/utilization_data.rb +1 -0
- data/lib/new_relic/agent/vm/jruby_vm.rb +1 -0
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -0
- data/lib/new_relic/agent/vm/mri_vm.rb +1 -0
- data/lib/new_relic/agent/vm/snapshot.rb +1 -0
- data/lib/new_relic/agent/vm.rb +1 -0
- data/lib/new_relic/agent/worker_loop.rb +2 -1
- data/lib/new_relic/agent.rb +11 -10
- data/lib/new_relic/cli/command.rb +5 -4
- data/lib/new_relic/cli/commands/deployments.rb +9 -8
- data/lib/new_relic/cli/commands/install.rb +6 -5
- data/lib/new_relic/coerce.rb +4 -4
- data/lib/new_relic/collection_helper.rb +2 -1
- data/lib/new_relic/control/class_methods.rb +1 -0
- data/lib/new_relic/control/frameworks/external.rb +1 -0
- data/lib/new_relic/control/frameworks/rails.rb +3 -2
- data/lib/new_relic/control/frameworks/rails3.rb +1 -0
- data/lib/new_relic/control/frameworks/rails4.rb +1 -0
- data/lib/new_relic/control/frameworks/rails_notifications.rb +1 -0
- data/lib/new_relic/control/frameworks/ruby.rb +1 -0
- data/lib/new_relic/control/frameworks/sinatra.rb +1 -0
- data/lib/new_relic/control/frameworks.rb +1 -0
- data/lib/new_relic/control/instance_methods.rb +5 -4
- data/lib/new_relic/control/instrumentation.rb +7 -6
- data/lib/new_relic/control/server_methods.rb +2 -1
- data/lib/new_relic/control.rb +1 -0
- data/lib/new_relic/delayed_job_injection.rb +1 -0
- data/lib/new_relic/dependency_detection.rb +18 -16
- data/lib/new_relic/environment_report.rb +1 -0
- data/lib/new_relic/helper.rb +4 -3
- data/lib/new_relic/language_support.rb +6 -0
- data/lib/new_relic/latest_changes.rb +1 -0
- data/lib/new_relic/local_environment.rb +5 -6
- data/lib/new_relic/metric_data.rb +3 -2
- data/lib/new_relic/metric_spec.rb +2 -1
- data/lib/new_relic/noticed_error.rb +1 -1
- data/lib/new_relic/rack/agent_hooks.rb +1 -0
- data/lib/new_relic/rack/agent_middleware.rb +1 -0
- data/lib/new_relic/rack/browser_monitoring.rb +3 -2
- data/lib/new_relic/rack.rb +1 -0
- data/lib/new_relic/recipes/capistrano3.rb +7 -6
- data/lib/new_relic/recipes/capistrano_legacy.rb +12 -11
- data/lib/new_relic/recipes.rb +1 -0
- data/lib/new_relic/supportability_helper.rb +5 -4
- data/lib/new_relic/version.rb +3 -2
- data/lib/newrelic_rpm.rb +1 -0
- data/lib/sequel/extensions/newrelic_instrumentation.rb +6 -5
- data/lib/sequel/plugins/newrelic_instrumentation.rb +1 -0
- data/lib/tasks/all.rb +1 -0
- data/lib/tasks/config.rake +2 -1
- data/lib/tasks/coverage_report.rake +22 -11
- data/lib/tasks/install.rake +1 -0
- 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 +96 -0
- data/lib/tasks/instrumentation_generator/templates/Envfile.tt +10 -0
- data/lib/tasks/instrumentation_generator/templates/chain.tt +22 -0
- data/lib/tasks/instrumentation_generator/templates/chain_method.tt +7 -0
- data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +30 -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 +14 -0
- data/lib/tasks/instrumentation_generator/templates/prepend_method.tt +3 -0
- data/lib/tasks/instrumentation_generator/templates/test.tt +16 -0
- data/lib/tasks/multiverse.rake +1 -0
- data/lib/tasks/multiverse.rb +8 -7
- data/lib/tasks/newrelic.rb +1 -0
- data/lib/tasks/tests.rake +1 -0
- data/newrelic.yml +505 -486
- data/newrelic_rpm.gemspec +15 -17
- data/recipes/newrelic.rb +1 -0
- data/test/agent_helper.rb +114 -118
- metadata +58 -89
- data/bin/mongrel_rpm +0 -32
@@ -1,6 +1,7 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
3
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
|
+
# frozen_string_literal: true
|
4
5
|
|
5
6
|
require 'new_relic/agent/range_extensions'
|
6
7
|
require 'new_relic/agent/guid_generator'
|
@@ -25,7 +26,7 @@ module NewRelic
|
|
25
26
|
attr_writer :record_metrics, :record_scoped_metric, :record_on_finish
|
26
27
|
attr_reader :noticed_error
|
27
28
|
|
28
|
-
def initialize
|
29
|
+
def initialize(name = nil, start_time = nil)
|
29
30
|
@name = name
|
30
31
|
@starting_thread_id = ::Thread.current.object_id
|
31
32
|
@transaction_name = nil
|
@@ -37,8 +38,8 @@ module NewRelic
|
|
37
38
|
@end_time = nil
|
38
39
|
@duration = 0.0
|
39
40
|
@exclusive_duration = 0.0
|
41
|
+
@children_timings = []
|
40
42
|
@children_time = 0.0
|
41
|
-
@children_time_ranges = nil
|
42
43
|
@active_children = 0
|
43
44
|
@range_recorded = false
|
44
45
|
@concurrent_children = false
|
@@ -55,7 +56,7 @@ module NewRelic
|
|
55
56
|
def start
|
56
57
|
@start_time ||= Process.clock_gettime(Process::CLOCK_REALTIME)
|
57
58
|
return unless transaction
|
58
|
-
parent.child_start
|
59
|
+
parent.child_start(self) if parent
|
59
60
|
end
|
60
61
|
|
61
62
|
def finish
|
@@ -66,7 +67,7 @@ module NewRelic
|
|
66
67
|
run_complete_callbacks
|
67
68
|
finalize if record_on_finish?
|
68
69
|
rescue => e
|
69
|
-
NewRelic::Agent.logger.error
|
70
|
+
NewRelic::Agent.logger.error("Exception finishing segment: #{name}", e)
|
70
71
|
end
|
71
72
|
|
72
73
|
def finished?
|
@@ -103,12 +104,40 @@ module NewRelic
|
|
103
104
|
@start_time.to_f..@end_time.to_f
|
104
105
|
end
|
105
106
|
|
107
|
+
def timings_overlap?(timing1, timing2)
|
108
|
+
(timing1.first >= timing2.first && timing1.first <= timing2.last) ||
|
109
|
+
(timing2.first >= timing1.first && timing2.first <= timing1.last)
|
110
|
+
end
|
111
|
+
|
112
|
+
def merge_timings(timing1, timing2)
|
113
|
+
[(timing1.first < timing2.first ? timing1.first : timing2.first),
|
114
|
+
(timing1.last > timing2.last ? timing1.last : timing2.last)]
|
115
|
+
end
|
116
|
+
|
117
|
+
# @children_timings is an array of array, with each inner array
|
118
|
+
# holding exactly 2 values, a child segment's start time and finish
|
119
|
+
# time (in that order). When it's time to record, these timings are
|
120
|
+
# converted into an array of range objects (using the same start and
|
121
|
+
# end values as the original array). Any two range objects that
|
122
|
+
# intersect and merged into a larger range. This checking for a
|
123
|
+
# intersections and merging of ranges is expensive, so the operation
|
124
|
+
# is only done at recording time.
|
106
125
|
def children_time_ranges
|
107
|
-
@children_time_ranges ||=
|
126
|
+
@children_time_ranges ||= begin
|
127
|
+
overlapped = @children_timings.each_with_object([]) do |timing, timings|
|
128
|
+
i = timings.index { |t| timings_overlap?(t, timing) }
|
129
|
+
if i
|
130
|
+
timings[i] = merge_timings(timing, timings[i])
|
131
|
+
else
|
132
|
+
timings << timing
|
133
|
+
end
|
134
|
+
end
|
135
|
+
overlapped.map { |t| Range.new(t.first, t.last) }
|
136
|
+
end
|
108
137
|
end
|
109
138
|
|
110
139
|
def children_time_ranges?
|
111
|
-
|
140
|
+
!@children_timings.empty?
|
112
141
|
end
|
113
142
|
|
114
143
|
def concurrent_children?
|
@@ -150,22 +179,24 @@ module NewRelic
|
|
150
179
|
def transaction_assigned
|
151
180
|
end
|
152
181
|
|
153
|
-
def set_noticed_error
|
182
|
+
def set_noticed_error(noticed_error)
|
154
183
|
if @noticed_error
|
155
|
-
NewRelic::Agent.logger.debug \
|
184
|
+
NewRelic::Agent.logger.debug( \
|
156
185
|
"Segment: #{name} overwriting previously noticed " \
|
157
186
|
"error: #{@noticed_error.inspect} with: #{noticed_error.inspect}"
|
187
|
+
)
|
158
188
|
end
|
159
189
|
@noticed_error = noticed_error
|
160
190
|
end
|
161
191
|
|
162
|
-
def notice_error
|
192
|
+
def notice_error(exception, options = {})
|
163
193
|
if Agent.config[:high_security]
|
164
|
-
NewRelic::Agent.logger.debug \
|
194
|
+
NewRelic::Agent.logger.debug( \
|
165
195
|
"Segment: #{name} ignores notice_error for " \
|
166
196
|
"error: #{exception.inspect} because :high_security is enabled"
|
197
|
+
)
|
167
198
|
else
|
168
|
-
NewRelic::Agent.instance.error_collector.notice_segment_error
|
199
|
+
NewRelic::Agent.instance.error_collector.notice_segment_error(self, exception, options)
|
169
200
|
end
|
170
201
|
end
|
171
202
|
|
@@ -182,16 +213,16 @@ module NewRelic
|
|
182
213
|
@range_recorded
|
183
214
|
end
|
184
215
|
|
185
|
-
def child_start
|
216
|
+
def child_start(segment)
|
186
217
|
@active_children += 1
|
187
218
|
@concurrent_children ||= @active_children > 1
|
188
219
|
|
189
220
|
transaction.async = true if @concurrent_children
|
190
221
|
end
|
191
222
|
|
192
|
-
def child_complete
|
223
|
+
def child_complete(segment)
|
193
224
|
@active_children -= 1
|
194
|
-
record_child_time
|
225
|
+
record_child_time(segment)
|
195
226
|
|
196
227
|
if finished?
|
197
228
|
transaction.async = true
|
@@ -205,36 +236,39 @@ module NewRelic
|
|
205
236
|
# an ancestor whose end time is greater than or equal to the descendant's
|
206
237
|
# we can stop the propagation. We pass along the direct child so we can
|
207
238
|
# make any corrections needed for exclusive time calculation.
|
239
|
+
def descendant_complete(child, descendant)
|
240
|
+
add_child_timing(descendant)
|
208
241
|
|
209
|
-
def descendant_complete child, descendant
|
210
|
-
RangeExtensions.merge_or_append descendant.time_range,
|
211
|
-
children_time_ranges
|
212
242
|
# If this child's time was previously added to this segment's
|
213
243
|
# aggregate children time, we need to re-record it using a time range
|
214
244
|
# for proper exclusive time calculation
|
215
245
|
unless child.range_recorded?
|
216
246
|
self.children_time -= child.duration
|
217
|
-
record_child_time_as_range
|
247
|
+
record_child_time_as_range(child)
|
218
248
|
end
|
219
249
|
|
220
250
|
if parent && finished? && descendant.end_time >= end_time
|
221
|
-
parent.descendant_complete
|
251
|
+
parent.descendant_complete(self, descendant)
|
222
252
|
end
|
223
253
|
end
|
224
254
|
|
225
255
|
private
|
226
256
|
|
257
|
+
def add_child_timing(segment)
|
258
|
+
@children_timings << [segment.start_time, segment.end_time]
|
259
|
+
end
|
260
|
+
|
227
261
|
def force_finish
|
228
262
|
finish
|
229
|
-
NewRelic::Agent.logger.warn
|
263
|
+
NewRelic::Agent.logger.warn("Segment: #{name} was unfinished at " \
|
230
264
|
"the end of transaction. Timing information for this segment's" \
|
231
|
-
"parent #{parent.name} in #{transaction.best_name} may be inaccurate."
|
265
|
+
"parent #{parent.name} in #{transaction.best_name} may be inaccurate.")
|
232
266
|
end
|
233
267
|
|
234
268
|
def run_complete_callbacks
|
235
269
|
segment_complete
|
236
|
-
parent.child_complete
|
237
|
-
transaction.segment_complete
|
270
|
+
parent.child_complete(self) if parent
|
271
|
+
transaction.segment_complete(self)
|
238
272
|
end
|
239
273
|
|
240
274
|
def record_metrics
|
@@ -245,27 +279,26 @@ module NewRelic
|
|
245
279
|
def segment_complete
|
246
280
|
end
|
247
281
|
|
248
|
-
def record_child_time
|
282
|
+
def record_child_time(child)
|
249
283
|
if concurrent_children? || finished? && end_time < child.end_time
|
250
|
-
record_child_time_as_range
|
284
|
+
record_child_time_as_range(child)
|
251
285
|
else
|
252
|
-
record_child_time_as_number
|
286
|
+
record_child_time_as_number(child)
|
253
287
|
end
|
254
288
|
end
|
255
289
|
|
256
|
-
def record_child_time_as_range
|
257
|
-
|
258
|
-
children_time_ranges
|
290
|
+
def record_child_time_as_range(child)
|
291
|
+
add_child_timing(child)
|
259
292
|
child.range_recorded = true
|
260
293
|
end
|
261
294
|
|
262
|
-
def record_child_time_as_number
|
295
|
+
def record_child_time_as_number(child)
|
263
296
|
self.children_time += child.duration
|
264
297
|
end
|
265
298
|
|
266
299
|
def record_exclusive_duration
|
267
300
|
overlapping_duration = if children_time_ranges?
|
268
|
-
RangeExtensions.compute_overlap
|
301
|
+
RangeExtensions.compute_overlap(time_range, children_time_ranges)
|
269
302
|
else
|
270
303
|
0.0
|
271
304
|
end
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
# This file is distributed under New Relic's license terms.
|
3
3
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
|
+
# frozen_string_literal: true
|
4
5
|
|
5
6
|
require 'new_relic/agent/transaction/segment'
|
6
7
|
require 'new_relic/agent/datastores/metric_helper'
|
@@ -16,26 +17,26 @@ module NewRelic
|
|
16
17
|
attr_reader :product, :operation, :collection, :sql_statement, :nosql_statement, :host, :port_path_or_id
|
17
18
|
attr_accessor :database_name, :record_sql
|
18
19
|
|
19
|
-
def initialize
|
20
|
+
def initialize(product, operation, collection = nil, host = nil, port_path_or_id = nil, database_name = nil, start_time = nil)
|
20
21
|
@product = product
|
21
22
|
@operation = operation
|
22
23
|
@collection = collection
|
23
24
|
@sql_statement = nil
|
24
25
|
@nosql_statement = nil
|
25
26
|
@record_sql = true
|
26
|
-
set_instance_info
|
27
|
+
set_instance_info(host, port_path_or_id)
|
27
28
|
@database_name = database_name ? database_name.to_s : nil
|
28
|
-
super
|
29
|
+
super(Datastores::MetricHelper.scoped_metric_for(product, operation, collection),
|
29
30
|
nil,
|
30
|
-
start_time
|
31
|
+
start_time)
|
31
32
|
end
|
32
33
|
|
33
|
-
def set_instance_info
|
34
|
+
def set_instance_info(host = nil, port_path_or_id = nil)
|
34
35
|
port_path_or_id = port_path_or_id.to_s if port_path_or_id
|
35
36
|
host_present = host && !host.empty?
|
36
37
|
ppi_present = port_path_or_id && !port_path_or_id.empty?
|
37
38
|
|
38
|
-
host = NewRelic::Agent::Hostname.get_external
|
39
|
+
host = NewRelic::Agent::Hostname.get_external(host) if host_present
|
39
40
|
|
40
41
|
case
|
41
42
|
when host_present && ppi_present
|
@@ -55,15 +56,15 @@ module NewRelic
|
|
55
56
|
end
|
56
57
|
end
|
57
58
|
|
58
|
-
def notice_sql
|
59
|
-
_notice_sql
|
59
|
+
def notice_sql(sql)
|
60
|
+
_notice_sql(sql)
|
60
61
|
nil
|
61
62
|
end
|
62
63
|
|
63
64
|
# @api private
|
64
|
-
def _notice_sql
|
65
|
+
def _notice_sql(sql, config = nil, explainer = nil, binds = nil, name = nil)
|
65
66
|
return unless record_sql?
|
66
|
-
@sql_statement = Database::Statement.new
|
67
|
+
@sql_statement = Database::Statement.new(sql, config, explainer, binds, name, host, port_path_or_id, database_name)
|
67
68
|
end
|
68
69
|
|
69
70
|
# Method for simplifying attaching non-SQL data statements to a
|
@@ -83,7 +84,7 @@ module NewRelic
|
|
83
84
|
# please ensure all data passed to this method is safe to transmit to
|
84
85
|
# New Relic.
|
85
86
|
|
86
|
-
def notice_nosql_statement
|
87
|
+
def notice_nosql_statement(nosql_statement)
|
87
88
|
return unless record_sql?
|
88
89
|
@nosql_statement = Database.truncate_query(nosql_statement)
|
89
90
|
nil
|
@@ -26,12 +26,12 @@ module NewRelic
|
|
26
26
|
end
|
27
27
|
end
|
28
28
|
|
29
|
-
def accept_incoming_request
|
30
|
-
accept_incoming_transport_type
|
31
|
-
if trace_parent_header_present?
|
32
|
-
accept_trace_context_incoming_request
|
29
|
+
def accept_incoming_request(request, transport_type = nil)
|
30
|
+
accept_incoming_transport_type(request, transport_type)
|
31
|
+
if trace_parent_header_present?(request)
|
32
|
+
accept_trace_context_incoming_request(request)
|
33
33
|
else
|
34
|
-
accept_distributed_tracing_incoming_request
|
34
|
+
accept_distributed_tracing_incoming_request(request)
|
35
35
|
end
|
36
36
|
end
|
37
37
|
|
@@ -39,84 +39,89 @@ module NewRelic
|
|
39
39
|
@caller_transport_type ||= "Unknown"
|
40
40
|
end
|
41
41
|
|
42
|
-
def accept_transport_type_from_api
|
43
|
-
@caller_transport_type = DistributedTraceTransportType.from
|
42
|
+
def accept_transport_type_from_api(value)
|
43
|
+
@caller_transport_type = DistributedTraceTransportType.from(value)
|
44
44
|
end
|
45
45
|
|
46
|
-
def accept_incoming_transport_type
|
46
|
+
def accept_incoming_transport_type(request, transport_type)
|
47
47
|
if transport_type.to_s == NewRelic::EMPTY_STR
|
48
|
-
@caller_transport_type = DistributedTraceTransportType.for_rack_request
|
48
|
+
@caller_transport_type = DistributedTraceTransportType.for_rack_request(request)
|
49
49
|
else
|
50
|
-
@caller_transport_type = DistributedTraceTransportType.from
|
50
|
+
@caller_transport_type = DistributedTraceTransportType.from(transport_type)
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
|
-
def initialize
|
54
|
+
def initialize(transaction)
|
55
55
|
@transaction = transaction
|
56
56
|
end
|
57
57
|
|
58
58
|
def record_metrics
|
59
59
|
record_cross_app_metrics
|
60
|
-
DistributedTraceMetrics.record_metrics_for_transaction
|
60
|
+
DistributedTraceMetrics.record_metrics_for_transaction(transaction)
|
61
61
|
end
|
62
62
|
|
63
|
-
def append_payload
|
64
|
-
append_cat_info
|
65
|
-
DistributedTraceAttributes.copy_from_transaction \
|
63
|
+
def append_payload(payload)
|
64
|
+
append_cat_info(payload)
|
65
|
+
DistributedTraceAttributes.copy_from_transaction( \
|
66
66
|
transaction,
|
67
67
|
trace_state_payload || distributed_trace_payload,
|
68
68
|
payload
|
69
|
+
)
|
69
70
|
end
|
70
71
|
|
71
|
-
def log_request_headers
|
72
|
-
NewRelic::Agent.logger.debug
|
72
|
+
def log_request_headers(headers, direction = "OUTGOING")
|
73
|
+
NewRelic::Agent.logger.debug("#{direction} REQUEST HEADERS: #{headers}")
|
73
74
|
end
|
74
75
|
|
75
|
-
def insert_headers
|
76
|
+
def insert_headers(headers)
|
76
77
|
return unless NewRelic::Agent.agent.connected?
|
77
|
-
insert_trace_context_header
|
78
|
-
insert_distributed_trace_header
|
79
|
-
insert_cross_app_header
|
80
|
-
log_request_headers
|
78
|
+
insert_trace_context_header(headers)
|
79
|
+
insert_distributed_trace_header(headers)
|
80
|
+
insert_cross_app_header(headers)
|
81
|
+
log_request_headers(headers)
|
81
82
|
end
|
82
83
|
|
83
|
-
def consume_message_headers
|
84
|
-
log_request_headers
|
85
|
-
consume_message_distributed_tracing_headers
|
86
|
-
consume_message_cross_app_tracing_headers
|
87
|
-
consume_message_synthetics_headers
|
84
|
+
def consume_message_headers(headers, tracer_state, transport_type)
|
85
|
+
log_request_headers(headers, "INCOMING")
|
86
|
+
consume_message_distributed_tracing_headers(headers, transport_type)
|
87
|
+
consume_message_cross_app_tracing_headers(headers, tracer_state)
|
88
|
+
consume_message_synthetics_headers(headers)
|
88
89
|
rescue => e
|
89
|
-
NewRelic::Agent.logger.error
|
90
|
+
NewRelic::Agent.logger.error("Error in consume_message_headers", e)
|
90
91
|
end
|
91
92
|
|
92
93
|
def assign_intrinsics
|
93
|
-
if
|
94
|
-
DistributedTraceAttributes.copy_to_attributes
|
94
|
+
if dt_enabled?
|
95
|
+
DistributedTraceAttributes.copy_to_attributes(transaction.payload, transaction.attributes)
|
95
96
|
elsif is_cross_app?
|
96
97
|
assign_cross_app_intrinsics
|
97
98
|
end
|
98
99
|
end
|
99
100
|
|
100
|
-
def insert_distributed_trace_header
|
101
|
-
return unless
|
101
|
+
def insert_distributed_trace_header(headers)
|
102
|
+
return unless dt_enabled?
|
102
103
|
return if Agent.config[:'exclude_newrelic_header']
|
103
104
|
payload = create_distributed_trace_payload
|
104
105
|
headers[NewRelic::NEWRELIC_KEY] = payload.http_safe if payload
|
105
106
|
end
|
106
107
|
|
107
|
-
def insert_cat_headers
|
108
|
+
def insert_cat_headers(headers)
|
108
109
|
return unless CrossAppTracing.cross_app_enabled?
|
109
110
|
@is_cross_app_caller = true
|
110
|
-
insert_message_headers
|
111
|
+
insert_message_headers(headers,
|
111
112
|
transaction.guid,
|
112
113
|
cat_trip_id,
|
113
114
|
cat_path_hash,
|
114
|
-
transaction.raw_synthetics_header
|
115
|
+
transaction.raw_synthetics_header)
|
115
116
|
end
|
116
117
|
|
117
118
|
private
|
118
119
|
|
119
|
-
def
|
120
|
+
def dt_enabled?
|
121
|
+
Agent.config[:'distributed_tracing.enabled']
|
122
|
+
end
|
123
|
+
|
124
|
+
def consume_message_synthetics_headers(headers)
|
120
125
|
synthetics_header = headers[CrossAppTracing::NR_MESSAGE_BROKER_SYNTHETICS_HEADER]
|
121
126
|
if synthetics_header and
|
122
127
|
incoming_payload = ::JSON.load(deobfuscate(synthetics_header)) and
|
@@ -128,31 +133,31 @@ module NewRelic
|
|
128
133
|
transaction.synthetics_payload = incoming_payload
|
129
134
|
end
|
130
135
|
rescue => e
|
131
|
-
NewRelic::Agent.logger.error
|
136
|
+
NewRelic::Agent.logger.error("Error in consume_message_synthetics_header", e)
|
132
137
|
end
|
133
138
|
|
134
|
-
def consume_message_distributed_tracing_headers
|
135
|
-
return unless
|
139
|
+
def consume_message_distributed_tracing_headers(headers, transport_type)
|
140
|
+
return unless dt_enabled?
|
136
141
|
|
137
|
-
accept_incoming_transport_type
|
142
|
+
accept_incoming_transport_type(headers, transport_type)
|
138
143
|
|
139
144
|
newrelic_trace_key = NewRelic::CANDIDATE_NEWRELIC_KEYS.detect do |key|
|
140
145
|
headers.has_key?(key)
|
141
146
|
end
|
142
147
|
return unless newrelic_trace_key && (payload = headers[newrelic_trace_key])
|
143
148
|
|
144
|
-
accept_distributed_trace_payload
|
149
|
+
accept_distributed_trace_payload(payload)
|
145
150
|
end
|
146
151
|
|
147
|
-
def consume_message_cross_app_tracing_headers
|
152
|
+
def consume_message_cross_app_tracing_headers(headers, tracer_state)
|
148
153
|
return unless CrossAppTracing.cross_app_enabled?
|
149
154
|
return unless CrossAppTracing.message_has_crossapp_request_header?(headers)
|
150
155
|
|
151
|
-
accept_cross_app_payload
|
152
|
-
CrossAppTracing.assign_intrinsic_transaction_attributes
|
156
|
+
accept_cross_app_payload(headers, tracer_state)
|
157
|
+
CrossAppTracing.assign_intrinsic_transaction_attributes(tracer_state)
|
153
158
|
end
|
154
159
|
|
155
|
-
def accept_cross_app_payload
|
160
|
+
def accept_cross_app_payload(headers, tracer_state)
|
156
161
|
encoded_id = headers[CrossAppTracing::NR_MESSAGE_BROKER_ID_HEADER]
|
157
162
|
decoded_id = encoded_id.nil? ? EMPTY_STRING : deobfuscate(encoded_id)
|
158
163
|
|
@@ -167,8 +172,8 @@ module NewRelic
|
|
167
172
|
nil
|
168
173
|
end
|
169
174
|
|
170
|
-
def deobfuscate
|
171
|
-
CrossAppTracing.obfuscator.deobfuscate
|
175
|
+
def deobfuscate(message)
|
176
|
+
CrossAppTracing.obfuscator.deobfuscate(message)
|
172
177
|
end
|
173
178
|
end
|
174
179
|
end
|
@@ -36,11 +36,11 @@ module NewRelic
|
|
36
36
|
|
37
37
|
NEWRELIC_TRACE_KEY = "HTTP_NEWRELIC"
|
38
38
|
|
39
|
-
def accept_distributed_tracing_incoming_request
|
39
|
+
def accept_distributed_tracing_incoming_request(request)
|
40
40
|
return unless Agent.config[:'distributed_tracing.enabled']
|
41
41
|
return unless payload = request[NEWRELIC_TRACE_KEY]
|
42
42
|
|
43
|
-
accept_distributed_trace_payload
|
43
|
+
accept_distributed_trace_payload(payload)
|
44
44
|
end
|
45
45
|
|
46
46
|
def distributed_trace_payload_created?
|
@@ -51,16 +51,16 @@ module NewRelic
|
|
51
51
|
return unless Agent.config[:'distributed_tracing.enabled']
|
52
52
|
|
53
53
|
@distributed_trace_payload_created = true
|
54
|
-
payload = DistributedTracePayload.for_transaction
|
55
|
-
NewRelic::Agent.increment_metric
|
54
|
+
payload = DistributedTracePayload.for_transaction(transaction)
|
55
|
+
NewRelic::Agent.increment_metric(CREATE_SUCCESS_METRIC)
|
56
56
|
payload
|
57
57
|
rescue => e
|
58
|
-
NewRelic::Agent.increment_metric
|
59
|
-
NewRelic::Agent.logger.warn
|
58
|
+
NewRelic::Agent.increment_metric(CREATE_EXCEPTION_METRIC)
|
59
|
+
NewRelic::Agent.logger.warn("Failed to create distributed trace payload", e)
|
60
60
|
nil
|
61
61
|
end
|
62
62
|
|
63
|
-
def accept_distributed_trace_payload
|
63
|
+
def accept_distributed_trace_payload(payload)
|
64
64
|
return unless Agent.config[:'distributed_tracing.enabled']
|
65
65
|
|
66
66
|
return false if check_payload_ignored(payload)
|
@@ -72,11 +72,11 @@ module NewRelic
|
|
72
72
|
|
73
73
|
assign_payload_and_sampling_params(payload)
|
74
74
|
|
75
|
-
NewRelic::Agent.increment_metric
|
75
|
+
NewRelic::Agent.increment_metric(ACCEPT_SUCCESS_METRIC)
|
76
76
|
true
|
77
77
|
rescue => e
|
78
|
-
NewRelic::Agent.increment_metric
|
79
|
-
NewRelic::Agent.logger.warn
|
78
|
+
NewRelic::Agent.increment_metric(ACCEPT_EXCEPTION_METRIC)
|
79
|
+
NewRelic::Agent.logger.warn("Failed to accept distributed trace payload", e)
|
80
80
|
false
|
81
81
|
end
|
82
82
|
|
@@ -84,10 +84,10 @@ module NewRelic
|
|
84
84
|
|
85
85
|
def check_payload_ignored(payload)
|
86
86
|
if distributed_trace_payload
|
87
|
-
NewRelic::Agent.increment_metric
|
87
|
+
NewRelic::Agent.increment_metric(IGNORE_MULTIPLE_ACCEPT_METRIC)
|
88
88
|
return true
|
89
89
|
elsif distributed_trace_payload_created?
|
90
|
-
NewRelic::Agent.increment_metric
|
90
|
+
NewRelic::Agent.increment_metric(IGNORE_ACCEPT_AFTER_CREATE_METRIC)
|
91
91
|
return true
|
92
92
|
end
|
93
93
|
false
|
@@ -96,7 +96,7 @@ module NewRelic
|
|
96
96
|
def check_payload_present(payload)
|
97
97
|
# We might be passed a Ruby `nil` object _or_ the JSON "null"
|
98
98
|
if payload.nil? || payload == NULL_PAYLOAD
|
99
|
-
NewRelic::Agent.increment_metric
|
99
|
+
NewRelic::Agent.increment_metric(IGNORE_ACCEPT_NULL_METRIC)
|
100
100
|
return nil
|
101
101
|
end
|
102
102
|
|
@@ -104,18 +104,18 @@ module NewRelic
|
|
104
104
|
end
|
105
105
|
|
106
106
|
def decode_payload(payload)
|
107
|
-
decoded = if payload.start_with?
|
108
|
-
DistributedTracePayload.from_json
|
107
|
+
decoded = if payload.start_with?(LBRACE)
|
108
|
+
DistributedTracePayload.from_json(payload)
|
109
109
|
else
|
110
|
-
DistributedTracePayload.from_http_safe
|
110
|
+
DistributedTracePayload.from_http_safe(payload)
|
111
111
|
end
|
112
112
|
|
113
113
|
return nil unless check_payload_present(decoded)
|
114
114
|
|
115
115
|
decoded
|
116
116
|
rescue => e
|
117
|
-
NewRelic::Agent.increment_metric
|
118
|
-
NewRelic::Agent.logger.warn
|
117
|
+
NewRelic::Agent.increment_metric(ACCEPT_PARSE_EXCEPTION_METRIC)
|
118
|
+
NewRelic::Agent.logger.warn("Error parsing distributed trace payload", e)
|
119
119
|
nil
|
120
120
|
end
|
121
121
|
|
@@ -131,7 +131,7 @@ module NewRelic
|
|
131
131
|
|
132
132
|
true
|
133
133
|
else
|
134
|
-
NewRelic::Agent.increment_metric
|
134
|
+
NewRelic::Agent.increment_metric(ACCEPT_PARSE_EXCEPTION_METRIC)
|
135
135
|
false
|
136
136
|
end
|
137
137
|
end
|
@@ -140,7 +140,7 @@ module NewRelic
|
|
140
140
|
if DistributedTracePayload.major_version_matches?(payload)
|
141
141
|
true
|
142
142
|
else
|
143
|
-
NewRelic::Agent.increment_metric
|
143
|
+
NewRelic::Agent.increment_metric(IGNORE_ACCEPT_MAJOR_VERSION_METRIC)
|
144
144
|
false
|
145
145
|
end
|
146
146
|
end
|
@@ -148,7 +148,7 @@ module NewRelic
|
|
148
148
|
def check_trusted_account(payload)
|
149
149
|
compare_key = payload.trusted_account_key || payload.parent_account_id
|
150
150
|
unless compare_key == NewRelic::Agent.config[:trusted_account_key]
|
151
|
-
NewRelic::Agent.increment_metric
|
151
|
+
NewRelic::Agent.increment_metric(IGNORE_ACCEPT_UNTRUSTED_ACCOUNT_METRIC)
|
152
152
|
return false
|
153
153
|
end
|
154
154
|
true
|