newrelic_rpm 8.7.0 → 8.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +4 -0
- data/.rubocop.yml +68 -189
- data/.rubocop_todo.yml +52 -0
- data/.simplecov +15 -0
- data/.snyk +11 -0
- data/.yardopts +1 -0
- data/Brewfile +1 -0
- data/CHANGELOG.md +181 -23
- data/CONTRIBUTING.md +1 -1
- data/Gemfile +0 -1
- data/Guardfile +1 -0
- data/README.md +1 -1
- data/Rakefile +13 -20
- data/Thorfile +5 -0
- data/bin/newrelic +2 -1
- data/bin/newrelic_cmd +1 -0
- data/bin/nrdebug +66 -45
- data/config.dot +5 -5
- data/init.rb +4 -4
- data/install.rb +2 -2
- data/lib/new_relic/agent/adaptive_sampler.rb +4 -4
- data/lib/new_relic/agent/agent/shutdown.rb +34 -0
- data/lib/new_relic/agent/agent/special_startup.rb +70 -0
- data/lib/new_relic/agent/agent/start_worker_thread.rb +163 -0
- data/lib/new_relic/agent/agent/startup.rb +196 -0
- data/lib/new_relic/agent/agent.rb +134 -534
- data/lib/new_relic/agent/agent_logger.rb +8 -10
- data/lib/new_relic/agent/attribute_filter.rb +40 -21
- data/lib/new_relic/agent/attribute_processing.rb +7 -7
- data/lib/new_relic/agent/attributes.rb +2 -2
- data/lib/new_relic/agent/audit_logger.rb +3 -3
- data/lib/new_relic/agent/autostart.rb +2 -2
- data/lib/new_relic/agent/chained_call.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command_router.rb +8 -8
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +1 -1
- data/lib/new_relic/agent/configuration/default_source.rb +105 -41
- data/lib/new_relic/agent/configuration/dotted_hash.rb +2 -2
- data/lib/new_relic/agent/configuration/environment_source.rb +5 -5
- data/lib/new_relic/agent/configuration/event_harvest_config.rb +1 -1
- data/lib/new_relic/agent/configuration/high_security_source.rb +1 -1
- data/lib/new_relic/agent/configuration/manager.rb +5 -5
- data/lib/new_relic/agent/configuration/manual_source.rb +1 -1
- data/lib/new_relic/agent/configuration/mask_defaults.rb +3 -3
- data/lib/new_relic/agent/configuration/security_policy_source.rb +7 -4
- data/lib/new_relic/agent/configuration/server_source.rb +7 -7
- data/lib/new_relic/agent/configuration/yaml_source.rb +6 -4
- data/lib/new_relic/agent/configuration.rb +1 -1
- data/lib/new_relic/agent/connect/request_builder.rb +3 -3
- data/lib/new_relic/agent/connect/response_handler.rb +5 -5
- data/lib/new_relic/agent/custom_event_aggregator.rb +5 -5
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -1
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +1 -1
- data/lib/new_relic/agent/database/obfuscator.rb +2 -2
- data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +1 -1
- data/lib/new_relic/agent/database.rb +21 -21
- data/lib/new_relic/agent/database_adapter.rb +1 -1
- data/lib/new_relic/agent/datastores/metric_helper.rb +12 -13
- data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +4 -3
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +2 -4
- data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +2 -2
- data/lib/new_relic/agent/datastores/mongo.rb +1 -1
- data/lib/new_relic/agent/datastores/redis.rb +3 -3
- data/lib/new_relic/agent/datastores.rb +4 -4
- data/lib/new_relic/agent/deprecator.rb +1 -1
- data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +1 -1
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +16 -17
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +9 -10
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +18 -19
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +8 -10
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +2 -3
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +40 -40
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +16 -15
- data/lib/new_relic/agent/distributed_tracing.rb +17 -18
- data/lib/new_relic/agent/encoding_normalizer.rb +1 -1
- data/lib/new_relic/agent/error_collector.rb +6 -5
- data/lib/new_relic/agent/error_event_aggregator.rb +3 -4
- data/lib/new_relic/agent/error_filter.rb +5 -5
- data/lib/new_relic/agent/error_trace_aggregator.rb +3 -3
- data/lib/new_relic/agent/event_aggregator.rb +20 -20
- data/lib/new_relic/agent/event_buffer.rb +1 -1
- data/lib/new_relic/agent/event_listener.rb +1 -1
- data/lib/new_relic/agent/event_loop.rb +9 -9
- data/lib/new_relic/agent/external.rb +10 -10
- data/lib/new_relic/agent/guid_generator.rb +2 -2
- data/lib/new_relic/agent/harvester.rb +1 -1
- data/lib/new_relic/agent/heap.rb +5 -5
- data/lib/new_relic/agent/hostname.rb +4 -3
- data/lib/new_relic/agent/http_clients/abstract.rb +1 -2
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +5 -6
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +4 -5
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +2 -3
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +1 -2
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +0 -1
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +1 -2
- data/lib/new_relic/agent/http_clients/uri_util.rb +1 -2
- data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +6 -5
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +31 -23
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +7 -6
- data/lib/new_relic/agent/instrumentation/active_job.rb +11 -4
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +4 -3
- data/lib/new_relic/agent/instrumentation/active_record.rb +9 -9
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +37 -21
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +3 -3
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +21 -11
- data/lib/new_relic/agent/instrumentation/active_storage.rb +2 -2
- data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +16 -15
- data/lib/new_relic/agent/instrumentation/active_support_logger/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_support_logger/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_support_logger.rb +2 -2
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +2 -2
- data/lib/new_relic/agent/instrumentation/authlogic.rb +2 -2
- data/lib/new_relic/agent/instrumentation/bunny/chain.rb +10 -10
- data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +10 -11
- data/lib/new_relic/agent/instrumentation/bunny/prepend.rb +4 -4
- data/lib/new_relic/agent/instrumentation/bunny.rb +1 -2
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +25 -17
- data/lib/new_relic/agent/instrumentation/curb/chain.rb +21 -22
- data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +19 -16
- data/lib/new_relic/agent/instrumentation/curb/prepend.rb +2 -3
- data/lib/new_relic/agent/instrumentation/curb.rb +2 -2
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +44 -44
- data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +1 -2
- data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +2 -3
- data/lib/new_relic/agent/instrumentation/delayed_job/prepend.rb +1 -2
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +3 -3
- data/lib/new_relic/agent/instrumentation/excon/middleware.rb +3 -3
- data/lib/new_relic/agent/instrumentation/excon.rb +2 -2
- data/lib/new_relic/agent/instrumentation/grape/chain.rb +6 -6
- data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +5 -5
- data/lib/new_relic/agent/instrumentation/grape/prepend.rb +4 -4
- data/lib/new_relic/agent/instrumentation/grape.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +97 -0
- data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +89 -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 +134 -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 +1 -1
- data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +6 -6
- data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/httpclient.rb +2 -2
- data/lib/new_relic/agent/instrumentation/httprb/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +4 -4
- data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/httprb.rb +2 -2
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +2 -2
- data/lib/new_relic/agent/instrumentation/logger/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +5 -1
- data/lib/new_relic/agent/instrumentation/logger/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/logger.rb +2 -2
- data/lib/new_relic/agent/instrumentation/memcache/chain.rb +2 -3
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +24 -17
- data/lib/new_relic/agent/instrumentation/memcache/helper.rb +8 -9
- data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +17 -15
- data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +21 -15
- data/lib/new_relic/agent/instrumentation/memcache.rb +5 -6
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +2 -2
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +0 -1
- data/lib/new_relic/agent/instrumentation/mongo.rb +2 -2
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +15 -14
- data/lib/new_relic/agent/instrumentation/net_http/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +5 -5
- data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/net_http.rb +2 -2
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +6 -6
- data/lib/new_relic/agent/instrumentation/padrino/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/padrino.rb +2 -2
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +3 -3
- data/lib/new_relic/agent/instrumentation/queue_time.rb +1 -2
- data/lib/new_relic/agent/instrumentation/rack/chain.rb +12 -12
- data/lib/new_relic/agent/instrumentation/rack/helpers.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +7 -7
- data/lib/new_relic/agent/instrumentation/rack/prepend.rb +4 -4
- data/lib/new_relic/agent/instrumentation/rack.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +6 -6
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +3 -2
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +3 -2
- data/lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb +3 -2
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +3 -3
- data/lib/new_relic/agent/instrumentation/rake/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +6 -2
- data/lib/new_relic/agent/instrumentation/rake/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rake.rb +3 -3
- data/lib/new_relic/agent/instrumentation/redis/chain.rb +3 -4
- data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +5 -6
- data/lib/new_relic/agent/instrumentation/redis/prepend.rb +3 -4
- data/lib/new_relic/agent/instrumentation/redis.rb +2 -2
- data/lib/new_relic/agent/instrumentation/resque/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +0 -1
- data/lib/new_relic/agent/instrumentation/resque/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/resque.rb +3 -3
- data/lib/new_relic/agent/instrumentation/sequel.rb +8 -8
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +6 -5
- data/lib/new_relic/agent/instrumentation/sinatra/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +2 -2
- data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +2 -2
- data/lib/new_relic/agent/instrumentation/sinatra.rb +2 -2
- data/lib/new_relic/agent/instrumentation/sunspot.rb +4 -4
- data/lib/new_relic/agent/instrumentation/thread/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/thread/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/thread.rb +2 -2
- data/lib/new_relic/agent/instrumentation/tilt/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/tilt/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/tilt.rb +1 -1
- data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +8 -8
- data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/typhoeus.rb +2 -2
- data/lib/new_relic/agent/instrumentation.rb +1 -1
- data/lib/new_relic/agent/internal_agent_error.rb +1 -1
- data/lib/new_relic/agent/javascript_instrumentor.rb +8 -8
- data/lib/new_relic/agent/linking_metadata.rb +2 -3
- data/lib/new_relic/agent/local_log_decorator.rb +0 -1
- data/lib/new_relic/agent/log_event_aggregator.rb +7 -7
- data/lib/new_relic/agent/log_once.rb +1 -1
- data/lib/new_relic/agent/log_priority.rb +1 -1
- data/lib/new_relic/agent/logging.rb +13 -13
- data/lib/new_relic/agent/memory_logger.rb +1 -1
- data/lib/new_relic/agent/messaging.rb +19 -20
- data/lib/new_relic/agent/method_tracer.rb +15 -10
- data/lib/new_relic/agent/method_tracer_helpers.rb +83 -1
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +4 -4
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +3 -3
- data/lib/new_relic/agent/monitors/inbound_request_monitor.rb +1 -1
- data/lib/new_relic/agent/monitors/synthetics_monitor.rb +2 -2
- data/lib/new_relic/agent/monitors.rb +5 -5
- data/lib/new_relic/agent/new_relic_service/encoders.rb +2 -2
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +4 -4
- data/lib/new_relic/agent/new_relic_service/marshaller.rb +1 -1
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +1 -1
- data/lib/new_relic/agent/new_relic_service.rb +214 -166
- data/lib/new_relic/agent/{noticible_error.rb → noticeable_error.rb} +2 -3
- data/lib/new_relic/agent/null_logger.rb +1 -1
- data/lib/new_relic/agent/obfuscator.rb +3 -3
- data/lib/new_relic/agent/parameter_filtering.rb +1 -1
- data/lib/new_relic/agent/payload_metric_mapping.rb +1 -1
- data/lib/new_relic/agent/pipe_channel_manager.rb +10 -5
- data/lib/new_relic/agent/pipe_service.rb +2 -2
- data/lib/new_relic/agent/prepend_supportability.rb +2 -2
- data/lib/new_relic/agent/priority_sampled_buffer.rb +4 -4
- data/lib/new_relic/agent/range_extensions.rb +8 -28
- data/lib/new_relic/agent/rules_engine/replacement_rule.rb +2 -2
- data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +1 -1
- data/lib/new_relic/agent/rules_engine.rb +2 -2
- data/lib/new_relic/agent/sampler.rb +1 -1
- data/lib/new_relic/agent/sampler_collection.rb +1 -1
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +2 -2
- data/lib/new_relic/agent/samplers/memory_sampler.rb +10 -10
- data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
- data/lib/new_relic/agent/samplers/vm_sampler.rb +3 -1
- data/lib/new_relic/agent/span_event_aggregator.rb +2 -2
- data/lib/new_relic/agent/span_event_primitive.rb +24 -19
- data/lib/new_relic/agent/sql_sampler.rb +8 -8
- data/lib/new_relic/agent/stats.rb +15 -4
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +1 -2
- data/lib/new_relic/agent/stats_engine/stats_hash.rb +4 -4
- data/lib/new_relic/agent/stats_engine.rb +1 -1
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +6 -6
- data/lib/new_relic/agent/system_info.rb +68 -53
- data/lib/new_relic/agent/threading/agent_thread.rb +13 -9
- data/lib/new_relic/agent/threading/backtrace_node.rb +6 -4
- data/lib/new_relic/agent/threading/backtrace_service.rb +1 -1
- data/lib/new_relic/agent/threading/thread_profile.rb +4 -4
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
- data/lib/new_relic/agent/tracer.rb +19 -17
- data/lib/new_relic/agent/transaction/abstract_segment.rb +93 -34
- data/lib/new_relic/agent/transaction/datastore_segment.rb +12 -12
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +52 -48
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +21 -22
- data/lib/new_relic/agent/transaction/external_request_segment.rb +37 -29
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +6 -6
- data/lib/new_relic/agent/transaction/request_attributes.rb +29 -29
- data/lib/new_relic/agent/transaction/segment.rb +8 -8
- data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/trace.rb +3 -3
- data/lib/new_relic/agent/transaction/trace_builder.rb +10 -10
- data/lib/new_relic/agent/transaction/trace_context.rb +22 -20
- data/lib/new_relic/agent/transaction/trace_node.rb +9 -9
- data/lib/new_relic/agent/transaction/tracing.rb +7 -7
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -2
- data/lib/new_relic/agent/transaction.rb +35 -31
- data/lib/new_relic/agent/transaction_error_primitive.rb +9 -9
- data/lib/new_relic/agent/transaction_event_aggregator.rb +5 -5
- data/lib/new_relic/agent/transaction_event_primitive.rb +3 -4
- data/lib/new_relic/agent/transaction_event_recorder.rb +15 -14
- data/lib/new_relic/agent/transaction_metrics.rb +4 -4
- data/lib/new_relic/agent/transaction_sampler.rb +5 -5
- data/lib/new_relic/agent/transaction_time_aggregator.rb +14 -14
- data/lib/new_relic/agent/utilization/aws.rb +4 -4
- data/lib/new_relic/agent/utilization/azure.rb +2 -2
- data/lib/new_relic/agent/utilization/gcp.rb +7 -7
- data/lib/new_relic/agent/utilization/pcf.rb +4 -4
- data/lib/new_relic/agent/utilization/vendor.rb +28 -28
- data/lib/new_relic/agent/utilization_data.rb +1 -1
- data/lib/new_relic/agent/vm/jruby_vm.rb +1 -1
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
- data/lib/new_relic/agent/vm/mri_vm.rb +36 -23
- data/lib/new_relic/agent/vm/snapshot.rb +2 -2
- data/lib/new_relic/agent/vm.rb +1 -1
- data/lib/new_relic/agent/worker_loop.rb +2 -2
- data/lib/new_relic/agent.rb +27 -27
- data/lib/new_relic/cli/command.rb +6 -6
- data/lib/new_relic/cli/commands/deployments.rb +81 -29
- data/lib/new_relic/cli/commands/install.rb +6 -6
- data/lib/new_relic/coerce.rb +5 -6
- data/lib/new_relic/collection_helper.rb +4 -4
- data/lib/new_relic/constants.rb +0 -1
- data/lib/new_relic/control/class_methods.rb +1 -1
- data/lib/new_relic/control/frameworks/external.rb +1 -1
- data/lib/new_relic/control/frameworks/rails.rb +3 -3
- data/lib/new_relic/control/frameworks/rails3.rb +1 -1
- data/lib/new_relic/control/frameworks/rails4.rb +1 -1
- data/lib/new_relic/control/frameworks/rails_notifications.rb +1 -1
- data/lib/new_relic/control/frameworks/ruby.rb +1 -1
- data/lib/new_relic/control/frameworks/sinatra.rb +1 -1
- data/lib/new_relic/control/frameworks.rb +1 -1
- data/lib/new_relic/control/instance_methods.rb +20 -42
- data/lib/new_relic/control/instrumentation.rb +7 -7
- data/lib/new_relic/control/private_instance_methods.rb +48 -0
- data/lib/new_relic/control/server_methods.rb +2 -2
- data/lib/new_relic/control.rb +1 -1
- data/lib/new_relic/delayed_job_injection.rb +1 -1
- data/lib/new_relic/dependency_detection.rb +23 -22
- data/lib/new_relic/environment_report.rb +24 -14
- data/lib/new_relic/helper.rb +5 -5
- data/lib/new_relic/language_support.rb +8 -3
- data/lib/new_relic/latest_changes.rb +4 -4
- data/lib/new_relic/local_environment.rb +9 -11
- data/lib/new_relic/metric_data.rb +30 -24
- data/lib/new_relic/metric_spec.rb +3 -3
- data/lib/new_relic/noticed_error.rb +3 -6
- data/lib/new_relic/rack/agent_hooks.rb +1 -1
- data/lib/new_relic/rack/agent_middleware.rb +1 -1
- data/lib/new_relic/rack/browser_monitoring.rb +132 -123
- data/lib/new_relic/rack.rb +1 -1
- data/lib/new_relic/recipes/capistrano3.rb +3 -59
- data/lib/new_relic/recipes/capistrano_legacy.rb +13 -13
- data/lib/new_relic/recipes/helpers/send_deployment.rb +69 -0
- data/lib/new_relic/recipes.rb +1 -1
- data/lib/new_relic/supportability_helper.rb +6 -6
- data/lib/new_relic/traced_thread.rb +5 -7
- data/lib/new_relic/version.rb +2 -2
- data/lib/newrelic_rpm.rb +1 -1
- data/lib/sequel/extensions/newrelic_instrumentation.rb +8 -8
- data/lib/sequel/plugins/newrelic_instrumentation.rb +1 -1
- data/lib/tasks/all.rb +1 -1
- data/lib/tasks/config.rake +8 -112
- data/lib/tasks/coverage_report.rake +28 -0
- data/lib/tasks/{config.html.erb → helpers/config.html.erb} +0 -0
- data/lib/tasks/{config.text.erb → helpers/config.text.erb} +0 -0
- data/lib/tasks/helpers/format.rb +120 -0
- data/lib/tasks/helpers/matches.rb +12 -0
- data/lib/tasks/helpers/prompt.rb +24 -0
- data/lib/tasks/helpers/removers.rb +33 -0
- data/lib/tasks/install.rake +4 -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 +102 -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 +12 -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/multiverse.rake +4 -0
- data/lib/tasks/multiverse.rb +5 -30
- data/lib/tasks/newrelic.rb +1 -1
- data/lib/tasks/tests.rake +7 -8
- data/newrelic.yml +514 -483
- data/newrelic_rpm.gemspec +16 -21
- data/recipes/newrelic.rb +1 -1
- data/test/agent_helper.rb +125 -147
- metadata +82 -90
- data/bin/mongrel_rpm +0 -32
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'new_relic/agent/database'
|
6
6
|
|
@@ -43,7 +43,7 @@ DependencyDetection.defer do
|
|
43
43
|
end
|
44
44
|
|
45
45
|
executes do
|
46
|
-
::NewRelic::Agent.logger.info
|
46
|
+
::NewRelic::Agent.logger.info('Installing ActsAsSolr instrumentation')
|
47
47
|
deprecation_msg = 'The instrumentation for ActsAsSolr is deprecated. ' \
|
48
48
|
'It will be removed in version 9.0.0.' \
|
49
49
|
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
DependencyDetection.defer do
|
6
6
|
@name = :authlogic
|
@@ -12,7 +12,7 @@ DependencyDetection.defer do
|
|
12
12
|
end
|
13
13
|
|
14
14
|
executes do
|
15
|
-
::NewRelic::Agent.logger.info
|
15
|
+
::NewRelic::Agent.logger.info('Installing Authlogic instrumentation')
|
16
16
|
deprecation_msg = 'The instrumentation for Authlogic is deprecated. ' \
|
17
17
|
'It will be removed in version 9.0.0.' \
|
18
18
|
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
module NewRelic::Agent::Instrumentation
|
6
6
|
module Bunny
|
@@ -8,25 +8,25 @@ module NewRelic::Agent::Instrumentation
|
|
8
8
|
::Bunny::Exchange.class_eval do
|
9
9
|
include NewRelic::Agent::Instrumentation::Bunny::Exchange
|
10
10
|
|
11
|
-
alias_method
|
11
|
+
alias_method(:publish_without_new_relic, :publish)
|
12
12
|
|
13
|
-
def publish
|
14
|
-
publish_with_tracing(payload, opts) { publish_without_new_relic
|
13
|
+
def publish(payload, opts = {})
|
14
|
+
publish_with_tracing(payload, opts) { publish_without_new_relic(payload, opts) }
|
15
15
|
end
|
16
16
|
end
|
17
17
|
|
18
18
|
::Bunny::Queue.class_eval do
|
19
19
|
include NewRelic::Agent::Instrumentation::Bunny::Queue
|
20
20
|
|
21
|
-
alias_method
|
21
|
+
alias_method(:pop_without_new_relic, :pop)
|
22
22
|
|
23
23
|
def pop(opts = {:manual_ack => false}, &block)
|
24
|
-
pop_with_tracing { pop_without_new_relic
|
24
|
+
pop_with_tracing { pop_without_new_relic(opts, &block) }
|
25
25
|
end
|
26
26
|
|
27
|
-
alias_method
|
27
|
+
alias_method(:purge_without_new_relic, :purge)
|
28
28
|
|
29
|
-
def purge
|
29
|
+
def purge(*args)
|
30
30
|
purge_with_tracing { purge_without_new_relic(*args) }
|
31
31
|
end
|
32
32
|
end
|
@@ -34,9 +34,9 @@ module NewRelic::Agent::Instrumentation
|
|
34
34
|
::Bunny::Consumer.class_eval do
|
35
35
|
include NewRelic::Agent::Instrumentation::Bunny::Consumer
|
36
36
|
|
37
|
-
alias_method
|
37
|
+
alias_method(:call_without_new_relic, :call)
|
38
38
|
|
39
|
-
def call
|
39
|
+
def call(*args)
|
40
40
|
call_with_tracing(*args) { call_without_new_relic(*args) }
|
41
41
|
end
|
42
42
|
end
|
@@ -1,4 +1,3 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
3
|
# frozen_string_literal: true
|
@@ -14,11 +13,11 @@ module NewRelic
|
|
14
13
|
DEFAULT_TYPE = :direct
|
15
14
|
SLASH = '/'
|
16
15
|
|
17
|
-
def exchange_name
|
16
|
+
def exchange_name(name)
|
18
17
|
name.empty? ? DEFAULT_NAME : name
|
19
18
|
end
|
20
19
|
|
21
|
-
def exchange_type
|
20
|
+
def exchange_type(delivery_info, channel)
|
22
21
|
if di_exchange = delivery_info[:exchange]
|
23
22
|
return DEFAULT_TYPE if di_exchange.empty?
|
24
23
|
return channel.exchanges[delivery_info[:exchange]].type if channel.exchanges[di_exchange]
|
@@ -28,7 +27,7 @@ module NewRelic
|
|
28
27
|
module Exchange
|
29
28
|
include Bunny
|
30
29
|
|
31
|
-
def publish_with_tracing
|
30
|
+
def publish_with_tracing(payload, opts = {})
|
32
31
|
begin
|
33
32
|
destination = exchange_name(name)
|
34
33
|
|
@@ -47,10 +46,10 @@ module NewRelic
|
|
47
46
|
exchange_type: type
|
48
47
|
)
|
49
48
|
rescue => e
|
50
|
-
NewRelic::Agent.logger.error
|
49
|
+
NewRelic::Agent.logger.error("Error starting message broker segment in Bunny::Exchange#publish", e)
|
51
50
|
yield
|
52
51
|
else
|
53
|
-
NewRelic::Agent::Tracer.capture_segment_error
|
52
|
+
NewRelic::Agent::Tracer.capture_segment_error(segment) do
|
54
53
|
yield
|
55
54
|
end
|
56
55
|
ensure
|
@@ -91,10 +90,10 @@ module NewRelic
|
|
91
90
|
start_time: t0
|
92
91
|
)
|
93
92
|
rescue => e
|
94
|
-
NewRelic::Agent.logger.error
|
93
|
+
NewRelic::Agent.logger.error("Error starting message broker segment in Bunny::Queue#pop", e)
|
95
94
|
else
|
96
95
|
if bunny_error
|
97
|
-
segment.notice_error
|
96
|
+
segment.notice_error(bunny_error)
|
98
97
|
raise bunny_error
|
99
98
|
end
|
100
99
|
ensure
|
@@ -114,10 +113,10 @@ module NewRelic
|
|
114
113
|
destination_name: name
|
115
114
|
)
|
116
115
|
rescue => e
|
117
|
-
NewRelic::Agent.logger.error
|
116
|
+
NewRelic::Agent.logger.error("Error starting message broker segment in Bunny::Queue#purge", e)
|
118
117
|
yield
|
119
118
|
else
|
120
|
-
NewRelic::Agent::Tracer.capture_segment_error
|
119
|
+
NewRelic::Agent::Tracer.capture_segment_error(segment) do
|
121
120
|
yield
|
122
121
|
end
|
123
122
|
ensure
|
@@ -129,7 +128,7 @@ module NewRelic
|
|
129
128
|
module Consumer
|
130
129
|
include Bunny
|
131
130
|
|
132
|
-
def call_with_tracing
|
131
|
+
def call_with_tracing(*args)
|
133
132
|
delivery_info, message_properties, _ = args
|
134
133
|
queue_name = queue.respond_to?(:name) ? queue.name : queue
|
135
134
|
|
@@ -1,13 +1,13 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
module NewRelic::Agent::Instrumentation
|
6
6
|
module Bunny::Prepend
|
7
7
|
module Exchange
|
8
8
|
include NewRelic::Agent::Instrumentation::Bunny::Exchange
|
9
9
|
|
10
|
-
def publish
|
10
|
+
def publish(payload, opts = {})
|
11
11
|
publish_with_tracing(payload, opts) { super }
|
12
12
|
end
|
13
13
|
end
|
@@ -19,7 +19,7 @@ module NewRelic::Agent::Instrumentation
|
|
19
19
|
pop_with_tracing { super }
|
20
20
|
end
|
21
21
|
|
22
|
-
def purge
|
22
|
+
def purge(*args)
|
23
23
|
purge_with_tracing { super }
|
24
24
|
end
|
25
25
|
end
|
@@ -27,7 +27,7 @@ module NewRelic::Agent::Instrumentation
|
|
27
27
|
module Consumer
|
28
28
|
include NewRelic::Agent::Instrumentation::Bunny::Consumer
|
29
29
|
|
30
|
-
def call
|
30
|
+
def call(*args)
|
31
31
|
call_with_tracing(*args) { super }
|
32
32
|
end
|
33
33
|
end
|
@@ -1,4 +1,3 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
3
|
# frozen_string_literal: true
|
@@ -15,7 +14,7 @@ DependencyDetection.defer do
|
|
15
14
|
end
|
16
15
|
|
17
16
|
executes do
|
18
|
-
::NewRelic::Agent.logger.info
|
17
|
+
::NewRelic::Agent.logger.info('Installing Bunny instrumentation')
|
19
18
|
require 'new_relic/agent/distributed_tracing/cross_app_tracing'
|
20
19
|
require 'new_relic/agent/messaging'
|
21
20
|
require 'new_relic/agent/transaction/message_broker_segment'
|
@@ -1,10 +1,11 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require 'new_relic/agent/transaction'
|
6
6
|
require 'new_relic/agent/instrumentation/queue_time'
|
7
7
|
require 'new_relic/agent/instrumentation/ignore_actions'
|
8
|
+
|
8
9
|
module NewRelic
|
9
10
|
module Agent
|
10
11
|
# @api public
|
@@ -48,7 +49,7 @@ module NewRelic
|
|
48
49
|
NR_DO_NOT_TRACE_KEY = :'@do_not_trace'
|
49
50
|
NR_IGNORE_APDEX_KEY = :'@ignore_apdex'
|
50
51
|
NR_IGNORE_ENDUSER_KEY = :'@ignore_enduser'
|
51
|
-
NR_DEFAULT_OPTIONS =
|
52
|
+
NR_DEFAULT_OPTIONS = NewRelic::EMPTY_HASH
|
52
53
|
|
53
54
|
# @api public
|
54
55
|
module ClassMethods
|
@@ -81,9 +82,9 @@ module NewRelic
|
|
81
82
|
|
82
83
|
def newrelic_ignore_aspect(property, specifiers = {}) # :nodoc:
|
83
84
|
if specifiers.empty?
|
84
|
-
self.newrelic_write_attr
|
85
|
+
self.newrelic_write_attr(property, true)
|
85
86
|
elsif !(Hash === specifiers)
|
86
|
-
::NewRelic::Agent.logger.error
|
87
|
+
::NewRelic::Agent.logger.error("newrelic_#{property} takes an optional hash with :only and :except lists of actions (illegal argument type '#{specifiers.class}')")
|
87
88
|
else
|
88
89
|
# symbolize the incoming values
|
89
90
|
specifiers = specifiers.inject({}) do |memo, (key, values)|
|
@@ -94,7 +95,7 @@ module NewRelic
|
|
94
95
|
end
|
95
96
|
memo
|
96
97
|
end
|
97
|
-
self.newrelic_write_attr
|
98
|
+
self.newrelic_write_attr(property, specifiers)
|
98
99
|
end
|
99
100
|
end
|
100
101
|
|
@@ -165,10 +166,6 @@ module NewRelic
|
|
165
166
|
def add_transaction_tracer(method, options = {})
|
166
167
|
NewRelic::Agent.record_api_supportability_metric(:add_transaction_tracer)
|
167
168
|
|
168
|
-
# The metric path:
|
169
|
-
options[:name] ||= method.to_s
|
170
|
-
|
171
|
-
argument_list = generate_argument_list(options)
|
172
169
|
traced_method, punctuation = parse_punctuation(method)
|
173
170
|
with_method_name, without_method_name = build_method_names(traced_method, punctuation)
|
174
171
|
|
@@ -177,7 +174,13 @@ module NewRelic
|
|
177
174
|
return
|
178
175
|
end
|
179
176
|
|
180
|
-
|
177
|
+
# The metric path:
|
178
|
+
options[:name] ||= method.to_s
|
179
|
+
|
180
|
+
code_info = NewRelic::Agent::MethodTracerHelpers.code_information(self, method)
|
181
|
+
argument_list = generate_argument_list(options.merge(code_info))
|
182
|
+
|
183
|
+
class_eval(<<-EOC)
|
181
184
|
def #{with_method_name}(*args, &block)
|
182
185
|
perform_action_with_newrelic_trace(#{argument_list.join(',')}) do
|
183
186
|
#{without_method_name}(*args, &block)
|
@@ -186,12 +189,12 @@ module NewRelic
|
|
186
189
|
ruby2_keywords(:#{with_method_name}) if respond_to?(:ruby2_keywords, true)
|
187
190
|
EOC
|
188
191
|
|
189
|
-
visibility = NewRelic::Helper.instance_method_visibility
|
192
|
+
visibility = NewRelic::Helper.instance_method_visibility(self, method)
|
190
193
|
|
191
|
-
alias_method
|
192
|
-
alias_method
|
193
|
-
send
|
194
|
-
send
|
194
|
+
alias_method(without_method_name, method.to_s)
|
195
|
+
alias_method(method.to_s, with_method_name)
|
196
|
+
send(visibility, method)
|
197
|
+
send(visibility, with_method_name)
|
195
198
|
::NewRelic::Agent.logger.debug("Traced transaction: class = #{self.name}, method = #{method.to_s}, options = #{options.inspect}")
|
196
199
|
end
|
197
200
|
|
@@ -227,6 +230,8 @@ module NewRelic
|
|
227
230
|
|
228
231
|
class TransactionNamer
|
229
232
|
def self.name_for(txn, traced_obj, category, options = {})
|
233
|
+
return options[:transaction_name] if options[:transaction_name]
|
234
|
+
|
230
235
|
"#{prefix_for_category(txn, category)}#{path_name(traced_obj, options)}"
|
231
236
|
end
|
232
237
|
|
@@ -410,14 +415,14 @@ module NewRelic
|
|
410
415
|
end
|
411
416
|
end
|
412
417
|
|
413
|
-
#
|
418
|
+
# overridable method to determine whether to trace an action
|
414
419
|
# or not - you may override this in your controller and supply
|
415
420
|
# your own logic for ignoring transactions.
|
416
421
|
def do_not_trace?
|
417
422
|
_is_filtered?(NR_DO_NOT_TRACE_KEY)
|
418
423
|
end
|
419
424
|
|
420
|
-
#
|
425
|
+
# overridable method to determine whether to trace an action
|
421
426
|
# for purposes of apdex measurement - you can use this to
|
422
427
|
# ignore things like api calls or other fast non-user-facing
|
423
428
|
# actions
|
@@ -441,6 +446,9 @@ module NewRelic
|
|
441
446
|
txn_options[:apdex_start_time] = queue_start_time
|
442
447
|
txn_options[:ignore_apdex] = ignore_apdex?
|
443
448
|
txn_options[:ignore_enduser] = ignore_enduser?
|
449
|
+
NewRelic::Agent::MethodTracerHelpers::SOURCE_CODE_INFORMATION_PARAMETERS.each do |parameter|
|
450
|
+
txn_options[parameter] = trace_options[parameter]
|
451
|
+
end
|
444
452
|
txn_options
|
445
453
|
end
|
446
454
|
|
@@ -1,4 +1,3 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
3
|
# frozen_string_literal: true
|
@@ -16,46 +15,46 @@ module NewRelic::Agent::Instrumentation
|
|
16
15
|
http_head_with_tracing { http_head_without_newrelic(*args, &blk) }
|
17
16
|
end
|
18
17
|
|
19
|
-
alias_method
|
20
|
-
alias_method
|
18
|
+
alias_method(:http_head_without_newrelic, :http_head)
|
19
|
+
alias_method(:http_head, :http_head_with_newrelic)
|
21
20
|
|
22
21
|
def http_post_with_newrelic(*args, &blk)
|
23
22
|
http_post_with_tracing { http_post_without_newrelic(*args, &blk) }
|
24
23
|
end
|
25
24
|
|
26
|
-
alias_method
|
27
|
-
alias_method
|
25
|
+
alias_method(:http_post_without_newrelic, :http_post)
|
26
|
+
alias_method(:http_post, :http_post_with_newrelic)
|
28
27
|
|
29
28
|
def http_put_with_newrelic(*args, &blk)
|
30
29
|
http_put_with_tracing { http_put_without_newrelic(*args, &blk) }
|
31
30
|
end
|
32
31
|
|
33
|
-
alias_method
|
34
|
-
alias_method
|
32
|
+
alias_method(:http_put_without_newrelic, :http_put)
|
33
|
+
alias_method(:http_put, :http_put_with_newrelic)
|
35
34
|
|
36
35
|
# Hook the #http method to set the verb.
|
37
|
-
def http_with_newrelic
|
36
|
+
def http_with_newrelic(verb)
|
38
37
|
http_with_tracing(verb) { http_without_newrelic(verb) }
|
39
38
|
end
|
40
39
|
|
41
|
-
alias_method
|
42
|
-
alias_method
|
40
|
+
alias_method(:http_without_newrelic, :http)
|
41
|
+
alias_method(:http, :http_with_newrelic)
|
43
42
|
|
44
43
|
# Hook the #perform method to mark the request as non-parallel.
|
45
44
|
def perform_with_newrelic
|
46
45
|
perform_with_tracing { perform_without_newrelic }
|
47
46
|
end
|
48
47
|
|
49
|
-
alias_method
|
50
|
-
alias_method
|
48
|
+
alias_method(:perform_without_newrelic, :perform)
|
49
|
+
alias_method(:perform, :perform_with_newrelic)
|
51
50
|
|
52
51
|
# Record the HTTP verb for future #perform calls
|
53
|
-
def method_with_newrelic
|
52
|
+
def method_with_newrelic(verb)
|
54
53
|
method_with_tracing(verb) { method_without_newrelic(verb) }
|
55
54
|
end
|
56
55
|
|
57
|
-
alias_method
|
58
|
-
alias_method
|
56
|
+
alias_method(:method_without_newrelic, :method)
|
57
|
+
alias_method(:method, :method_with_newrelic)
|
59
58
|
|
60
59
|
# We override this method in order to ensure access to header_str even
|
61
60
|
# though we use an on_header callback
|
@@ -63,8 +62,8 @@ module NewRelic::Agent::Instrumentation
|
|
63
62
|
header_str_with_tracing { header_str_without_newrelic }
|
64
63
|
end
|
65
64
|
|
66
|
-
alias_method
|
67
|
-
alias_method
|
65
|
+
alias_method(:header_str_without_newrelic, :header_str)
|
66
|
+
alias_method(:header_str, :header_str_with_newrelic)
|
68
67
|
end
|
69
68
|
|
70
69
|
Curl::Multi.class_eval do
|
@@ -72,19 +71,19 @@ module NewRelic::Agent::Instrumentation
|
|
72
71
|
|
73
72
|
# Add CAT with callbacks if the request is serial
|
74
73
|
def add_with_newrelic(curl)
|
75
|
-
add_with_tracing(curl) { add_without_newrelic
|
74
|
+
add_with_tracing(curl) { add_without_newrelic(curl) }
|
76
75
|
end
|
77
76
|
|
78
|
-
alias_method
|
79
|
-
alias_method
|
77
|
+
alias_method(:add_without_newrelic, :add)
|
78
|
+
alias_method(:add, :add_with_newrelic)
|
80
79
|
|
81
80
|
# Trace as an External/Multiple call if the first request isn't serial.
|
82
81
|
def perform_with_newrelic(&blk)
|
83
82
|
perform_with_tracing { perform_without_newrelic(&blk) }
|
84
83
|
end
|
85
84
|
|
86
|
-
alias_method
|
87
|
-
alias_method
|
85
|
+
alias_method(:perform_without_newrelic, :perform)
|
86
|
+
alias_method(:perform, :perform_with_newrelic)
|
88
87
|
end
|
89
88
|
end
|
90
89
|
end
|
@@ -1,4 +1,3 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
3
|
# frozen_string_literal: true
|
@@ -9,7 +8,6 @@ module NewRelic
|
|
9
8
|
module Curb
|
10
9
|
module Easy
|
11
10
|
attr_accessor :_nr_instrumented,
|
12
|
-
:_nr_failure_instrumented,
|
13
11
|
:_nr_http_verb,
|
14
12
|
:_nr_header_str,
|
15
13
|
:_nr_original_on_header,
|
@@ -35,7 +33,7 @@ module NewRelic
|
|
35
33
|
end
|
36
34
|
|
37
35
|
# Hook the #http method to set the verb.
|
38
|
-
def http_with_tracing
|
36
|
+
def http_with_tracing(verb)
|
39
37
|
self._nr_http_verb = verb.to_s.upcase
|
40
38
|
yield
|
41
39
|
end
|
@@ -48,7 +46,7 @@ module NewRelic
|
|
48
46
|
end
|
49
47
|
|
50
48
|
# Record the HTTP verb for future #perform calls
|
51
|
-
def method_with_tracing
|
49
|
+
def method_with_tracing(verb)
|
52
50
|
self._nr_http_verb = verb.upcase
|
53
51
|
yield
|
54
52
|
end
|
@@ -99,7 +97,7 @@ module NewRelic
|
|
99
97
|
procedure: wrapped_request.method
|
100
98
|
)
|
101
99
|
|
102
|
-
segment.add_request_headers
|
100
|
+
segment.add_request_headers(wrapped_request)
|
103
101
|
|
104
102
|
# install all callbacks
|
105
103
|
unless request._nr_instrumented
|
@@ -129,9 +127,9 @@ module NewRelic
|
|
129
127
|
request._nr_header_str = nil
|
130
128
|
request.on_header do |header_data|
|
131
129
|
if original_callback
|
132
|
-
original_callback.call
|
130
|
+
original_callback.call(header_data)
|
133
131
|
else
|
134
|
-
wrapped_response.append_header_data
|
132
|
+
wrapped_response.append_header_data(header_data)
|
135
133
|
header_data.length
|
136
134
|
end
|
137
135
|
end
|
@@ -143,7 +141,7 @@ module NewRelic
|
|
143
141
|
request._nr_original_on_complete = original_callback
|
144
142
|
request.on_complete do |finished_request|
|
145
143
|
begin
|
146
|
-
segment.process_response_headers
|
144
|
+
segment.process_response_headers(wrapped_response) if segment
|
147
145
|
ensure
|
148
146
|
segment.finish if segment
|
149
147
|
# Make sure the existing completion callback is run, and restore the
|
@@ -158,24 +156,30 @@ module NewRelic
|
|
158
156
|
# NOTE: on_failure is not always called, so we're not always
|
159
157
|
# unhooking the callback. No harm/no foul in production, but
|
160
158
|
# definitely something to beware of if debugging callback issues
|
161
|
-
#
|
159
|
+
# @__newrelic_original_callback exists to prevent infinitely chaining
|
162
160
|
# our on_failure callback hook.
|
163
|
-
def install_failure_callback(request,
|
164
|
-
return if request._nr_failure_instrumented
|
161
|
+
def install_failure_callback(request, _wrapped_response, segment)
|
165
162
|
original_callback = request.on_failure
|
163
|
+
|
164
|
+
nr_original_callback = original_callback.instance_variable_get(:@__newrelic_original_callback)
|
165
|
+
original_callback = nr_original_callback || original_callback
|
166
|
+
|
166
167
|
request._nr_original_on_failure = original_callback
|
167
|
-
|
168
|
+
|
169
|
+
newrelic_callback = proc do |failed_request, error|
|
168
170
|
begin
|
169
171
|
if segment
|
170
|
-
|
171
|
-
segment.notice_error
|
172
|
+
noticeable_error = NewRelic::Agent::NoticeableError.new(error[0].name, error[-1])
|
173
|
+
segment.notice_error(noticeable_error)
|
172
174
|
end
|
173
175
|
ensure
|
174
176
|
original_callback.call(failed_request, error) if original_callback
|
175
177
|
remove_failure_callback(failed_request)
|
176
178
|
end
|
177
|
-
request._nr_failure_instrumented = true
|
178
179
|
end
|
180
|
+
newrelic_callback.instance_variable_set(:@__newrelic_original_callback, original_callback)
|
181
|
+
|
182
|
+
request.on_failure(&newrelic_callback)
|
179
183
|
end
|
180
184
|
|
181
185
|
# on_failure callbacks cannot be removed in the on_complete
|
@@ -192,7 +196,6 @@ module NewRelic
|
|
192
196
|
# fires before the on_failure callback.
|
193
197
|
def remove_failure_callback(request)
|
194
198
|
request.on_failure(&request._nr_original_on_failure)
|
195
|
-
request._nr_failure_instrumented = false
|
196
199
|
end
|
197
200
|
|
198
201
|
private
|
@@ -1,4 +1,3 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
4
3
|
# frozen_string_literal: true
|
@@ -25,7 +24,7 @@ module NewRelic
|
|
25
24
|
http_put_with_tracing { super }
|
26
25
|
end
|
27
26
|
|
28
|
-
def http
|
27
|
+
def http(verb)
|
29
28
|
http_with_tracing(verb) { super }
|
30
29
|
end
|
31
30
|
|
@@ -33,7 +32,7 @@ module NewRelic
|
|
33
32
|
perform_with_tracing { super }
|
34
33
|
end
|
35
34
|
|
36
|
-
def method
|
35
|
+
def method(verb)
|
37
36
|
method_with_tracing(verb) { super }
|
38
37
|
end
|
39
38
|
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# encoding: utf-8
|
2
1
|
# This file is distributed under New Relic's license terms.
|
3
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
4
|
|
5
5
|
require_relative 'curb/chain'
|
6
6
|
require_relative 'curb/prepend'
|
@@ -16,7 +16,7 @@ DependencyDetection.defer do
|
|
16
16
|
end
|
17
17
|
|
18
18
|
executes do
|
19
|
-
::NewRelic::Agent.logger.info
|
19
|
+
::NewRelic::Agent.logger.info('Installing Curb instrumentation')
|
20
20
|
require 'new_relic/agent/distributed_tracing/cross_app_tracing'
|
21
21
|
require 'new_relic/agent/http_clients/curb_wrappers'
|
22
22
|
end
|