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
@@ -14,9 +14,7 @@ module NewRelic
|
|
14
14
|
@starting_pid = nil
|
15
15
|
@after_forker = after_forker
|
16
16
|
|
17
|
-
|
18
|
-
events.subscribe(:start_transaction, &method(:on_transaction))
|
19
|
-
end
|
17
|
+
events&.subscribe(:start_transaction, &method(:on_transaction))
|
20
18
|
end
|
21
19
|
|
22
20
|
def on_transaction(*_)
|
data/lib/new_relic/agent/heap.rb
CHANGED
@@ -26,7 +26,8 @@ module NewRelic
|
|
26
26
|
def initialize(items = nil, &priority_fn)
|
27
27
|
@items = []
|
28
28
|
@priority_fn = priority_fn || ->(x) { x }
|
29
|
-
|
29
|
+
# the following line needs else branch coverage
|
30
|
+
items.each { |item| push(item) } if items # rubocop:disable Style/SafeNavigation
|
30
31
|
end
|
31
32
|
|
32
33
|
def [](index)
|
@@ -5,8 +5,8 @@
|
|
5
5
|
module NewRelic
|
6
6
|
module Agent
|
7
7
|
module HTTPClients
|
8
|
-
MUST_IMPLEMENT_ERROR =
|
9
|
-
WHINY_NIL_ERROR =
|
8
|
+
MUST_IMPLEMENT_ERROR = 'Subclasses of %s must implement a :%s method'
|
9
|
+
WHINY_NIL_ERROR = '%s cannot initialize with a nil wrapped_response object.'
|
10
10
|
|
11
11
|
# This class provides a public interface for wrapping HTTP requests. This
|
12
12
|
# may be used to create wrappers that are compatible with New Relic's
|
@@ -14,28 +14,16 @@ module NewRelic
|
|
14
14
|
#
|
15
15
|
# @api public
|
16
16
|
class AbstractRequest
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
def []=
|
22
|
-
raise NotImplementedError, MUST_IMPLEMENT_ERROR % [self.class, __method__]
|
23
|
-
end
|
24
|
-
|
25
|
-
def type
|
26
|
-
raise NotImplementedError, MUST_IMPLEMENT_ERROR % [self.class, __method__]
|
27
|
-
end
|
28
|
-
|
29
|
-
def host_from_header
|
30
|
-
raise NotImplementedError, MUST_IMPLEMENT_ERROR % [self.class, __method__]
|
17
|
+
%i[[] []= type host_from_header host method headers uri].each do |name|
|
18
|
+
define_method(name) do
|
19
|
+
not_implemented(name)
|
20
|
+
end
|
31
21
|
end
|
32
22
|
|
33
|
-
|
34
|
-
raise NotImplementedError, MUST_IMPLEMENT_ERROR % [self.class, __method__]
|
35
|
-
end
|
23
|
+
private
|
36
24
|
|
37
|
-
def
|
38
|
-
raise NotImplementedError, MUST_IMPLEMENT_ERROR % [self.class,
|
25
|
+
def not_implemented(method_name)
|
26
|
+
raise NotImplementedError, MUST_IMPLEMENT_ERROR % [self.class, method_name]
|
39
27
|
end
|
40
28
|
end
|
41
29
|
|
@@ -33,16 +33,20 @@ module NewRelic
|
|
33
33
|
end
|
34
34
|
|
35
35
|
def [](key)
|
36
|
-
|
36
|
+
headers[key]
|
37
37
|
end
|
38
38
|
|
39
39
|
def []=(key, value)
|
40
|
-
|
40
|
+
headers[key] = value
|
41
41
|
end
|
42
42
|
|
43
43
|
def uri
|
44
44
|
@uri ||= URIUtil.parse_and_normalize_url(@curlobj.url)
|
45
45
|
end
|
46
|
+
|
47
|
+
def headers
|
48
|
+
@curlobj.headers
|
49
|
+
end
|
46
50
|
end
|
47
51
|
|
48
52
|
class CurbResponse < AbstractResponse
|
@@ -62,7 +66,7 @@ module NewRelic
|
|
62
66
|
def append_header_data(data)
|
63
67
|
key, value = data.split(/:\s*/, 2)
|
64
68
|
@headers[key.downcase] = value
|
65
|
-
@wrapped_response._nr_header_str ||=
|
69
|
+
@wrapped_response._nr_header_str ||= +''
|
66
70
|
@wrapped_response._nr_header_str << data
|
67
71
|
end
|
68
72
|
|
@@ -46,7 +46,7 @@ module NewRelic
|
|
46
46
|
class ExconHTTPRequest < AbstractRequest
|
47
47
|
attr_reader :method
|
48
48
|
|
49
|
-
EXCON =
|
49
|
+
EXCON = 'Excon'
|
50
50
|
LHOST = 'host'
|
51
51
|
UHOST = 'Host'
|
52
52
|
COLON = ':'
|
@@ -65,7 +65,6 @@ module NewRelic
|
|
65
65
|
end
|
66
66
|
|
67
67
|
def host_from_header
|
68
|
-
headers = @datum[:headers]
|
69
68
|
if hostname = (headers[LHOST] || headers[UHOST])
|
70
69
|
hostname.split(COLON).first
|
71
70
|
end
|
@@ -76,18 +75,21 @@ module NewRelic
|
|
76
75
|
end
|
77
76
|
|
78
77
|
def [](key)
|
79
|
-
|
78
|
+
headers[key]
|
80
79
|
end
|
81
80
|
|
82
81
|
def []=(key, value)
|
83
|
-
|
84
|
-
@datum[:headers][key] = value
|
82
|
+
headers[key] = value
|
85
83
|
end
|
86
84
|
|
87
85
|
def uri
|
88
86
|
url = "#{@scheme}://#{host}:#{@port}#{@path}"
|
89
87
|
URIUtil.parse_and_normalize_url(url)
|
90
88
|
end
|
89
|
+
|
90
|
+
def headers
|
91
|
+
@datum[:headers]
|
92
|
+
end
|
91
93
|
end
|
92
94
|
end
|
93
95
|
end
|
@@ -25,7 +25,7 @@ module NewRelic
|
|
25
25
|
class HTTPClientRequest < AbstractRequest
|
26
26
|
attr_reader :request
|
27
27
|
|
28
|
-
HTTP_CLIENT =
|
28
|
+
HTTP_CLIENT = 'HTTPClient'.freeze
|
29
29
|
LHOST = 'host'.freeze
|
30
30
|
UHOST = 'Host'.freeze
|
31
31
|
COLON = ':'.freeze
|
@@ -57,12 +57,16 @@ module NewRelic
|
|
57
57
|
end
|
58
58
|
|
59
59
|
def [](key)
|
60
|
-
|
60
|
+
headers[key]
|
61
61
|
end
|
62
62
|
|
63
63
|
def []=(key, value)
|
64
64
|
request.http_header[key] = value
|
65
65
|
end
|
66
|
+
|
67
|
+
def headers
|
68
|
+
request.headers
|
69
|
+
end
|
66
70
|
end
|
67
71
|
end
|
68
72
|
end
|
@@ -61,7 +61,7 @@ module NewRelic
|
|
61
61
|
::NewRelic::Agent::HTTPClients::URIUtil.parse_and_normalize_url(@request.path)
|
62
62
|
else
|
63
63
|
connection_address = @connection.address
|
64
|
-
if
|
64
|
+
if Resolv::IPv6::Regex.match?(connection_address)
|
65
65
|
connection_address = "[#{connection_address}]"
|
66
66
|
end
|
67
67
|
|
@@ -71,6 +71,10 @@ module NewRelic
|
|
71
71
|
)
|
72
72
|
end
|
73
73
|
end
|
74
|
+
|
75
|
+
def headers
|
76
|
+
@request.instance_variable_get(:@header)
|
77
|
+
end
|
74
78
|
end
|
75
79
|
end
|
76
80
|
end
|
@@ -42,7 +42,7 @@ module NewRelic
|
|
42
42
|
end
|
43
43
|
end
|
44
44
|
|
45
|
-
TYPHOEUS =
|
45
|
+
TYPHOEUS = 'Typhoeus'.freeze
|
46
46
|
|
47
47
|
def type
|
48
48
|
TYPHOEUS
|
@@ -66,14 +66,17 @@ module NewRelic
|
|
66
66
|
end
|
67
67
|
|
68
68
|
def [](key)
|
69
|
-
return nil unless @request.options &&
|
69
|
+
return nil unless @request.options && headers
|
70
70
|
|
71
|
-
|
71
|
+
headers[key]
|
72
72
|
end
|
73
73
|
|
74
74
|
def []=(key, value)
|
75
|
-
|
76
|
-
|
75
|
+
headers[key] = value
|
76
|
+
end
|
77
|
+
|
78
|
+
def headers
|
79
|
+
@request.options[:headers] || {}
|
77
80
|
end
|
78
81
|
|
79
82
|
def uri
|
@@ -36,11 +36,11 @@ module NewRelic
|
|
36
36
|
uri = ::URI.parse(url)
|
37
37
|
end
|
38
38
|
end
|
39
|
-
uri.host
|
39
|
+
uri.host&.downcase!
|
40
40
|
uri
|
41
41
|
end
|
42
42
|
|
43
|
-
QUESTION_MARK =
|
43
|
+
QUESTION_MARK = '?'
|
44
44
|
|
45
45
|
def self.strip_query_string(fragment)
|
46
46
|
if fragment.include?(QUESTION_MARK)
|
@@ -27,11 +27,14 @@ module NewRelic
|
|
27
27
|
end
|
28
28
|
|
29
29
|
def controller_name_for_metric(payload)
|
30
|
+
return unless payload
|
30
31
|
# redirect_to
|
31
|
-
return payload[:request].controller_class.controller_path if payload[:request] && payload[:request].controller_class
|
32
|
+
return payload[:request].controller_class.controller_path if payload[:request].respond_to?(:controller_class) && payload[:request].controller_class&.respond_to?(:controller_path)
|
32
33
|
|
33
34
|
# unpermitted_parameters
|
34
|
-
|
35
|
+
if payload[:context]&.[](:controller) && constantized_class = ::NewRelic::LanguageSupport.constantize(payload[:context][:controller])
|
36
|
+
constantized_class.respond_to?(:controller_path) ? constantized_class.controller_path : nil
|
37
|
+
end
|
35
38
|
end
|
36
39
|
end
|
37
40
|
end
|
@@ -19,7 +19,7 @@ module NewRelic
|
|
19
19
|
else
|
20
20
|
# if this transaction is ignored, make sure child
|
21
21
|
# transaction are also ignored
|
22
|
-
state.current_transaction
|
22
|
+
state.current_transaction&.ignore!
|
23
23
|
NewRelic::Agent.instance.push_trace_execution_flag(false)
|
24
24
|
end
|
25
25
|
rescue => e
|
@@ -90,7 +90,8 @@ module NewRelic
|
|
90
90
|
end
|
91
91
|
|
92
92
|
def queue_start(request)
|
93
|
-
|
93
|
+
# the following line needs else branch coverage
|
94
|
+
if request && request.respond_to?(:env) # rubocop:disable Style/SafeNavigation
|
94
95
|
QueueTime.parse_frontend_timestamp(request.env, Process.clock_gettime(Process::CLOCK_REALTIME))
|
95
96
|
end
|
96
97
|
end
|
@@ -75,7 +75,7 @@ module NewRelic
|
|
75
75
|
# so do not mistake rendering a collection for rendering a file.
|
76
76
|
if identifier.nil? && name != RENDER_COLLECTION_EVENT_NAME
|
77
77
|
'file'
|
78
|
-
elsif
|
78
|
+
elsif /template$/.match?(identifier)
|
79
79
|
identifier
|
80
80
|
elsif identifier && (parts = identifier.split('/')).size > 1
|
81
81
|
parts[-2..-1].join('/')
|
@@ -99,11 +99,11 @@ module NewRelic
|
|
99
99
|
end
|
100
100
|
|
101
101
|
def finish
|
102
|
-
@finishable
|
102
|
+
@finishable&.finish
|
103
103
|
end
|
104
104
|
|
105
105
|
def notice_error(error)
|
106
|
-
@finishable
|
106
|
+
@finishable&.notice_error(error)
|
107
107
|
end
|
108
108
|
end
|
109
109
|
end
|
@@ -57,7 +57,7 @@ module NewRelic
|
|
57
57
|
|
58
58
|
# Don't nest transactions if we're already in a web transaction.
|
59
59
|
# Probably inline processing the job if that happens, so just trace.
|
60
|
-
if txn
|
60
|
+
if txn&.recording_web_transaction?
|
61
61
|
run_in_trace(job, block, :Consume)
|
62
62
|
elsif txn && !txn.recording_web_transaction?
|
63
63
|
::NewRelic::Agent::Transaction.set_default_transaction_name(
|
@@ -27,9 +27,9 @@ DependencyDetection.defer do
|
|
27
27
|
actions = [:authorize, :purchase, :credit, :void, :capture, :recurring, :store, :unstore, :update]
|
28
28
|
actions.each do |operation|
|
29
29
|
if implemented_methods.include?(operation)
|
30
|
-
add_method_tracer operation, [->
|
31
|
-
->
|
32
|
-
->
|
30
|
+
add_method_tracer operation, [->(*) { "ActiveMerchant/gateway/#{gateway_name}/#{operation}" },
|
31
|
+
->(*) { "ActiveMerchant/gateway/#{gateway_name}" },
|
32
|
+
->(*) { "ActiveMerchant/operation/#{operation}" }]
|
33
33
|
end
|
34
34
|
end
|
35
35
|
end
|
@@ -13,7 +13,8 @@ module NewRelic
|
|
13
13
|
::ActiveRecord::Base.send("#{statement.config[:adapter]}_connection",
|
14
14
|
statement.config)
|
15
15
|
end
|
16
|
-
|
16
|
+
# the following line needs else branch coverage
|
17
|
+
if connection && connection.respond_to?(:execute) # rubocop:disable Style/SafeNavigation
|
17
18
|
return connection.execute("EXPLAIN #{statement.sql}")
|
18
19
|
end
|
19
20
|
end
|
@@ -43,7 +44,7 @@ module NewRelic
|
|
43
44
|
end
|
44
45
|
end
|
45
46
|
|
46
|
-
if RUBY_VERSION <
|
47
|
+
if RUBY_VERSION < '2.7.0'
|
47
48
|
def log_with_newrelic_instrumentation(*args, &block)
|
48
49
|
state = NewRelic::Agent::Tracer.state
|
49
50
|
|
@@ -49,7 +49,7 @@ module NewRelic
|
|
49
49
|
|
50
50
|
alias_method(:delete_all_without_newrelic, :delete_all)
|
51
51
|
|
52
|
-
if RUBY_VERSION <
|
52
|
+
if RUBY_VERSION < '2.7.0'
|
53
53
|
def delete_all(*args, &blk)
|
54
54
|
::NewRelic::Agent.with_database_metric_name(self.name, nil, ACTIVE_RECORD) do
|
55
55
|
delete_all_without_newrelic(*args, &blk)
|
@@ -92,9 +92,9 @@ module NewRelic
|
|
92
92
|
end
|
93
93
|
end
|
94
94
|
|
95
|
-
ACTIVE_RECORD =
|
96
|
-
OTHER =
|
97
|
-
MAKARA_SUFFIX =
|
95
|
+
ACTIVE_RECORD = 'ActiveRecord'.freeze
|
96
|
+
OTHER = 'other'.freeze
|
97
|
+
MAKARA_SUFFIX = '_makara'.freeze
|
98
98
|
|
99
99
|
# convert vendor (makara, etc.) wrapper names to their bare names
|
100
100
|
# ex: postgresql_makara -> postgresql
|
@@ -102,7 +102,7 @@ module NewRelic
|
|
102
102
|
# TODO: OLD RUBIES - RUBY_VERSION < 2.5
|
103
103
|
# With Ruby 2.5+ we could use #delete_suffix instead of #chomp for a
|
104
104
|
# potential speed boost
|
105
|
-
return adapter_name.chomp(MAKARA_SUFFIX) if adapter_name
|
105
|
+
return adapter_name.chomp(MAKARA_SUFFIX) if adapter_name&.end_with?(MAKARA_SUFFIX)
|
106
106
|
|
107
107
|
adapter_name
|
108
108
|
end
|
@@ -118,7 +118,7 @@ module NewRelic
|
|
118
118
|
SPACE = ' '.freeze
|
119
119
|
|
120
120
|
def split_name(name)
|
121
|
-
if name
|
121
|
+
if name&.respond_to?(:split)
|
122
122
|
name.split(SPACE)
|
123
123
|
else
|
124
124
|
NewRelic::EMPTY_ARRAY
|
@@ -163,47 +163,50 @@ module NewRelic
|
|
163
163
|
end
|
164
164
|
|
165
165
|
PRODUCT_NAMES = {
|
166
|
-
|
167
|
-
|
166
|
+
'mysql' => 'MySQL',
|
167
|
+
'mysql2' => 'MySQL',
|
168
168
|
|
169
|
-
|
169
|
+
'postgresql' => 'Postgres',
|
170
170
|
|
171
|
-
|
171
|
+
'sqlite3' => 'SQLite',
|
172
172
|
|
173
173
|
# https://rubygems.org/gems/activerecord-jdbcpostgresql-adapter
|
174
|
-
|
174
|
+
'jdbcmysql' => 'MySQL',
|
175
175
|
|
176
176
|
# https://rubygems.org/gems/activerecord-jdbcpostgresql-adapter
|
177
|
-
|
177
|
+
'jdbcpostgresql' => 'Postgres',
|
178
178
|
|
179
179
|
# https://rubygems.org/gems/activerecord-postgis-adapter
|
180
|
-
|
180
|
+
'postgis' => 'Postgres',
|
181
181
|
|
182
182
|
# https://rubygems.org/gems/activerecord-jdbcsqlite3-adapter
|
183
|
-
|
183
|
+
'jdbcsqlite3' => 'SQLite',
|
184
184
|
|
185
185
|
# https://rubygems.org/gems/activerecord-jdbcderby-adapter
|
186
|
-
|
187
|
-
|
186
|
+
'derby' => 'Derby',
|
187
|
+
'jdbcderby' => 'Derby',
|
188
188
|
|
189
189
|
# https://rubygems.org/gems/activerecord-jdbc-adapter
|
190
|
-
|
190
|
+
'jdbc' => 'JDBC',
|
191
191
|
|
192
192
|
# https://rubygems.org/gems/activerecord-jdbcmssql-adapter
|
193
|
-
|
194
|
-
|
193
|
+
'jdbcmssql' => 'MSSQL',
|
194
|
+
'mssql' => 'MSSQL',
|
195
195
|
|
196
196
|
# https://rubygems.org/gems/activerecord-sqlserver-adapter
|
197
|
-
|
197
|
+
'sqlserver' => 'MSSQL',
|
198
198
|
|
199
199
|
# https://rubygems.org/gems/activerecord-odbc-adapter
|
200
|
-
|
200
|
+
'odbc' => 'ODBC',
|
201
201
|
|
202
202
|
# https://rubygems.org/gems/activerecord-oracle_enhanced-adapter
|
203
|
-
|
203
|
+
'oracle_enhanced' => 'Oracle',
|
204
|
+
|
205
|
+
# https://rubygems.org/gems/activerecord-amazon-timestream-adapter
|
206
|
+
'amazon_timestream' => 'Timestream'
|
204
207
|
}.freeze
|
205
208
|
|
206
|
-
ACTIVE_RECORD_DEFAULT_PRODUCT_NAME =
|
209
|
+
ACTIVE_RECORD_DEFAULT_PRODUCT_NAME = 'ActiveRecord'.freeze
|
207
210
|
|
208
211
|
def map_product(adapter_name)
|
209
212
|
PRODUCT_NAMES.fetch(adapter_name, ACTIVE_RECORD_DEFAULT_PRODUCT_NAME)
|
@@ -213,24 +216,24 @@ module NewRelic
|
|
213
216
|
extend self
|
214
217
|
|
215
218
|
PRODUCT_SYMBOLS = {
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
+
'mysql' => :mysql,
|
220
|
+
'mysql2' => :mysql,
|
221
|
+
'jdbcmysql' => :mysql,
|
219
222
|
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
+
'postgresql' => :postgres,
|
224
|
+
'jdbcpostgresql' => :postgres,
|
225
|
+
'postgis' => :postgres
|
223
226
|
}.freeze
|
224
227
|
|
225
228
|
DATASTORE_DEFAULT_PORTS = {
|
226
|
-
:mysql =>
|
227
|
-
:postgres =>
|
229
|
+
:mysql => '3306',
|
230
|
+
:postgres => '5432'
|
228
231
|
}.freeze
|
229
232
|
|
230
|
-
DEFAULT =
|
231
|
-
UNKNOWN =
|
232
|
-
SLASH =
|
233
|
-
LOCALHOST =
|
233
|
+
DEFAULT = 'default'.freeze
|
234
|
+
UNKNOWN = 'unknown'.freeze
|
235
|
+
SLASH = '/'.freeze
|
236
|
+
LOCALHOST = 'localhost'.freeze
|
234
237
|
|
235
238
|
def adapter_from_config(config)
|
236
239
|
bare_name = NewRelic::Agent::Instrumentation::ActiveRecordHelper.bare_adapter_name(config[:adapter])
|
@@ -16,7 +16,7 @@ module NewRelic
|
|
16
16
|
|
17
17
|
module BaseExtensions4x
|
18
18
|
# https://github.com/rails/rails/blob/4-1-stable/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb#L371
|
19
|
-
def log(sql, name =
|
19
|
+
def log(sql, name = 'SQL', binds = [], statement_name = nil)
|
20
20
|
@instrumenter.instrument(
|
21
21
|
SQL_ACTIVE_RECORD,
|
22
22
|
:sql => sql,
|
@@ -38,7 +38,7 @@ module NewRelic
|
|
38
38
|
|
39
39
|
module BaseExtensions50
|
40
40
|
# https://github.com/rails/rails/blob/5-0-stable/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb#L582
|
41
|
-
def log(sql, name =
|
41
|
+
def log(sql, name = 'SQL', binds = [], type_casted_binds = [], statement_name = nil)
|
42
42
|
@instrumenter.instrument(
|
43
43
|
SQL_ACTIVE_RECORD,
|
44
44
|
sql: sql,
|
@@ -56,7 +56,7 @@ module NewRelic
|
|
56
56
|
|
57
57
|
module BaseExtensions51
|
58
58
|
# https://github.com/rails/rails/blob/5-1-stable/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb#L603
|
59
|
-
def log(sql, name =
|
59
|
+
def log(sql, name = 'SQL', binds = [], type_casted_binds = [], statement_name = nil) # :doc:
|
60
60
|
@instrumenter.instrument(
|
61
61
|
SQL_ACTIVE_RECORD,
|
62
62
|
sql: sql,
|
@@ -11,7 +11,7 @@ module NewRelic
|
|
11
11
|
ACTIVE_RECORD = 'ActiveRecord'.freeze
|
12
12
|
|
13
13
|
module BaseExtensions
|
14
|
-
if RUBY_VERSION <
|
14
|
+
if RUBY_VERSION < '2.7.0'
|
15
15
|
def save(*args, &blk)
|
16
16
|
::NewRelic::Agent.with_database_metric_name(self.class.name, nil, ACTIVE_RECORD) do
|
17
17
|
super
|
@@ -46,7 +46,7 @@ module NewRelic
|
|
46
46
|
# Starting in v5.1.6, this call no longer happens. We'll
|
47
47
|
# have to set the database metrics explicitly now.
|
48
48
|
#
|
49
|
-
if RUBY_VERSION <
|
49
|
+
if RUBY_VERSION < '2.7.0'
|
50
50
|
def touch(*args, **kwargs, &blk)
|
51
51
|
::NewRelic::Agent.with_database_metric_name(self.class.name, nil, ACTIVE_RECORD) do
|
52
52
|
super
|
@@ -33,7 +33,7 @@ module NewRelic
|
|
33
33
|
# defensive.
|
34
34
|
return if defined?(cached?)
|
35
35
|
|
36
|
-
if defined?(::ActiveRecord) && ::ActiveRecord::VERSION::STRING >=
|
36
|
+
if defined?(::ActiveRecord) && ::ActiveRecord::VERSION::STRING >= '5.1.0'
|
37
37
|
def cached?(payload)
|
38
38
|
payload.fetch(:cached, false)
|
39
39
|
end
|
@@ -74,7 +74,8 @@ module NewRelic
|
|
74
74
|
::ActiveRecord::Base.send("#{statement.config[:adapter]}_connection",
|
75
75
|
statement.config)
|
76
76
|
end
|
77
|
-
|
77
|
+
# the following line needs else branch coverage
|
78
|
+
if connection && connection.respond_to?(:exec_query) # rubocop:disable Style/SafeNavigation
|
78
79
|
return connection.exec_query("EXPLAIN #{statement.sql}",
|
79
80
|
"Explain #{statement.name}",
|
80
81
|
statement.binds)
|
@@ -46,7 +46,7 @@ module NewRelic
|
|
46
46
|
exchange_type: type
|
47
47
|
)
|
48
48
|
rescue => e
|
49
|
-
NewRelic::Agent.logger.error(
|
49
|
+
NewRelic::Agent.logger.error('Error starting message broker segment in Bunny::Exchange#publish', e)
|
50
50
|
yield
|
51
51
|
else
|
52
52
|
NewRelic::Agent::Tracer.capture_segment_error(segment) do
|
@@ -90,7 +90,7 @@ module NewRelic
|
|
90
90
|
start_time: t0
|
91
91
|
)
|
92
92
|
rescue => e
|
93
|
-
NewRelic::Agent.logger.error(
|
93
|
+
NewRelic::Agent.logger.error('Error starting message broker segment in Bunny::Queue#pop', e)
|
94
94
|
else
|
95
95
|
if bunny_error
|
96
96
|
segment.notice_error(bunny_error)
|
@@ -113,7 +113,7 @@ module NewRelic
|
|
113
113
|
destination_name: name
|
114
114
|
)
|
115
115
|
rescue => e
|
116
|
-
NewRelic::Agent.logger.error(
|
116
|
+
NewRelic::Agent.logger.error('Error starting message broker segment in Bunny::Queue#purge', e)
|
117
117
|
yield
|
118
118
|
else
|
119
119
|
NewRelic::Agent::Tracer.capture_segment_error(segment) do
|
@@ -26,7 +26,7 @@ DependencyDetection.defer do
|
|
26
26
|
prepend_instrument Bunny::Queue, NewRelic::Agent::Instrumentation::Bunny::Prepend::Queue
|
27
27
|
prepend_instrument Bunny::Consumer, NewRelic::Agent::Instrumentation::Bunny::Prepend::Consumer
|
28
28
|
else
|
29
|
-
chain_instrument NewRelic::Agent::Instrumentation::Bunny
|
29
|
+
chain_instrument NewRelic::Agent::Instrumentation::Bunny::Chain
|
30
30
|
end
|
31
31
|
end
|
32
32
|
end
|