newrelic_rpm 9.0.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 +7 -81
- data/.rubocop_todo.yml +4 -43
- data/.simplecov +2 -1
- data/Brewfile +1 -0
- data/CHANGELOG.md +101 -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 +106 -118
- 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 +15 -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 +9 -8
- 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 +8 -2
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction.rb +43 -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 -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/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 +2 -2
- 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 +5 -5
- 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
@@ -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
|
@@ -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,7 +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(
|
75
|
+
NewRelic::Agent::MethodTracer.trace_execution_scoped('Rake/execute/multitask') do
|
76
76
|
super
|
77
77
|
end
|
78
78
|
end
|
@@ -87,11 +87,11 @@ module NewRelic
|
|
87
87
|
instrument_invoke_prerequisites_concurrently(task)
|
88
88
|
end
|
89
89
|
rescue => e
|
90
|
-
NewRelic::Agent.logger.error(
|
90
|
+
NewRelic::Agent.logger.error('Error during Rake task invoke', e)
|
91
91
|
end
|
92
92
|
|
93
93
|
def record_attributes(args, task)
|
94
|
-
command_line = task.application.top_level_tasks.join(
|
94
|
+
command_line = task.application.top_level_tasks.join(' ')
|
95
95
|
NewRelic::Agent::Transaction.merge_untrusted_agent_attributes({:command => command_line},
|
96
96
|
:'job.rake',
|
97
97
|
NewRelic::Agent::AttributeFilter::DST_NONE)
|
@@ -102,7 +102,7 @@ module NewRelic
|
|
102
102
|
NewRelic::Agent::AttributeFilter::DST_NONE)
|
103
103
|
end
|
104
104
|
rescue => e
|
105
|
-
NewRelic::Agent.logger.error(
|
105
|
+
NewRelic::Agent.logger.error('Error during Rake task attribute recording.', e)
|
106
106
|
end
|
107
107
|
|
108
108
|
# Expects literal args passed to the task and array of task names
|
@@ -12,12 +12,12 @@ DependencyDetection.defer do
|
|
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)
|
@@ -28,9 +28,9 @@ DependencyDetection.defer do
|
|
28
28
|
if Sequel::Database.respond_to?(:extension)
|
29
29
|
Sequel::Database.extension(:new_relic_instrumentation)
|
30
30
|
else
|
31
|
-
NewRelic::Agent.logger.info(
|
32
|
-
NewRelic::Agent.logger.info(
|
33
|
-
|
31
|
+
NewRelic::Agent.logger.info('Detected Sequel version %s.' % [Sequel::VERSION])
|
32
|
+
NewRelic::Agent.logger.info('Please see additional documentation: ' +
|
33
|
+
'https://newrelic.com/docs/ruby/sequel-instrumentation')
|
34
34
|
end
|
35
35
|
|
36
36
|
Sequel.synchronize { Sequel::DATABASES.dup }.each do |db|
|
@@ -40,7 +40,7 @@ DependencyDetection.defer do
|
|
40
40
|
Sequel::Model.plugin(:new_relic_instrumentation) if defined?(Sequel::Model)
|
41
41
|
else
|
42
42
|
|
43
|
-
NewRelic::Agent.logger.info(
|
43
|
+
NewRelic::Agent.logger.info('Sequel instrumentation requires at least version 3.37.0.')
|
44
44
|
|
45
45
|
end
|
46
46
|
end
|
@@ -9,22 +9,22 @@ module NewRelic
|
|
9
9
|
extend self
|
10
10
|
|
11
11
|
# Fallback if the product cannot be determined
|
12
|
-
DEFAULT_PRODUCT_NAME =
|
12
|
+
DEFAULT_PRODUCT_NAME = 'Sequel'.freeze
|
13
13
|
|
14
14
|
# A Sequel adapter is called an "adapter_scheme" and can be accessed from
|
15
15
|
# the database:
|
16
16
|
#
|
17
17
|
# DB.adapter_scheme
|
18
18
|
PRODUCT_NAMES = {
|
19
|
-
:ibmdb =>
|
20
|
-
:firebird =>
|
21
|
-
:informix =>
|
22
|
-
:jdbc =>
|
23
|
-
:mysql =>
|
24
|
-
:mysql2 =>
|
25
|
-
:oracle =>
|
26
|
-
:postgres =>
|
27
|
-
:sqlite =>
|
19
|
+
:ibmdb => 'IBMDB2',
|
20
|
+
:firebird => 'Firebird',
|
21
|
+
:informix => 'Informix',
|
22
|
+
:jdbc => 'JDBC',
|
23
|
+
:mysql => 'MySQL',
|
24
|
+
:mysql2 => 'MySQL',
|
25
|
+
:oracle => 'Oracle',
|
26
|
+
:postgres => 'Postgres',
|
27
|
+
:sqlite => 'SQLite'
|
28
28
|
}.freeze
|
29
29
|
|
30
30
|
def product_name_from_adapter(adapter)
|
@@ -23,7 +23,7 @@ if defined?(Sidekiq::VERSION) && Sidekiq::VERSION < '7.0.0'
|
|
23
23
|
:category => 'OtherTransaction/SidekiqJob'
|
24
24
|
}
|
25
25
|
rescue => e
|
26
|
-
NewRelic::Agent.logger.error(
|
26
|
+
NewRelic::Agent.logger.error('Failure during deserializing YAML for Sidekiq::Extensions::DelayedClass', e)
|
27
27
|
NewRelic::Agent::Instrumentation::Sidekiq::Server.default_trace_args(msg)
|
28
28
|
end
|
29
29
|
end
|
@@ -21,7 +21,7 @@ module NewRelic::Agent::Instrumentation::Sidekiq
|
|
21
21
|
NewRelic::Agent::Transaction.merge_untrusted_agent_attributes(msg['args'], :'job.sidekiq.args',
|
22
22
|
NewRelic::Agent::AttributeFilter::DST_NONE)
|
23
23
|
|
24
|
-
::NewRelic::Agent::DistributedTracing::accept_distributed_trace_headers(trace_headers,
|
24
|
+
::NewRelic::Agent::DistributedTracing::accept_distributed_trace_headers(trace_headers, 'Other') if ::NewRelic::Agent.config[:'distributed_tracing.enabled'] && trace_headers&.any?
|
25
25
|
yield
|
26
26
|
end
|
27
27
|
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 'sidekiq/client'
|
5
6
|
require_relative 'sidekiq/server'
|
6
7
|
require_relative 'sidekiq/extensions/delayed_class'
|
@@ -33,7 +33,7 @@ module NewRelic::Agent::Instrumentation
|
|
33
33
|
set(:newrelic_ignores, Hash.new([])) if !respond_to?(:newrelic_ignores)
|
34
34
|
|
35
35
|
# If we call an ignore without a route, it applies to the whole app
|
36
|
-
routes = [
|
36
|
+
routes = ['*'] if routes.empty?
|
37
37
|
|
38
38
|
settings.newrelic_ignores[type] += routes.map do |r|
|
39
39
|
# Ugly sending to private Base#compile, but we want to mimic
|
@@ -45,7 +45,8 @@ module NewRelic::Agent::Instrumentation
|
|
45
45
|
|
46
46
|
def try_to_use(app, clazz)
|
47
47
|
install_lock.synchronize do
|
48
|
-
|
48
|
+
# The following line needs else branch coverage
|
49
|
+
has_middleware = app.middleware && app.middleware.any? { |info| info && info[0] == clazz } # rubocop:disable Style/SafeNavigation
|
49
50
|
app.use(clazz) unless has_middleware
|
50
51
|
end
|
51
52
|
end
|
@@ -53,9 +54,9 @@ module NewRelic::Agent::Instrumentation
|
|
53
54
|
# Capture last route we've seen. Will set for transaction on route_eval
|
54
55
|
def process_route_with_tracing(*args)
|
55
56
|
begin
|
56
|
-
env[
|
57
|
+
env['newrelic.last_route'] = args[0]
|
57
58
|
rescue => e
|
58
|
-
::NewRelic::Agent.logger.debug(
|
59
|
+
::NewRelic::Agent.logger.debug('Failed determining last route in Sinatra', e)
|
59
60
|
end
|
60
61
|
yield
|
61
62
|
end
|
@@ -74,7 +75,7 @@ module NewRelic::Agent::Instrumentation
|
|
74
75
|
)
|
75
76
|
end
|
76
77
|
rescue => e
|
77
|
-
::NewRelic::Agent.logger.debug(
|
78
|
+
::NewRelic::Agent.logger.debug('Failed during route_eval to set transaction name', e)
|
78
79
|
end
|
79
80
|
yield
|
80
81
|
end
|
@@ -83,7 +84,7 @@ module NewRelic::Agent::Instrumentation
|
|
83
84
|
begin
|
84
85
|
@request.params
|
85
86
|
rescue => e
|
86
|
-
NewRelic::Agent.logger.debug(
|
87
|
+
NewRelic::Agent.logger.debug('Failed to get params from Rack request.', e)
|
87
88
|
nil
|
88
89
|
end
|
89
90
|
end
|
@@ -47,7 +47,7 @@ module NewRelic
|
|
47
47
|
# For bare Sinatra, our override on process_route captures the last
|
48
48
|
# route into the environment for us to use later on
|
49
49
|
def route_for_sinatra(env)
|
50
|
-
env[
|
50
|
+
env['newrelic.last_route']
|
51
51
|
end
|
52
52
|
|
53
53
|
# For Padrino, the request object has a copy of the matched route
|
@@ -6,10 +6,10 @@ module NewRelic
|
|
6
6
|
module Agent
|
7
7
|
module Instrumentation
|
8
8
|
module Typhoeus
|
9
|
-
HYDRA_SEGMENT_NAME =
|
10
|
-
NOTICEABLE_ERROR_CLASS =
|
9
|
+
HYDRA_SEGMENT_NAME = 'External/Multiple/Typhoeus::Hydra/run'
|
10
|
+
NOTICEABLE_ERROR_CLASS = 'Typhoeus::Errors::TyphoeusError'
|
11
11
|
|
12
|
-
EARLIEST_VERSION = Gem::Version.new(
|
12
|
+
EARLIEST_VERSION = Gem::Version.new('0.5.3')
|
13
13
|
|
14
14
|
def self.is_supported_version?
|
15
15
|
Gem::Version.new(::Typhoeus::VERSION) >= EARLIEST_VERSION
|
@@ -26,7 +26,7 @@ module NewRelic
|
|
26
26
|
response.return_message
|
27
27
|
else
|
28
28
|
# 0.5.4 seems to have lost xxxx_message methods altogether.
|
29
|
-
|
29
|
+
'timeout'
|
30
30
|
end
|
31
31
|
end
|
32
32
|
|
@@ -72,7 +72,7 @@ module NewRelic
|
|
72
72
|
end
|
73
73
|
request.on_complete.unshift(callback)
|
74
74
|
rescue => e
|
75
|
-
NewRelic::Agent.logger.error(
|
75
|
+
NewRelic::Agent.logger.error('Exception during trace setup for Typhoeus request', e)
|
76
76
|
end
|
77
77
|
end
|
78
78
|
end
|