newrelic_rpm 8.16.0 → 9.2.2
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 +4 -106
- data/.rubocop_todo.yml +13 -14
- data/.simplecov +2 -1
- data/Brewfile +1 -0
- data/CHANGELOG.md +225 -0
- data/CONTRIBUTING.md +1 -1
- data/Gemfile +1 -1
- data/Guardfile +8 -7
- data/README.md +3 -2
- data/Rakefile +8 -8
- 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_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 +200 -588
- 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 +15 -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 +4 -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 +5 -5
- 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/curb_wrappers.rb +7 -3
- 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/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_controller_other_subscriber.rb +5 -2
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +3 -2
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +3 -3
- data/lib/new_relic/agent/instrumentation/active_job.rb +2 -2
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +3 -3
- data/lib/new_relic/agent/instrumentation/active_record.rb +3 -2
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +38 -35
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +3 -3
- 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/bunny/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +3 -3
- data/lib/new_relic/agent/instrumentation/bunny.rb +1 -1
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +6 -4
- data/lib/new_relic/agent/instrumentation/curb/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +5 -5
- data/lib/new_relic/agent/instrumentation/curb.rb +1 -1
- 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 +1 -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 +4 -3
- data/lib/new_relic/agent/instrumentation/elasticsearch.rb +2 -2
- data/lib/new_relic/agent/instrumentation/excon/middleware.rb +2 -1
- data/lib/new_relic/agent/instrumentation/excon.rb +3 -3
- data/lib/new_relic/agent/instrumentation/fiber/chain.rb +20 -0
- data/lib/new_relic/agent/instrumentation/fiber/instrumentation.rb +24 -0
- data/lib/new_relic/agent/instrumentation/fiber/prepend.rb +18 -0
- data/lib/new_relic/agent/instrumentation/fiber.rb +25 -0
- data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +4 -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 +3 -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 +4 -4
- data/lib/new_relic/agent/instrumentation/grpc_client.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc_server.rb +1 -1
- data/lib/new_relic/agent/instrumentation/httprb.rb +1 -1
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
- 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 +2 -2
- data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +3 -1
- data/lib/new_relic/agent/instrumentation/memcache.rb +10 -10
- 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 -6
- data/lib/new_relic/agent/instrumentation/net_http.rb +2 -2
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +1 -1
- data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +3 -3
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +2 -2
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +3 -2
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +8 -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 +2 -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.rb +1 -1
- 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/extensions/delayed_class.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +1 -0
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +6 -5
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +1 -1
- data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +3 -7
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +2 -1
- data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +5 -5
- 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 +15 -15
- data/lib/new_relic/agent/logging.rb +73 -33
- data/lib/new_relic/agent/messaging.rb +7 -5
- data/lib/new_relic/agent/method_tracer.rb +7 -7
- data/lib/new_relic/agent/method_tracer_helpers.rb +1 -1
- 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/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 +15 -16
- 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/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 +2 -2
- 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 +10 -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 +19 -9
- data/lib/new_relic/agent/transaction/abstract_segment.rb +54 -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 +11 -11
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +1 -1
- data/lib/new_relic/agent/transaction/request_attributes.rb +2 -2
- 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 +60 -52
- data/lib/new_relic/agent/transaction_error_primitive.rb +5 -5
- data/lib/new_relic/agent/transaction_event_aggregator.rb +4 -4
- data/lib/new_relic/agent/transaction_event_primitive.rb +3 -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 +3 -3
- data/lib/new_relic/agent/utilization/pcf.rb +1 -1
- data/lib/new_relic/agent/utilization/vendor.rb +1 -1
- 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 +79 -35
- data/lib/new_relic/cli/command.rb +3 -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 +7 -8
- data/lib/new_relic/control/class_methods.rb +3 -3
- data/lib/new_relic/control/frameworks/rails.rb +30 -18
- 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 +14 -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 +1 -1
- data/lib/new_relic/latest_changes.rb +5 -5
- data/lib/new_relic/local_environment.rb +0 -10
- data/lib/new_relic/noticed_error.rb +20 -18
- data/lib/new_relic/rack/browser_monitoring.rb +20 -16
- 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 +2 -1
- data/lib/new_relic/version.rb +3 -3
- data/lib/newrelic_rpm.rb +4 -4
- data/lib/sequel/extensions/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +5 -5
- data/lib/sequel/plugins/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +4 -4
- data/lib/tasks/config.rake +12 -12
- data/lib/tasks/coverage_report.rake +4 -4
- data/lib/tasks/helpers/format.rb +10 -10
- data/lib/tasks/helpers/removers.rb +5 -5
- data/lib/tasks/install.rake +4 -4
- data/lib/tasks/instrumentation_generator/instrumentation.thor +15 -18
- 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/multiverse.rb +13 -6
- data/lib/tasks/newrelic.rb +1 -0
- data/lib/tasks/tests.rake +6 -6
- data/newrelic.yml +10 -13
- data/newrelic_rpm.gemspec +29 -26
- data/test/agent_helper.rb +25 -24
- metadata +84 -16
- 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
@@ -0,0 +1,18 @@
|
|
1
|
+
# This file is distributed under New Relic's license terms.
|
2
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
|
+
|
5
|
+
require_relative 'instrumentation'
|
6
|
+
|
7
|
+
module NewRelic::Agent::Instrumentation
|
8
|
+
module MonitoredFiber
|
9
|
+
module Prepend
|
10
|
+
include NewRelic::Agent::Instrumentation::MonitoredFiber
|
11
|
+
|
12
|
+
def initialize(*args, &block)
|
13
|
+
traced_block = add_thread_tracing(*args, &block)
|
14
|
+
initialize_with_newrelic_tracing { super(*args, &traced_block) }
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
# This file is distributed under New Relic's license terms.
|
2
|
+
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
|
+
# frozen_string_literal: true
|
4
|
+
|
5
|
+
require_relative 'fiber/instrumentation'
|
6
|
+
require_relative 'fiber/chain'
|
7
|
+
require_relative 'fiber/prepend'
|
8
|
+
|
9
|
+
DependencyDetection.defer do
|
10
|
+
named :fiber
|
11
|
+
|
12
|
+
depends_on do
|
13
|
+
defined?(Fiber)
|
14
|
+
end
|
15
|
+
|
16
|
+
executes do
|
17
|
+
NewRelic::Agent.logger.info('Installing Fiber instrumentation')
|
18
|
+
|
19
|
+
if use_prepend?
|
20
|
+
prepend_instrument Fiber, NewRelic::Agent::Instrumentation::MonitoredFiber::Prepend
|
21
|
+
else
|
22
|
+
chain_instrument NewRelic::Agent::Instrumentation::MonitoredFiber::Chain
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -23,12 +23,12 @@ module NewRelic::Agent::Instrumentation
|
|
23
23
|
api_class = (context.class.respond_to?(:base) && context.class.base) || context.class
|
24
24
|
handle_transaction(endpoint, api_class.name, version)
|
25
25
|
rescue => e
|
26
|
-
::NewRelic::Agent.logger.warn(
|
26
|
+
::NewRelic::Agent.logger.warn('Error in Grape instrumentation', e)
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
30
|
def prepare!
|
31
|
-
if defined?(::Grape::VERSION) && Gem::Version.new(::Grape::VERSION) >= Gem::Version.new(
|
31
|
+
if defined?(::Grape::VERSION) && Gem::Version.new(::Grape::VERSION) >= Gem::Version.new('0.16.0')
|
32
32
|
send(:remove_method, :name_for_transaction_deprecated)
|
33
33
|
else
|
34
34
|
send(:remove_method, :name_for_transaction)
|
@@ -40,7 +40,7 @@ module NewRelic::Agent::Instrumentation
|
|
40
40
|
API_VERSION = 'api.version'.freeze
|
41
41
|
FORMAT_REGEX = /\(\/?\.[\:\w]*\)/.freeze # either :format (< 0.12.0) or .ext (>= 0.12.0)
|
42
42
|
VERSION_REGEX = /:version(\/|$)/.freeze
|
43
|
-
MIN_VERSION = Gem::Version.new(
|
43
|
+
MIN_VERSION = Gem::Version.new('0.2.0')
|
44
44
|
PIPE_STRING = '|'.freeze
|
45
45
|
|
46
46
|
def handle_transaction(endpoint, class_name, version)
|
@@ -91,7 +91,7 @@ module NewRelic::Agent::Instrumentation
|
|
91
91
|
txn = ::NewRelic::Agent::Transaction.tl_current
|
92
92
|
env = endpoint.request.env
|
93
93
|
params = ::NewRelic::Agent::ParameterFiltering::apply_filters(env, endpoint.params)
|
94
|
-
params.delete(
|
94
|
+
params.delete('route_info')
|
95
95
|
txn.filtered_params = params
|
96
96
|
txn.merge_request_parameters(params)
|
97
97
|
end
|
@@ -9,7 +9,7 @@ require_relative 'grape/prepend'
|
|
9
9
|
DependencyDetection.defer do
|
10
10
|
# Why not just :grape? newrelic-grape used that name already, and while we're
|
11
11
|
# not shipping yet, overloading the name interferes with the plugin.
|
12
|
-
|
12
|
+
@name = :grape_instrumentation
|
13
13
|
configure_with :grape
|
14
14
|
|
15
15
|
depends_on do
|
@@ -19,14 +19,14 @@ DependencyDetection.defer do
|
|
19
19
|
|
20
20
|
depends_on do
|
21
21
|
begin
|
22
|
-
if defined?(Bundler) && Bundler.rubygems.all_specs.map(&:name).include?(
|
23
|
-
NewRelic::Agent.logger.info(
|
22
|
+
if defined?(Bundler) && Bundler.rubygems.all_specs.map(&:name).include?('newrelic-grape')
|
23
|
+
NewRelic::Agent.logger.info('Not installing New Relic supported Grape instrumentation because the third party newrelic-grape gem is present')
|
24
24
|
false
|
25
25
|
else
|
26
26
|
true
|
27
27
|
end
|
28
28
|
rescue => e
|
29
|
-
NewRelic::Agent.logger.info(
|
29
|
+
NewRelic::Agent.logger.info('Could not determine if third party newrelic-grape gem is installed', e)
|
30
30
|
true
|
31
31
|
end
|
32
32
|
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# frozen_string_literal: true
|
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 'request_wrapper'
|
6
6
|
require_relative '../helper'
|
@@ -18,7 +18,8 @@ module NewRelic
|
|
18
18
|
|
19
19
|
segment = request_segment(method)
|
20
20
|
request_wrapper = NewRelic::Agent::Instrumentation::GRPC::Client::RequestWrapper.new(@host)
|
21
|
-
|
21
|
+
# do not insert CAT headers for gRPC requests https://github.com/newrelic/newrelic-ruby-agent/issues/1730
|
22
|
+
segment.add_request_headers(request_wrapper) unless CrossAppTracing.cross_app_enabled?
|
22
23
|
metadata.merge!(request_wrapper.instance_variable_get(:@newrelic_metadata))
|
23
24
|
grpc_message = nil
|
24
25
|
grpc_status = 0
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# frozen_string_literal: true
|
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 '../helper'
|
6
6
|
|
@@ -37,7 +37,7 @@ module NewRelic
|
|
37
37
|
raise
|
38
38
|
end
|
39
39
|
ensure
|
40
|
-
txn
|
40
|
+
txn&.finish
|
41
41
|
end
|
42
42
|
|
43
43
|
def add_http2_port_with_tracing(*args)
|
@@ -55,12 +55,12 @@ module NewRelic
|
|
55
55
|
def add_attributes(txn, metadata, streamer_type)
|
56
56
|
grpc_params(metadata, streamer_type).each do |attr, value|
|
57
57
|
txn.add_agent_attribute(attr, value, DESTINATIONS)
|
58
|
-
txn.current_segment
|
58
|
+
txn.current_segment&.add_agent_attribute(attr, value)
|
59
59
|
end
|
60
60
|
end
|
61
61
|
|
62
62
|
def metadata_for_call(active_call)
|
63
|
-
return NewRelic::EMPTY_HASH unless active_call
|
63
|
+
return NewRelic::EMPTY_HASH unless active_call&.metadata
|
64
64
|
|
65
65
|
active_call.metadata
|
66
66
|
end
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# frozen_string_literal: true
|
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 'grpc/client/chain'
|
6
6
|
require_relative 'grpc/client/prepend'
|
@@ -1,6 +1,6 @@
|
|
1
|
-
# frozen_string_literal: true
|
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 'grpc/server/chain'
|
6
6
|
require_relative 'grpc/server/rpc_server_prepend'
|
@@ -14,7 +14,7 @@ DependencyDetection.defer do
|
|
14
14
|
end
|
15
15
|
|
16
16
|
executes do
|
17
|
-
NewRelic::Agent.logger.info(
|
17
|
+
NewRelic::Agent.logger.info('Installing http.rb Wrappers')
|
18
18
|
require 'new_relic/agent/distributed_tracing/cross_app_tracing'
|
19
19
|
require 'new_relic/agent/http_clients/http_rb_wrappers'
|
20
20
|
end
|
@@ -15,7 +15,7 @@ DependencyDetection.defer do
|
|
15
15
|
end
|
16
16
|
|
17
17
|
executes do
|
18
|
-
NewRelic::Agent.logger.info(
|
18
|
+
NewRelic::Agent.logger.info('Installing Logger instrumentation')
|
19
19
|
|
20
20
|
if use_prepend?
|
21
21
|
prepend_instrument Logger, NewRelic::Agent::Instrumentation::Logger::Prepend
|
@@ -58,7 +58,9 @@ module NewRelic
|
|
58
58
|
end.class_eval do
|
59
59
|
include NewRelic::Agent::Instrumentation::Memcache::Tracer
|
60
60
|
|
61
|
-
# TODO:
|
61
|
+
# TODO: MAJOR VERSION
|
62
|
+
# Dalli - 3.1.0 renamed send_multiget to pipelined_get, but the method is otherwise the same
|
63
|
+
# Once we no longer support Dalli < 3.1.0, remove this conditional logic
|
62
64
|
if Gem::Version.new(::Dalli::VERSION) >= Gem::Version.new('3.1.0')
|
63
65
|
alias_method(:pipelined_get_without_newrelic_trace, :pipelined_get)
|
64
66
|
def pipelined_get(keys)
|
@@ -8,8 +8,8 @@ module NewRelic::Agent::Instrumentation
|
|
8
8
|
SLASH = '/'
|
9
9
|
UNKNOWN = 'unknown'
|
10
10
|
LOCALHOST = 'localhost'
|
11
|
-
MULTIGET_METRIC_NAME =
|
12
|
-
MEMCACHED =
|
11
|
+
MULTIGET_METRIC_NAME = 'get_multi_request'
|
12
|
+
MEMCACHED = 'Memcached'
|
13
13
|
|
14
14
|
def with_newrelic_tracing(operation, *args)
|
15
15
|
segment = NewRelic::Agent::Tracer.start_datastore_segment( \
|
@@ -84,7 +84,9 @@ module NewRelic::Agent::Instrumentation
|
|
84
84
|
extend Helper
|
85
85
|
include NewRelic::Agent::Instrumentation::Memcache::Tracer
|
86
86
|
|
87
|
-
# TODO:
|
87
|
+
# TODO: MAJOR VERSION
|
88
|
+
# Dalli - 3.1.0 renamed send_multiget to pipelined_get, but the method is otherwise the same
|
89
|
+
# Once we no longer support Dalli < 3.1.0, remove this conditional logic
|
88
90
|
if Gem::Version.new(::Dalli::VERSION) >= Gem::Version.new('3.1.0')
|
89
91
|
def pipelined_get(keys)
|
90
92
|
send_multiget_with_newrelic_tracing(keys) { super }
|
@@ -23,9 +23,9 @@ DependencyDetection.defer do
|
|
23
23
|
executes do
|
24
24
|
if use_prepend?
|
25
25
|
prepend_module = NewRelic::Agent::Instrumentation::Memcache::Prepend.client_prepender(MemCache)
|
26
|
-
prepend_instrument MemCache, prepend_module,
|
26
|
+
prepend_instrument MemCache, prepend_module, 'MemcacheClient'
|
27
27
|
else
|
28
|
-
chain_instrument_target MemCache, NewRelic::Agent::Instrumentation::Memcache::Chain,
|
28
|
+
chain_instrument_target MemCache, NewRelic::Agent::Instrumentation::Memcache::Chain, 'MemcacheClient'
|
29
29
|
end
|
30
30
|
end
|
31
31
|
end
|
@@ -38,15 +38,15 @@ DependencyDetection.defer do
|
|
38
38
|
executes do
|
39
39
|
if use_prepend?
|
40
40
|
prepend_module = NewRelic::Agent::Instrumentation::Memcache::Prepend.client_prepender(Memcached)
|
41
|
-
prepend_instrument Memcached, prepend_module,
|
41
|
+
prepend_instrument Memcached, prepend_module, 'Memcached'
|
42
42
|
else
|
43
|
-
chain_instrument_target Memcached, NewRelic::Agent::Instrumentation::Memcache::Chain,
|
43
|
+
chain_instrument_target Memcached, NewRelic::Agent::Instrumentation::Memcache::Chain, 'Memcached'
|
44
44
|
end
|
45
45
|
end
|
46
46
|
end
|
47
47
|
|
48
48
|
DependencyDetection.defer do
|
49
|
-
|
49
|
+
@name = :dalli
|
50
50
|
configure_with :memcache
|
51
51
|
|
52
52
|
depends_on { defined? Dalli::Client }
|
@@ -55,10 +55,10 @@ DependencyDetection.defer do
|
|
55
55
|
if use_prepend?
|
56
56
|
prepend_module = NewRelic::Agent::Instrumentation::Memcache::Prepend
|
57
57
|
prepend_module.dalli_prependers do |client_class, instrumenting_module|
|
58
|
-
prepend_instrument client_class, instrumenting_module,
|
58
|
+
prepend_instrument client_class, instrumenting_module, 'MemcachedDalli'
|
59
59
|
end
|
60
60
|
else
|
61
|
-
chain_instrument NewRelic::Agent::Instrumentation::Memcache::Dalli
|
61
|
+
chain_instrument NewRelic::Agent::Instrumentation::Memcache::Dalli, 'MemcachedDalli'
|
62
62
|
end
|
63
63
|
end
|
64
64
|
end
|
@@ -67,7 +67,7 @@ end
|
|
67
67
|
# dalli/cas/client. Use a separate dependency block so it can potentially
|
68
68
|
# re-evaluate after they've done that require.
|
69
69
|
DependencyDetection.defer do
|
70
|
-
|
70
|
+
@name = :dalli_cas_client
|
71
71
|
configure_with :memcache
|
72
72
|
|
73
73
|
depends_on { defined? Dalli::Client }
|
@@ -78,10 +78,10 @@ DependencyDetection.defer do
|
|
78
78
|
if use_prepend?
|
79
79
|
prepend_module = NewRelic::Agent::Instrumentation::Memcache::Prepend
|
80
80
|
prepend_module.dalli_cas_prependers do |client_class, instrumenting_module|
|
81
|
-
prepend_instrument client_class, instrumenting_module,
|
81
|
+
prepend_instrument client_class, instrumenting_module, 'MemcachedDalliCAS'
|
82
82
|
end
|
83
83
|
else
|
84
|
-
chain_instrument NewRelic::Agent::Instrumentation::Memcache::DalliCAS
|
84
|
+
chain_instrument NewRelic::Agent::Instrumentation::Memcache::DalliCAS, 'MemcachedDalliCAS'
|
85
85
|
end
|
86
86
|
end
|
87
87
|
end
|
@@ -15,8 +15,8 @@ module NewRelic
|
|
15
15
|
class MiddlewareProxy
|
16
16
|
include MiddlewareTracing
|
17
17
|
|
18
|
-
ANONYMOUS_CLASS =
|
19
|
-
OBJECT_CLASS_NAME =
|
18
|
+
ANONYMOUS_CLASS = 'AnonymousClass'.freeze
|
19
|
+
OBJECT_CLASS_NAME = 'Object'.freeze
|
20
20
|
|
21
21
|
# This class is used to wrap classes that are passed to
|
22
22
|
# Rack::Builder#use without synchronously instantiating those classes.
|
@@ -92,7 +92,7 @@ module NewRelic
|
|
92
92
|
clazz = class_for_target
|
93
93
|
|
94
94
|
name = clazz.name
|
95
|
-
name = clazz.superclass.name if name.nil? || name ==
|
95
|
+
name = clazz.superclass.name if name.nil? || name == ''
|
96
96
|
name = ANONYMOUS_CLASS if name.nil? || name == OBJECT_CLASS_NAME
|
97
97
|
name
|
98
98
|
end
|
@@ -9,7 +9,7 @@ module NewRelic
|
|
9
9
|
module Instrumentation
|
10
10
|
class MongodbCommandSubscriber
|
11
11
|
MONGODB = 'MongoDB'.freeze
|
12
|
-
COLLECTION =
|
12
|
+
COLLECTION = 'collection'.freeze
|
13
13
|
|
14
14
|
def started(event)
|
15
15
|
begin
|
@@ -21,7 +21,7 @@ module NewRelic
|
|
21
21
|
end
|
22
22
|
end
|
23
23
|
|
24
|
-
ERROR_KEYS = %w[
|
24
|
+
ERROR_KEYS = %w[writeErrors writeConcernError writeConcernErrors].freeze
|
25
25
|
|
26
26
|
def error_key_present?(event)
|
27
27
|
if reply = event.reply
|
@@ -43,7 +43,7 @@ module NewRelic
|
|
43
43
|
if error_key = error_key_present?(event)
|
44
44
|
# taking the last error as there can potentially be many
|
45
45
|
attributes = event.reply[error_key][-1]
|
46
|
-
segment.notice_error(Mongo::Error.new(
|
46
|
+
segment.notice_error(Mongo::Error.new('%s (%s)' % [attributes['errmsg'], attributes['code']]))
|
47
47
|
|
48
48
|
# failing commands return a CommandFailed event with an error message
|
49
49
|
# in the form of "% (%s)" for the message and code
|
@@ -106,8 +106,8 @@ module NewRelic
|
|
106
106
|
)
|
107
107
|
end
|
108
108
|
|
109
|
-
UNKNOWN =
|
110
|
-
LOCALHOST =
|
109
|
+
UNKNOWN = 'unknown'.freeze
|
110
|
+
LOCALHOST = 'localhost'.freeze
|
111
111
|
|
112
112
|
def host_from_address(address)
|
113
113
|
if unix_domain_socket?(address.host)
|
@@ -131,7 +131,7 @@ module NewRelic
|
|
131
131
|
UNKNOWN
|
132
132
|
end
|
133
133
|
|
134
|
-
SLASH =
|
134
|
+
SLASH = '/'.freeze
|
135
135
|
|
136
136
|
def unix_domain_socket?(host)
|
137
137
|
host.start_with?(SLASH)
|
@@ -27,11 +27,11 @@ DependencyDetection.defer do
|
|
27
27
|
end
|
28
28
|
|
29
29
|
conflicts_with_prepend do
|
30
|
-
defined?(Rack::MiniProfiler)
|
30
|
+
defined?(Rack::MiniProfiler) && !defined?(Rack::MINI_PROFILER_PREPEND_NET_HTTP_PATCH)
|
31
31
|
end
|
32
32
|
|
33
33
|
conflicts_with_prepend do
|
34
|
-
source_location_for(Net::HTTP,
|
34
|
+
source_location_for(Net::HTTP, 'request') =~ /airbrake|profiler/i
|
35
35
|
end
|
36
36
|
|
37
37
|
executes do
|
@@ -118,7 +118,7 @@ module NewRelic
|
|
118
118
|
return if defined?(exception_object)
|
119
119
|
return unless defined?(::ActiveSupport::VERSION)
|
120
120
|
|
121
|
-
if ::ActiveSupport::VERSION::STRING <
|
121
|
+
if ::ActiveSupport::VERSION::STRING < '5.0.0'
|
122
122
|
# Earlier versions of Rails did not add the exception itself to the
|
123
123
|
# payload accessible via :exception_object, so we create a stand-in
|
124
124
|
# error object from the given class name and message.
|
@@ -6,9 +6,9 @@ module NewRelic::Agent::Instrumentation
|
|
6
6
|
module Padrino
|
7
7
|
def invoke_route_with_tracing(*args)
|
8
8
|
begin
|
9
|
-
env[
|
9
|
+
env['newrelic.last_route'] = args[0].original_path
|
10
10
|
rescue => e
|
11
|
-
::NewRelic::Agent.logger.debug(
|
11
|
+
::NewRelic::Agent.logger.debug('Failed determining last route in Padrino', e)
|
12
12
|
end
|
13
13
|
|
14
14
|
begin
|
@@ -19,7 +19,7 @@ module NewRelic::Agent::Instrumentation
|
|
19
19
|
)
|
20
20
|
end
|
21
21
|
rescue => e
|
22
|
-
::NewRelic::Agent.logger.debug(
|
22
|
+
::NewRelic::Agent.logger.debug('Failed during invoke_route to set transaction name', e)
|
23
23
|
end
|
24
24
|
|
25
25
|
yield
|
@@ -10,10 +10,10 @@ DependencyDetection.defer do
|
|
10
10
|
end
|
11
11
|
|
12
12
|
executes do
|
13
|
-
NewRelic::Agent.logger.debug(
|
13
|
+
NewRelic::Agent.logger.debug('Installing Passenger event hooks.')
|
14
14
|
|
15
15
|
PhusionPassenger.on_event(:stopping_worker_process) do
|
16
|
-
NewRelic::Agent.logger.debug(
|
16
|
+
NewRelic::Agent.logger.debug('Passenger stopping this process, shutdown the agent.')
|
17
17
|
NewRelic::Agent.instance.shutdown
|
18
18
|
end
|
19
19
|
|
@@ -16,7 +16,7 @@ module NewRelic
|
|
16
16
|
def deferred_dependency_check
|
17
17
|
return if self.class._nr_deferred_detection_ran
|
18
18
|
|
19
|
-
NewRelic::Agent.logger.info(
|
19
|
+
NewRelic::Agent.logger.info('Doing deferred dependency-detection before Rack startup')
|
20
20
|
DependencyDetection.detect!
|
21
21
|
self.class._nr_deferred_detection_ran = true
|
22
22
|
end
|
@@ -37,7 +37,7 @@ module NewRelic
|
|
37
37
|
extend self
|
38
38
|
def template_metric(identifier, options = {})
|
39
39
|
if options[:file]
|
40
|
-
|
40
|
+
'file'
|
41
41
|
elsif identifier.nil?
|
42
42
|
::NewRelic::Agent::UNKNOWN_METRIC
|
43
43
|
elsif identifier.include?('/') # this is a filepath
|
@@ -112,7 +112,8 @@ DependencyDetection.defer do
|
|
112
112
|
def render_with_newrelic(context, options)
|
113
113
|
# This is needed for rails 3.2 compatibility
|
114
114
|
@details = extract_details(options) if respond_to?(:extract_details, true)
|
115
|
-
|
115
|
+
# this file can't be found in SimpleCov, need to check test coverage
|
116
|
+
identifier = determine_template(options) ? determine_template(options).identifier : nil # rubocop:disable Style/SafeNavigation
|
116
117
|
scope_name = "View/#{NewRelic::Agent::Instrumentation::Rails3::ActionView::NewRelic.template_metric(identifier, options)}/Rendering"
|
117
118
|
trace_execution_scoped(scope_name) do
|
118
119
|
render_without_newrelic(context, options)
|
@@ -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 Rails 3+ middleware instrumentation')
|
20
20
|
module ActionDispatch
|
21
21
|
class MiddlewareStack
|
22
22
|
class Middleware
|
@@ -16,7 +16,7 @@ module NewRelic
|
|
16
16
|
timeout = NewRelic::Agent.config[:'rake.connect_timeout']
|
17
17
|
NewRelic::Agent.instance.wait_on_connect(timeout)
|
18
18
|
rescue => e
|
19
|
-
NewRelic::Agent.logger.error(
|
19
|
+
NewRelic::Agent.logger.error('Exception in wait_on_connect', e)
|
20
20
|
return yield
|
21
21
|
end
|
22
22
|
|
@@ -36,9 +36,9 @@ module NewRelic
|
|
36
36
|
end
|
37
37
|
|
38
38
|
def safe_from_third_party_gem?
|
39
|
-
return true unless NewRelic::LanguageSupport.bundled_gem?(
|
39
|
+
return true unless NewRelic::LanguageSupport.bundled_gem?('newrelic-rake')
|
40
40
|
|
41
|
-
::NewRelic::Agent.logger.info(
|
41
|
+
::NewRelic::Agent.logger.info('Not installing New Relic supported Rake instrumentation because the third party newrelic-rake gem is present')
|
42
42
|
false
|
43
43
|
end
|
44
44
|
|
@@ -72,11 +72,7 @@ module NewRelic
|
|
72
72
|
def instrument_invoke_prerequisites_concurrently(task)
|
73
73
|
task.instance_eval do
|
74
74
|
def invoke_prerequisites_concurrently(*_)
|
75
|
-
NewRelic::Agent::MethodTracer.trace_execution_scoped(
|
76
|
-
prereqs = self.prerequisite_tasks.map(&:name).join(", ")
|
77
|
-
if txn = ::NewRelic::Agent::Tracer.current_transaction
|
78
|
-
txn.current_segment.params[:statement] = NewRelic::Agent::Database.truncate_query("Couldn't trace concurrent prereq tasks: #{prereqs}")
|
79
|
-
end
|
75
|
+
NewRelic::Agent::MethodTracer.trace_execution_scoped('Rake/execute/multitask') do
|
80
76
|
super
|
81
77
|
end
|
82
78
|
end
|
@@ -86,19 +82,16 @@ module NewRelic
|
|
86
82
|
def before_invoke_transaction(task)
|
87
83
|
ensure_at_exit
|
88
84
|
|
89
|
-
|
90
|
-
# make one node and annotate with prereq task names
|
85
|
+
instrument_execute_on_prereqs(task)
|
91
86
|
if task.application.options.always_multitask
|
92
87
|
instrument_invoke_prerequisites_concurrently(task)
|
93
|
-
else
|
94
|
-
instrument_execute_on_prereqs(task)
|
95
88
|
end
|
96
89
|
rescue => e
|
97
|
-
NewRelic::Agent.logger.error(
|
90
|
+
NewRelic::Agent.logger.error('Error during Rake task invoke', e)
|
98
91
|
end
|
99
92
|
|
100
93
|
def record_attributes(args, task)
|
101
|
-
command_line = task.application.top_level_tasks.join(
|
94
|
+
command_line = task.application.top_level_tasks.join(' ')
|
102
95
|
NewRelic::Agent::Transaction.merge_untrusted_agent_attributes({:command => command_line},
|
103
96
|
:'job.rake',
|
104
97
|
NewRelic::Agent::AttributeFilter::DST_NONE)
|
@@ -109,7 +102,7 @@ module NewRelic
|
|
109
102
|
NewRelic::Agent::AttributeFilter::DST_NONE)
|
110
103
|
end
|
111
104
|
rescue => e
|
112
|
-
NewRelic::Agent.logger.error(
|
105
|
+
NewRelic::Agent.logger.error('Error during Rake task attribute recording.', e)
|
113
106
|
end
|
114
107
|
|
115
108
|
# Expects literal args passed to the task and array of task names
|
@@ -8,16 +8,16 @@ require_relative 'rake/prepend'
|
|
8
8
|
|
9
9
|
DependencyDetection.defer do
|
10
10
|
# Why not :rake? newrelic-rake used that name, so avoid conflicting
|
11
|
-
|
11
|
+
@name = :rake_instrumentation
|
12
12
|
configure_with :rake
|
13
13
|
|
14
14
|
depends_on { defined?(Rake) && defined?(Rake::VERSION) }
|
15
|
-
depends_on { Gem::Version.new(Rake::VERSION) >= Gem::Version.new(
|
15
|
+
depends_on { Gem::Version.new(Rake::VERSION) >= Gem::Version.new('10.0.0') }
|
16
16
|
depends_on { NewRelic::Agent.config[:'rake.tasks'].any? }
|
17
17
|
depends_on { NewRelic::Agent::Instrumentation::Rake.safe_from_third_party_gem? }
|
18
18
|
|
19
19
|
executes do
|
20
|
-
NewRelic::Agent.logger.info(
|
20
|
+
NewRelic::Agent.logger.info('Installing Rake instrumentation')
|
21
21
|
NewRelic::Agent.logger.debug("Instrumenting Rake tasks: #{NewRelic::Agent.config[:'rake.tasks']}")
|
22
22
|
end
|
23
23
|
|
@@ -12,6 +12,6 @@ module NewRelic::Agent::Instrumentation::Redis
|
|
12
12
|
PIPELINE_OPERATION = 'pipeline'
|
13
13
|
HAS_REDIS_CLIENT = defined?(::Redis) &&
|
14
14
|
Gem::Version.new(::Redis::VERSION) >= Gem::Version.new('5.0.0') &&
|
15
|
-
|
15
|
+
!defined?(::RedisClient).nil?
|
16
16
|
end
|
17
17
|
end
|
@@ -79,7 +79,8 @@ module NewRelic::Agent::Instrumentation
|
|
79
79
|
self
|
80
80
|
# redis-client gem v0.11+ (self is a RedisClient::Middlewares)
|
81
81
|
elsif respond_to?(:client)
|
82
|
-
|
82
|
+
# The following line needs else branch coverage
|
83
|
+
client && client.config # rubocop:disable Style/SafeNavigation
|
83
84
|
# redis-client gem <0.11 (self is a RedisClient::Middlewares)
|
84
85
|
elsif defined?(::RedisClient)
|
85
86
|
::RedisClient.config if ::RedisClient.respond_to?(:config)
|