newrelic_rpm 9.0.0 → 9.2.0
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 +7 -81
- data/.rubocop_todo.yml +4 -43
- data/.simplecov +2 -1
- data/Brewfile +1 -0
- data/CHANGELOG.md +74 -2
- data/Gemfile +1 -1
- data/Guardfile +8 -7
- data/README.md +1 -2
- data/Rakefile +8 -8
- data/Thorfile +1 -1
- data/bin/newrelic +1 -0
- data/bin/newrelic_cmd +1 -0
- data/bin/nrdebug +20 -20
- data/init.rb +1 -1
- data/lib/new_relic/agent/agent.rb +3 -16
- data/lib/new_relic/agent/agent_helpers/connect.rb +4 -9
- 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 +2 -2
- 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 -2
- 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 +5 -5
- data/lib/new_relic/agent/configuration/default_source.rb +57 -80
- data/lib/new_relic/agent/configuration/environment_source.rb +2 -2
- data/lib/new_relic/agent/configuration/high_security_source.rb +3 -3
- data/lib/new_relic/agent/configuration/manager.rb +2 -2
- data/lib/new_relic/agent/configuration/security_policy_source.rb +10 -10
- 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 -4
- 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 +7 -8
- 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 +35 -7
- data/lib/new_relic/agent/error_filter.rb +2 -2
- 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 +1 -1
- 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 +5 -3
- 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 +1 -1
- data/lib/new_relic/agent/instrumentation/fiber.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +4 -4
- data/lib/new_relic/agent/instrumentation/grape.rb +3 -3
- 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 +8 -8
- 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 +1 -1
- 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 +7 -7
- data/lib/new_relic/agent/instrumentation/rake.rb +2 -2
- 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/resque/helper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sequel.rb +4 -4
- 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/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 -4
- 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.rb +14 -15
- 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/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 +8 -7
- data/lib/new_relic/agent/transaction/abstract_segment.rb +52 -46
- 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 +2 -2
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction.rb +39 -36
- 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 +78 -16
- 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 +14 -14
- 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 +5 -5
- data/lib/new_relic/control/instrumentation.rb +1 -1
- data/lib/new_relic/control/private_instance_methods.rb +1 -1
- data/lib/new_relic/dependency_detection.rb +4 -17
- 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/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 -0
- data/lib/new_relic/version.rb +1 -1
- data/lib/newrelic_rpm.rb +3 -3
- data/lib/sequel/extensions/new_relic_instrumentation.rb +3 -3
- data/lib/sequel/plugins/new_relic_instrumentation.rb +1 -1
- data/lib/tasks/config.rake +12 -12
- data/lib/tasks/coverage_report.rake +4 -4
- data/lib/tasks/helpers/format.rb +9 -9
- data/lib/tasks/helpers/removers.rb +5 -5
- data/lib/tasks/install.rake +4 -4
- data/lib/tasks/instrumentation_generator/instrumentation.thor +8 -8
- 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 +3 -3
- data/newrelic_rpm.gemspec +13 -13
- data/test/agent_helper.rb +25 -24
- metadata +73 -4
- data/lib/new_relic/agent/range_extensions.rb +0 -27
@@ -236,7 +236,8 @@ module NewRelic
|
|
236
236
|
end
|
237
237
|
|
238
238
|
def self.prefix_for_category(txn, category = nil)
|
239
|
-
|
239
|
+
# the following line needs else branch coverage
|
240
|
+
category ||= (txn && txn.category) # rubocop:disable Style/SafeNavigation
|
240
241
|
case category
|
241
242
|
when :controller then ::NewRelic::Agent::Transaction::CONTROLLER_PREFIX
|
242
243
|
when :web then ::NewRelic::Agent::Transaction::CONTROLLER_PREFIX
|
@@ -360,7 +361,7 @@ module NewRelic
|
|
360
361
|
skip_tracing = do_not_trace? || !state.is_execution_traced?
|
361
362
|
|
362
363
|
if skip_tracing
|
363
|
-
state.current_transaction
|
364
|
+
state.current_transaction&.ignore!
|
364
365
|
NewRelic::Agent.disable_all_tracing { return yield }
|
365
366
|
end
|
366
367
|
|
@@ -386,7 +387,8 @@ module NewRelic
|
|
386
387
|
raise
|
387
388
|
end
|
388
389
|
ensure
|
389
|
-
|
390
|
+
# the following line needs else branch coverage
|
391
|
+
finishable.finish if finishable # rubocop:disable Style/SafeNavigation
|
390
392
|
end
|
391
393
|
end
|
392
394
|
|
@@ -7,7 +7,7 @@ require_relative 'instrumentation'
|
|
7
7
|
module NewRelic::Agent::Instrumentation
|
8
8
|
module Curb
|
9
9
|
module Chain
|
10
|
-
def self.instrument!
|
10
|
+
def self.instrument! # rubocop:disable Metrics/AbcSize
|
11
11
|
Curl::Easy.class_eval do
|
12
12
|
include NewRelic::Agent::Instrumentation::Curb::Easy
|
13
13
|
|
@@ -81,7 +81,7 @@ module NewRelic
|
|
81
81
|
def perform_with_tracing
|
82
82
|
return yield if first_request_is_serial?
|
83
83
|
|
84
|
-
trace_execution_scoped(
|
84
|
+
trace_execution_scoped('External/Multiple/Curb::Multi/perform') do
|
85
85
|
yield
|
86
86
|
end
|
87
87
|
end
|
@@ -107,7 +107,7 @@ module NewRelic
|
|
107
107
|
request._nr_instrumented = true
|
108
108
|
end
|
109
109
|
rescue => err
|
110
|
-
NewRelic::Agent.logger.error(
|
110
|
+
NewRelic::Agent.logger.error('Untrapped exception', err)
|
111
111
|
end
|
112
112
|
|
113
113
|
# Create request and response adapter objects for the specified +request+
|
@@ -141,12 +141,12 @@ module NewRelic
|
|
141
141
|
request._nr_original_on_complete = original_callback
|
142
142
|
request.on_complete do |finished_request|
|
143
143
|
begin
|
144
|
-
segment
|
144
|
+
segment&.process_response_headers(wrapped_response)
|
145
145
|
ensure
|
146
146
|
::NewRelic::Agent::Transaction::Segment.finish(segment)
|
147
147
|
# Make sure the existing completion callback is run, and restore the
|
148
148
|
# on_complete callback to how it was before.
|
149
|
-
original_callback
|
149
|
+
original_callback&.call(finished_request)
|
150
150
|
remove_instrumentation_callbacks(request)
|
151
151
|
end
|
152
152
|
end
|
@@ -173,7 +173,7 @@ module NewRelic
|
|
173
173
|
segment.notice_error(noticeable_error)
|
174
174
|
end
|
175
175
|
ensure
|
176
|
-
original_callback
|
176
|
+
original_callback&.call(failed_request, error)
|
177
177
|
remove_failure_callback(failed_request)
|
178
178
|
end
|
179
179
|
end
|
@@ -23,7 +23,8 @@ module NewRelic::Agent::Instrumentation
|
|
23
23
|
NewRelic::Agent.notice_error(payload[:exception_object]) if payload.key?(:exception_object)
|
24
24
|
|
25
25
|
finishable = pop_segment(id)
|
26
|
-
|
26
|
+
# the following line needs else branch coverage
|
27
|
+
finishable.finish if finishable # rubocop:disable Style/SafeNavigation
|
27
28
|
rescue => e
|
28
29
|
log_notification_error(e, name, 'finish')
|
29
30
|
end
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# This file is distributed under New Relic's license terms.
|
2
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
3
|
# frozen_string_literal: true
|
4
|
+
|
4
5
|
require_relative 'instrumentation'
|
5
6
|
|
6
7
|
module NewRelic::Agent::Instrumentation
|
@@ -22,7 +22,7 @@ module NewRelic
|
|
22
22
|
install_newrelic_job_tracer
|
23
23
|
NewRelic::Control.instance.init_plugin(:dispatcher => :delayed_job)
|
24
24
|
else
|
25
|
-
NewRelic::Agent.logger.warn(
|
25
|
+
NewRelic::Agent.logger.warn('Did not find a Delayed::Job class responding to invoke_job, aborting DJ instrumentation')
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -109,6 +109,7 @@ DependencyDetection.defer do
|
|
109
109
|
end
|
110
110
|
|
111
111
|
def delayed_job_version
|
112
|
-
|
112
|
+
# the following line needs else branch coverage
|
113
|
+
Gem.loaded_specs['delayed_job'].version if Gem.loaded_specs['delayed_job'] # rubocop:disable Style/SafeNavigation
|
113
114
|
end
|
114
115
|
end
|
@@ -3,10 +3,10 @@
|
|
3
3
|
# frozen_string_literal: true
|
4
4
|
|
5
5
|
module NewRelic::Agent::Instrumentation
|
6
|
-
module Elasticsearch
|
6
|
+
module Elasticsearch::Chain
|
7
7
|
def self.instrument!
|
8
8
|
to_instrument = if ::Gem::Version.create(::Elasticsearch::VERSION) <
|
9
|
-
::Gem::Version.create(
|
9
|
+
::Gem::Version.create('8.0.0')
|
10
10
|
::Elasticsearch::Transport::Client
|
11
11
|
else
|
12
12
|
::Elastic::Transport::Client
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# This file is distributed under New Relic's license terms.
|
2
2
|
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
|
3
3
|
# frozen_string_literal: true
|
4
|
+
|
4
5
|
require_relative '../../datastores/nosql_obfuscator'
|
5
6
|
|
6
7
|
module NewRelic::Agent::Instrumentation
|
@@ -37,7 +38,7 @@ module NewRelic::Agent::Instrumentation
|
|
37
38
|
end
|
38
39
|
return nil unless operation_index
|
39
40
|
|
40
|
-
caller_locations[operation_index].to_s.split('`')[-1].gsub(/\W/,
|
41
|
+
caller_locations[operation_index].to_s.split('`')[-1].gsub(/\W/, '')
|
41
42
|
end
|
42
43
|
|
43
44
|
def nr_reported_query(query)
|
@@ -52,10 +53,10 @@ module NewRelic::Agent::Instrumentation
|
|
52
53
|
return if nr_hosts.empty?
|
53
54
|
|
54
55
|
NewRelic::Agent.disable_all_tracing do
|
55
|
-
@nr_cluster_name ||= perform_request('GET', '_cluster/health').body[
|
56
|
+
@nr_cluster_name ||= perform_request('GET', '_cluster/health').body['cluster_name']
|
56
57
|
end
|
57
58
|
rescue StandardError => e
|
58
|
-
NewRelic::Agent.logger.error(
|
59
|
+
NewRelic::Agent.logger.error('Failed to get cluster name for elasticsearch', e)
|
59
60
|
nil
|
60
61
|
end
|
61
62
|
|
@@ -16,7 +16,7 @@ DependencyDetection.defer do
|
|
16
16
|
executes do
|
17
17
|
NewRelic::Agent.logger.info('Installing Elasticsearch instrumentation')
|
18
18
|
|
19
|
-
to_instrument = if Gem::Version.create(Elasticsearch::VERSION) < Gem::Version.create(
|
19
|
+
to_instrument = if Gem::Version.create(Elasticsearch::VERSION) < Gem::Version.create('8.0.0')
|
20
20
|
Elasticsearch::Transport::Client
|
21
21
|
else
|
22
22
|
Elastic::Transport::Client
|
@@ -25,7 +25,7 @@ DependencyDetection.defer do
|
|
25
25
|
if use_prepend?
|
26
26
|
prepend_instrument to_instrument, NewRelic::Agent::Instrumentation::Elasticsearch::Prepend
|
27
27
|
else
|
28
|
-
chain_instrument NewRelic::Agent::Instrumentation::Elasticsearch
|
28
|
+
chain_instrument NewRelic::Agent::Instrumentation::Elasticsearch::Chain
|
29
29
|
end
|
30
30
|
end
|
31
31
|
end
|
@@ -46,7 +46,8 @@ module ::Excon
|
|
46
46
|
end
|
47
47
|
|
48
48
|
def finish_trace(datum) # THREAD_LOCAL_ACCESS
|
49
|
-
|
49
|
+
# The following line needs else branch coverage
|
50
|
+
segment = datum[:connection] && datum[:connection].instance_variable_get(TRACE_DATA_IVAR) # rubocop:disable Style/SafeNavigation
|
50
51
|
if segment
|
51
52
|
begin
|
52
53
|
segment.notice_error(datum[:error]) if datum[:error]
|
@@ -18,7 +18,7 @@ DependencyDetection.defer do
|
|
18
18
|
# but alas, it does not yet.
|
19
19
|
|
20
20
|
# TODO: MAJOR VERSION - update min version to 0.56.0
|
21
|
-
EXCON_MIN_VERSION = Gem::Version.new(
|
21
|
+
EXCON_MIN_VERSION = Gem::Version.new('0.19.0')
|
22
22
|
|
23
23
|
depends_on do
|
24
24
|
defined?(Excon) && defined?(Excon::VERSION)
|
@@ -46,7 +46,7 @@ DependencyDetection.defer do
|
|
46
46
|
deprecation_msg
|
47
47
|
)
|
48
48
|
|
49
|
-
NewRelic::Agent.record_metric(
|
49
|
+
NewRelic::Agent.record_metric('Supportability/Deprecated/Excon', 1)
|
50
50
|
end
|
51
51
|
|
52
52
|
def install_excon_instrumentation(excon_version)
|
@@ -64,7 +64,7 @@ DependencyDetection.defer do
|
|
64
64
|
if defaults[:middlewares]
|
65
65
|
defaults[:middlewares] << Excon::Middleware::NewRelicCrossAppTracing
|
66
66
|
else
|
67
|
-
NewRelic::Agent.logger.warn(
|
67
|
+
NewRelic::Agent.logger.warn('Did not find :middlewares key in Excon.defaults, skipping Excon instrumentation')
|
68
68
|
end
|
69
69
|
end
|
70
70
|
end
|
@@ -19,7 +19,7 @@ DependencyDetection.defer do
|
|
19
19
|
if use_prepend?
|
20
20
|
prepend_instrument Fiber, NewRelic::Agent::Instrumentation::MonitoredFiber::Prepend
|
21
21
|
else
|
22
|
-
chain_instrument NewRelic::Agent::Instrumentation::MonitoredFiber
|
22
|
+
chain_instrument NewRelic::Agent::Instrumentation::MonitoredFiber::Chain
|
23
23
|
end
|
24
24
|
end
|
25
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
|
@@ -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,9 +38,9 @@ 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
|
@@ -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
|
@@ -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)
|
@@ -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
|