newrelic_rpm 9.0.0 → 9.1.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 +6 -16
- data/.rubocop_todo.yml +4 -43
- data/.simplecov +1 -1
- data/CHANGELOG.md +60 -2
- data/Gemfile +1 -1
- data/Guardfile +7 -7
- data/README.md +1 -2
- data/Rakefile +8 -8
- data/Thorfile +1 -1
- 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 -56
- 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_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/instrumentation.rb +3 -3
- 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/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 +1 -1
- data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +3 -3
- data/lib/new_relic/agent/instrumentation/elasticsearch.rb +1 -1
- 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/grape/instrumentation.rb +4 -4
- data/lib/new_relic/agent/instrumentation/grape.rb +3 -3
- data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +2 -1
- data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +3 -3
- 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/instrumentation.rb +2 -2
- data/lib/new_relic/agent/instrumentation/memcache.rb +6 -6
- 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 +5 -5
- 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/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 +6 -6
- 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 -14
- 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 +1 -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 +7 -7
- 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 +6 -6
- 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 +3 -3
- 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/multiverse.rb +12 -6
- data/lib/tasks/tests.rake +6 -6
- data/newrelic_rpm.gemspec +13 -13
- data/test/agent_helper.rb +25 -24
- metadata +2 -2
@@ -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
|
@@ -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
|
@@ -6,7 +6,7 @@ module NewRelic::Agent::Instrumentation
|
|
6
6
|
module Elasticsearch
|
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
|
@@ -37,7 +37,7 @@ module NewRelic::Agent::Instrumentation
|
|
37
37
|
end
|
38
38
|
return nil unless operation_index
|
39
39
|
|
40
|
-
caller_locations[operation_index].to_s.split('`')[-1].gsub(/\W/,
|
40
|
+
caller_locations[operation_index].to_s.split('`')[-1].gsub(/\W/, '')
|
41
41
|
end
|
42
42
|
|
43
43
|
def nr_reported_query(query)
|
@@ -52,10 +52,10 @@ module NewRelic::Agent::Instrumentation
|
|
52
52
|
return if nr_hosts.empty?
|
53
53
|
|
54
54
|
NewRelic::Agent.disable_all_tracing do
|
55
|
-
@nr_cluster_name ||= perform_request('GET', '_cluster/health').body[
|
55
|
+
@nr_cluster_name ||= perform_request('GET', '_cluster/health').body['cluster_name']
|
56
56
|
end
|
57
57
|
rescue StandardError => e
|
58
|
-
NewRelic::Agent.logger.error(
|
58
|
+
NewRelic::Agent.logger.error('Failed to get cluster name for elasticsearch', e)
|
59
59
|
nil
|
60
60
|
end
|
61
61
|
|
@@ -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
|
@@ -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
|
@@ -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
|
@@ -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
|
@@ -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
|
@@ -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
|
@@ -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( \
|
@@ -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,7 +55,7 @@ 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
61
|
chain_instrument NewRelic::Agent::Instrumentation::Memcache::Dalli
|
@@ -78,7 +78,7 @@ 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
84
|
chain_instrument NewRelic::Agent::Instrumentation::Memcache::DalliCAS
|
@@ -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
|
@@ -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
|