newrelic_rpm 8.16.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 +3 -41
- data/.rubocop_todo.yml +13 -14
- data/.simplecov +1 -1
- data/CHANGELOG.md +184 -0
- data/CONTRIBUTING.md +1 -1
- data/Gemfile +1 -1
- data/Guardfile +7 -7
- data/README.md +3 -2
- data/Rakefile +8 -8
- data/Thorfile +1 -1
- data/bin/nrdebug +36 -36
- data/init.rb +1 -1
- data/lib/new_relic/agent/agent.rb +3 -16
- data/lib/new_relic/agent/agent_helpers/connect.rb +5 -10
- data/lib/new_relic/agent/agent_helpers/harvest.rb +4 -4
- data/lib/new_relic/agent/agent_helpers/shutdown.rb +5 -5
- data/lib/new_relic/agent/agent_helpers/special_startup.rb +3 -4
- data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +47 -39
- data/lib/new_relic/agent/agent_helpers/startup.rb +13 -13
- data/lib/new_relic/agent/agent_helpers/transmit.rb +6 -6
- data/lib/new_relic/agent/agent_logger.rb +9 -9
- data/lib/new_relic/agent/attribute_filter.rb +2 -4
- data/lib/new_relic/agent/attribute_processing.rb +2 -2
- data/lib/new_relic/agent/audit_logger.rb +5 -5
- data/lib/new_relic/agent/autostart.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command.rb +2 -2
- data/lib/new_relic/agent/commands/agent_command_router.rb +5 -4
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +8 -8
- data/lib/new_relic/agent/configuration/default_source.rb +155 -530
- data/lib/new_relic/agent/configuration/environment_source.rb +2 -2
- data/lib/new_relic/agent/configuration/high_security_source.rb +3 -5
- data/lib/new_relic/agent/configuration/manager.rb +2 -2
- data/lib/new_relic/agent/configuration/security_policy_source.rb +10 -26
- data/lib/new_relic/agent/configuration/server_source.rb +24 -24
- data/lib/new_relic/agent/configuration/yaml_source.rb +4 -4
- data/lib/new_relic/agent/connect/request_builder.rb +1 -1
- data/lib/new_relic/agent/connect/response_handler.rb +1 -1
- data/lib/new_relic/agent/custom_event_aggregator.rb +4 -4
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -1
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
- data/lib/new_relic/agent/database/obfuscator.rb +2 -2
- data/lib/new_relic/agent/database.rb +4 -18
- data/lib/new_relic/agent/datastores/metric_helper.rb +5 -5
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +11 -11
- data/lib/new_relic/agent/datastores/redis.rb +6 -6
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +8 -10
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +10 -10
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +7 -7
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +1 -1
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +6 -6
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +7 -7
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +4 -4
- data/lib/new_relic/agent/distributed_tracing.rb +5 -5
- data/lib/new_relic/agent/error_collector.rb +36 -8
- data/lib/new_relic/agent/error_filter.rb +5 -5
- data/lib/new_relic/agent/error_trace_aggregator.rb +5 -4
- data/lib/new_relic/agent/event_loop.rb +3 -3
- data/lib/new_relic/agent/external.rb +1 -1
- data/lib/new_relic/agent/harvester.rb +1 -3
- data/lib/new_relic/agent/heap.rb +2 -1
- data/lib/new_relic/agent/hostname.rb +1 -1
- data/lib/new_relic/agent/http_clients/abstract.rb +9 -21
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +7 -3
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +7 -5
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +4 -0
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +6 -2
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +5 -1
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +8 -5
- data/lib/new_relic/agent/http_clients/uri_util.rb +2 -2
- data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +5 -2
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +3 -2
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +3 -3
- data/lib/new_relic/agent/instrumentation/active_job.rb +2 -2
- data/lib/new_relic/agent/instrumentation/active_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 +6 -4
- data/lib/new_relic/agent/instrumentation/curb/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +5 -5
- data/lib/new_relic/agent/instrumentation/curb.rb +1 -1
- data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +2 -1
- data/lib/new_relic/agent/instrumentation/delayed_job/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/fiber/chain.rb +20 -0
- data/lib/new_relic/agent/instrumentation/fiber/instrumentation.rb +24 -0
- data/lib/new_relic/agent/instrumentation/fiber/prepend.rb +18 -0
- data/lib/new_relic/agent/instrumentation/fiber.rb +25 -0
- data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +4 -4
- data/lib/new_relic/agent/instrumentation/grape.rb +4 -4
- data/lib/new_relic/agent/instrumentation/grpc/client/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 +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 +5 -5
- data/lib/new_relic/agent/instrumentation/net_http.rb +2 -2
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +1 -1
- data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +3 -3
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +2 -2
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +3 -2
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +8 -15
- data/lib/new_relic/agent/instrumentation/rake.rb +3 -3
- data/lib/new_relic/agent/instrumentation/redis/constants.rb +1 -1
- data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +2 -1
- data/lib/new_relic/agent/instrumentation/redis.rb +1 -1
- data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/resque.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sequel.rb +8 -9
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +10 -10
- data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +6 -5
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +1 -1
- data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +3 -7
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +2 -1
- data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +5 -5
- data/lib/new_relic/agent/javascript_instrumentor.rb +29 -24
- data/lib/new_relic/agent/linking_metadata.rb +2 -2
- data/lib/new_relic/agent/log_event_aggregator.rb +15 -15
- data/lib/new_relic/agent/logging.rb +73 -33
- data/lib/new_relic/agent/messaging.rb +7 -5
- data/lib/new_relic/agent/method_tracer.rb +6 -6
- data/lib/new_relic/agent/method_tracer_helpers.rb +1 -1
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +4 -5
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +1 -1
- data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +2 -2
- data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +0 -1
- data/lib/new_relic/agent/new_relic_service.rb +15 -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/rules_engine/segment_terms_rule.rb +0 -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 +18 -8
- data/lib/new_relic/agent/transaction/abstract_segment.rb +9 -9
- 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 +4 -4
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction.rb +56 -52
- data/lib/new_relic/agent/transaction_error_primitive.rb +5 -5
- data/lib/new_relic/agent/transaction_event_aggregator.rb +4 -4
- data/lib/new_relic/agent/transaction_event_primitive.rb +3 -3
- data/lib/new_relic/agent/transaction_sampler.rb +3 -3
- data/lib/new_relic/agent/transaction_time_aggregator.rb +7 -3
- data/lib/new_relic/agent/utilization/aws.rb +1 -1
- data/lib/new_relic/agent/utilization/azure.rb +3 -3
- data/lib/new_relic/agent/utilization/gcp.rb +3 -3
- data/lib/new_relic/agent/utilization/pcf.rb +1 -1
- data/lib/new_relic/agent/utilization/vendor.rb +1 -1
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
- data/lib/new_relic/agent/vm/mri_vm.rb +9 -8
- data/lib/new_relic/agent/worker_loop.rb +1 -1
- data/lib/new_relic/agent.rb +79 -35
- data/lib/new_relic/cli/command.rb +3 -3
- data/lib/new_relic/cli/commands/deployments.rb +26 -25
- data/lib/new_relic/cli/commands/install.rb +23 -23
- data/lib/new_relic/collection_helper.rb +2 -2
- data/lib/new_relic/constants.rb +7 -8
- data/lib/new_relic/control/class_methods.rb +3 -3
- data/lib/new_relic/control/frameworks/rails.rb +30 -18
- data/lib/new_relic/control/instance_methods.rb +6 -6
- data/lib/new_relic/control/instrumentation.rb +1 -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/local_environment.rb +0 -10
- data/lib/new_relic/noticed_error.rb +20 -18
- data/lib/new_relic/rack/browser_monitoring.rb +20 -16
- data/lib/new_relic/recipes/capistrano3.rb +1 -1
- data/lib/new_relic/recipes/capistrano_legacy.rb +6 -6
- data/lib/new_relic/recipes/helpers/send_deployment.rb +5 -5
- data/lib/new_relic/supportability_helper.rb +2 -1
- data/lib/new_relic/version.rb +2 -2
- data/lib/newrelic_rpm.rb +4 -4
- data/lib/sequel/extensions/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +5 -5
- data/lib/sequel/plugins/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +4 -4
- data/lib/tasks/config.rake +12 -12
- data/lib/tasks/coverage_report.rake +3 -3
- data/lib/tasks/helpers/format.rb +10 -10
- data/lib/tasks/helpers/removers.rb +5 -5
- data/lib/tasks/install.rake +4 -4
- data/lib/tasks/instrumentation_generator/instrumentation.thor +7 -10
- data/lib/tasks/instrumentation_generator/templates/Envfile.tt +1 -1
- data/lib/tasks/multiverse.rb +12 -6
- data/lib/tasks/tests.rake +6 -6
- data/newrelic.yml +5 -8
- data/newrelic_rpm.gemspec +29 -26
- data/test/agent_helper.rb +25 -24
- metadata +13 -14
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +0 -83
- data/lib/new_relic/agent/instrumentation/authlogic.rb +0 -33
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +0 -215
- data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +0 -36
- data/lib/new_relic/agent/instrumentation/sunspot.rb +0 -41
@@ -72,7 +72,7 @@ module NewRelic
|
|
72
72
|
all_nodes = @traces.values.map { |n| n.flattened }.flatten
|
73
73
|
|
74
74
|
NewRelic::Agent.instance.stats_engine
|
75
|
-
.tl_record_supportability_metric_count(
|
75
|
+
.tl_record_supportability_metric_count('ThreadProfiler/NodeCount', all_nodes.size)
|
76
76
|
|
77
77
|
all_nodes.sort! do |a, b|
|
78
78
|
# we primarily prefer higher runnable_count
|
@@ -103,10 +103,10 @@ module NewRelic
|
|
103
103
|
convert_N_trace_nodes_to_arrays(THREAD_PROFILER_NODES)
|
104
104
|
|
105
105
|
{
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
106
|
+
'OTHER' => @traces[:other].as_array,
|
107
|
+
'REQUEST' => @traces[:request].as_array,
|
108
|
+
'AGENT' => @traces[:agent].as_array,
|
109
|
+
'BACKGROUND' => @traces[:background].as_array
|
110
110
|
}
|
111
111
|
end
|
112
112
|
|
@@ -107,7 +107,7 @@ module NewRelic
|
|
107
107
|
current_transaction.notice_error(exception)
|
108
108
|
raise
|
109
109
|
ensure
|
110
|
-
finishable
|
110
|
+
finishable&.finish
|
111
111
|
end
|
112
112
|
end
|
113
113
|
|
@@ -246,8 +246,8 @@ module NewRelic
|
|
246
246
|
log_error('start_segment', exception)
|
247
247
|
end
|
248
248
|
|
249
|
-
UNKNOWN =
|
250
|
-
OTHER =
|
249
|
+
UNKNOWN = 'Unknown'.freeze
|
250
|
+
OTHER = 'other'.freeze
|
251
251
|
|
252
252
|
# Creates and starts a datastore segment used to time
|
253
253
|
# datastore operations.
|
@@ -355,7 +355,8 @@ module NewRelic
|
|
355
355
|
|
356
356
|
yield
|
357
357
|
rescue => exception
|
358
|
-
|
358
|
+
# needs else branch coverage
|
359
|
+
if segment && segment.is_a?(Transaction::AbstractSegment) # rubocop:disable Style/SafeNavigation
|
359
360
|
segment.notice_error(exception)
|
360
361
|
end
|
361
362
|
raise
|
@@ -410,12 +411,22 @@ module NewRelic
|
|
410
411
|
|
411
412
|
alias_method :tl_clear, :clear_state
|
412
413
|
|
414
|
+
def current_segment_key
|
415
|
+
::Fiber.current.object_id
|
416
|
+
end
|
417
|
+
|
418
|
+
def thread_tracing_enabled?
|
419
|
+
NewRelic::Agent.config[:'instrumentation.thread.tracing']
|
420
|
+
end
|
421
|
+
|
413
422
|
def thread_block_with_current_transaction(*args, segment_name:, parent: nil, &block)
|
414
|
-
|
423
|
+
parent ||= current_segment
|
424
|
+
current_txn = ::Thread.current[:newrelic_tracer_state]&.current_transaction if ::Thread.current[:newrelic_tracer_state]&.is_execution_traced?
|
415
425
|
proc do
|
416
426
|
begin
|
417
427
|
if current_txn
|
418
428
|
NewRelic::Agent::Tracer.state.current_transaction = current_txn
|
429
|
+
current_txn.async = true
|
419
430
|
segment_name += "/Thread#{::Thread.current.object_id}/Fiber#{::Fiber.current.object_id}" if NewRelic::Agent.config[:'thread_ids_enabled']
|
420
431
|
segment = NewRelic::Agent::Tracer.start_segment(name: segment_name, parent: parent)
|
421
432
|
end
|
@@ -478,7 +489,8 @@ module NewRelic
|
|
478
489
|
end
|
479
490
|
|
480
491
|
def pop_traced
|
481
|
-
|
492
|
+
# needs else branch coverage
|
493
|
+
@untraced.pop if @untraced # rubocop:disable Style/SafeNavigation
|
482
494
|
end
|
483
495
|
|
484
496
|
def is_execution_traced?
|
@@ -498,7 +510,5 @@ module NewRelic
|
|
498
510
|
attr_accessor :sql_sampler_transaction_data
|
499
511
|
end
|
500
512
|
end
|
501
|
-
|
502
|
-
TransactionState = Tracer
|
503
513
|
end
|
504
514
|
end
|
@@ -20,14 +20,14 @@ module NewRelic
|
|
20
20
|
# after its parent. We will use the optimized exclusive duration
|
21
21
|
# calculation in all other cases.
|
22
22
|
#
|
23
|
-
attr_reader :start_time, :end_time, :duration, :exclusive_duration, :guid, :
|
23
|
+
attr_reader :start_time, :end_time, :duration, :exclusive_duration, :guid, :starting_segment_key
|
24
24
|
attr_accessor :name, :parent, :children_time, :transaction, :transaction_name
|
25
25
|
attr_writer :record_metrics, :record_scoped_metric, :record_on_finish
|
26
26
|
attr_reader :noticed_error
|
27
27
|
|
28
28
|
def initialize(name = nil, start_time = nil)
|
29
29
|
@name = name
|
30
|
-
@
|
30
|
+
@starting_segment_key = NewRelic::Agent::Tracer.current_segment_key
|
31
31
|
@transaction_name = nil
|
32
32
|
@transaction = nil
|
33
33
|
@guid = NewRelic::Agent::GuidGenerator.generate_guid
|
@@ -56,7 +56,7 @@ module NewRelic
|
|
56
56
|
@start_time ||= Process.clock_gettime(Process::CLOCK_REALTIME)
|
57
57
|
return unless transaction
|
58
58
|
|
59
|
-
parent
|
59
|
+
parent&.child_start(self)
|
60
60
|
end
|
61
61
|
|
62
62
|
def finish
|
@@ -228,7 +228,7 @@ module NewRelic
|
|
228
228
|
|
229
229
|
if finished?
|
230
230
|
transaction.async = true
|
231
|
-
parent
|
231
|
+
parent&.descendant_complete(self, segment)
|
232
232
|
end
|
233
233
|
end
|
234
234
|
|
@@ -262,19 +262,19 @@ module NewRelic
|
|
262
262
|
|
263
263
|
def force_finish
|
264
264
|
finish
|
265
|
-
NewRelic::Agent.logger.warn
|
266
|
-
"the end of transaction. Timing information for this segment's" \
|
267
|
-
"parent #{parent
|
265
|
+
NewRelic::Agent.logger.send(transaction.async? ? :debug : :warn, "Segment: #{name} was unfinished at " \
|
266
|
+
"the end of transaction. Timing information for this segment's " \
|
267
|
+
"parent #{parent&.name} in #{transaction.best_name} may be inaccurate.")
|
268
268
|
end
|
269
269
|
|
270
270
|
def run_complete_callbacks
|
271
271
|
segment_complete
|
272
|
-
parent
|
272
|
+
parent&.child_complete(self)
|
273
273
|
transaction.segment_complete(self)
|
274
274
|
end
|
275
275
|
|
276
276
|
def record_metrics
|
277
|
-
raise NotImplementedError,
|
277
|
+
raise NotImplementedError, 'Subclasses must implement record_metrics'
|
278
278
|
end
|
279
279
|
|
280
280
|
# callback for subclasses to override
|
@@ -24,7 +24,7 @@ module NewRelic
|
|
24
24
|
@nosql_statement = nil
|
25
25
|
@record_sql = true
|
26
26
|
set_instance_info(host, port_path_or_id)
|
27
|
-
@database_name = database_name
|
27
|
+
@database_name = database_name&.to_s
|
28
28
|
super(Datastores::MetricHelper.scoped_metric_for(product, operation, collection),
|
29
29
|
nil,
|
30
30
|
start_time)
|
@@ -35,7 +35,7 @@ module NewRelic
|
|
35
35
|
end
|
36
36
|
|
37
37
|
def caller_transport_type
|
38
|
-
@caller_transport_type ||=
|
38
|
+
@caller_transport_type ||= 'Unknown'
|
39
39
|
end
|
40
40
|
|
41
41
|
def accept_transport_type_from_api(value)
|
@@ -68,8 +68,9 @@ module NewRelic
|
|
68
68
|
)
|
69
69
|
end
|
70
70
|
|
71
|
-
def log_request_headers(headers, direction =
|
72
|
-
NewRelic::Agent.
|
71
|
+
def log_request_headers(headers, direction = 'OUTGOING')
|
72
|
+
printed_headers = headers.is_a?(NewRelic::Agent::HTTPClients::AbstractRequest) ? headers.headers : headers
|
73
|
+
NewRelic::Agent.logger.debug("#{direction} REQUEST HEADERS: #{printed_headers}")
|
73
74
|
end
|
74
75
|
|
75
76
|
def insert_headers(headers)
|
@@ -82,12 +83,12 @@ module NewRelic
|
|
82
83
|
end
|
83
84
|
|
84
85
|
def consume_message_headers(headers, tracer_state, transport_type)
|
85
|
-
log_request_headers(headers,
|
86
|
+
log_request_headers(headers, 'INCOMING')
|
86
87
|
consume_message_distributed_tracing_headers(headers, transport_type)
|
87
88
|
consume_message_cross_app_tracing_headers(headers, tracer_state)
|
88
89
|
consume_message_synthetics_headers(headers)
|
89
90
|
rescue => e
|
90
|
-
NewRelic::Agent.logger.error(
|
91
|
+
NewRelic::Agent.logger.error('Error in consume_message_headers', e)
|
91
92
|
end
|
92
93
|
|
93
94
|
def assign_intrinsics
|
@@ -135,7 +136,7 @@ module NewRelic
|
|
135
136
|
transaction.synthetics_payload = incoming_payload
|
136
137
|
end
|
137
138
|
rescue => e
|
138
|
-
NewRelic::Agent.logger.error(
|
139
|
+
NewRelic::Agent.logger.error('Error in consume_message_synthetics_header', e)
|
139
140
|
end
|
140
141
|
|
141
142
|
def consume_message_distributed_tracing_headers(headers, transport_type)
|
@@ -13,7 +13,7 @@ module NewRelic
|
|
13
13
|
attr_accessor :distributed_trace_payload
|
14
14
|
attr_writer :distributed_trace_payload_created
|
15
15
|
|
16
|
-
SUPPORTABILITY_DISTRIBUTED_TRACE =
|
16
|
+
SUPPORTABILITY_DISTRIBUTED_TRACE = 'Supportability/DistributedTrace'
|
17
17
|
CREATE_PREFIX = "#{SUPPORTABILITY_DISTRIBUTED_TRACE}/CreatePayload"
|
18
18
|
ACCEPT_PREFIX = "#{SUPPORTABILITY_DISTRIBUTED_TRACE}/AcceptPayload"
|
19
19
|
IGNORE_PREFIX = "#{ACCEPT_PREFIX}/Ignored"
|
@@ -30,10 +30,10 @@ module NewRelic
|
|
30
30
|
IGNORE_ACCEPT_MAJOR_VERSION_METRIC = "#{IGNORE_PREFIX}/MajorVersion"
|
31
31
|
IGNORE_ACCEPT_UNTRUSTED_ACCOUNT_METRIC = "#{IGNORE_PREFIX}/UntrustedAccount"
|
32
32
|
|
33
|
-
LBRACE =
|
33
|
+
LBRACE = '{'
|
34
34
|
NULL_PAYLOAD = 'null'
|
35
35
|
|
36
|
-
NEWRELIC_TRACE_KEY =
|
36
|
+
NEWRELIC_TRACE_KEY = 'HTTP_NEWRELIC'
|
37
37
|
|
38
38
|
def accept_distributed_tracing_incoming_request(request)
|
39
39
|
return unless Agent.config[:'distributed_tracing.enabled']
|
@@ -55,7 +55,7 @@ module NewRelic
|
|
55
55
|
payload
|
56
56
|
rescue => e
|
57
57
|
NewRelic::Agent.increment_metric(CREATE_EXCEPTION_METRIC)
|
58
|
-
NewRelic::Agent.logger.warn(
|
58
|
+
NewRelic::Agent.logger.warn('Failed to create distributed trace payload', e)
|
59
59
|
nil
|
60
60
|
end
|
61
61
|
|
@@ -75,7 +75,7 @@ module NewRelic
|
|
75
75
|
true
|
76
76
|
rescue => e
|
77
77
|
NewRelic::Agent.increment_metric(ACCEPT_EXCEPTION_METRIC)
|
78
|
-
NewRelic::Agent.logger.warn(
|
78
|
+
NewRelic::Agent.logger.warn('Failed to accept distributed trace payload', e)
|
79
79
|
false
|
80
80
|
end
|
81
81
|
|
@@ -114,7 +114,7 @@ module NewRelic
|
|
114
114
|
decoded
|
115
115
|
rescue => e
|
116
116
|
NewRelic::Agent.increment_metric(ACCEPT_PARSE_EXCEPTION_METRIC)
|
117
|
-
NewRelic::Agent.logger.warn(
|
117
|
+
NewRelic::Agent.logger.warn('Error parsing distributed trace payload', e)
|
118
118
|
nil
|
119
119
|
end
|
120
120
|
|
@@ -16,10 +16,10 @@ module NewRelic
|
|
16
16
|
NR_SYNTHETICS_HEADER = 'X-NewRelic-Synthetics'
|
17
17
|
APP_DATA_KEY = 'NewRelicAppData'
|
18
18
|
|
19
|
-
EXTERNAL_ALL =
|
20
|
-
EXTERNAL_ALL_WEB =
|
21
|
-
EXTERNAL_ALL_OTHER =
|
22
|
-
MISSING_STATUS_CODE =
|
19
|
+
EXTERNAL_ALL = 'External/all'
|
20
|
+
EXTERNAL_ALL_WEB = 'External/allWeb'
|
21
|
+
EXTERNAL_ALL_OTHER = 'External/allOther'
|
22
|
+
MISSING_STATUS_CODE = 'MissingHTTPStatusCode'
|
23
23
|
|
24
24
|
attr_reader :library, :uri, :procedure, :http_status_code
|
25
25
|
attr_writer :record_agent_attributes
|
@@ -62,14 +62,14 @@ module NewRelic
|
|
62
62
|
# @api public
|
63
63
|
def add_request_headers(request)
|
64
64
|
process_host_header(request)
|
65
|
-
synthetics_header = transaction
|
65
|
+
synthetics_header = transaction&.raw_synthetics_header
|
66
66
|
insert_synthetics_header(request, synthetics_header) if synthetics_header
|
67
67
|
|
68
68
|
return unless record_metrics?
|
69
69
|
|
70
70
|
transaction.distributed_tracer.insert_headers(request)
|
71
71
|
rescue => e
|
72
|
-
NewRelic::Agent.logger.error(
|
72
|
+
NewRelic::Agent.logger.error('Error in add_request_headers', e)
|
73
73
|
end
|
74
74
|
|
75
75
|
# This method extracts app data from an external response if present. If
|
@@ -92,10 +92,10 @@ module NewRelic
|
|
92
92
|
@app_data = data
|
93
93
|
update_segment_name
|
94
94
|
else
|
95
|
-
NewRelic::Agent.logger.debug(
|
95
|
+
NewRelic::Agent.logger.debug('External segment response has invalid cross_app_id')
|
96
96
|
end
|
97
97
|
rescue => e
|
98
|
-
NewRelic::Agent.logger.error(
|
98
|
+
NewRelic::Agent.logger.error('Error in read_response_headers', e)
|
99
99
|
end
|
100
100
|
|
101
101
|
def cross_app_request? # :nodoc:
|
@@ -154,7 +154,7 @@ module NewRelic
|
|
154
154
|
|
155
155
|
end
|
156
156
|
rescue => e
|
157
|
-
NewRelic::Agent.logger.error(
|
157
|
+
NewRelic::Agent.logger.error('error during get_request_metadata', e)
|
158
158
|
end
|
159
159
|
|
160
160
|
# Process obfuscated +String+ sent from a called application that is also running a New Relic agent and
|
@@ -176,13 +176,13 @@ module NewRelic
|
|
176
176
|
@app_data = app_data
|
177
177
|
update_segment_name
|
178
178
|
else
|
179
|
-
NewRelic::Agent.logger.error(
|
179
|
+
NewRelic::Agent.logger.error('error processing response metadata: invalid/non-trusted ID')
|
180
180
|
end
|
181
181
|
end
|
182
182
|
|
183
183
|
nil
|
184
184
|
rescue => e
|
185
|
-
NewRelic::Agent.logger.error(
|
185
|
+
NewRelic::Agent.logger.error('error during process_response_metadata', e)
|
186
186
|
end
|
187
187
|
|
188
188
|
def record_metrics
|
@@ -91,7 +91,7 @@ module NewRelic
|
|
91
91
|
transaction.distributed_tracer.log_request_headers(headers)
|
92
92
|
end
|
93
93
|
rescue => e
|
94
|
-
NewRelic::Agent.logger.error(
|
94
|
+
NewRelic::Agent.logger.error('Error during message header processing', e)
|
95
95
|
end
|
96
96
|
end
|
97
97
|
end
|
@@ -11,7 +11,7 @@ module NewRelic
|
|
11
11
|
attr_reader :request_path, :referer, :accept, :content_length, :content_type,
|
12
12
|
:host, :port, :user_agent, :request_method
|
13
13
|
|
14
|
-
HTTP_ACCEPT_HEADER_KEY =
|
14
|
+
HTTP_ACCEPT_HEADER_KEY = 'HTTP_ACCEPT'.freeze
|
15
15
|
|
16
16
|
def initialize(request)
|
17
17
|
@request_path = path_from_request(request)
|
@@ -85,7 +85,7 @@ module NewRelic
|
|
85
85
|
# rails construct the PATH_INFO enviroment variable improperly and we're generally
|
86
86
|
# being defensive.
|
87
87
|
|
88
|
-
ROOT_PATH =
|
88
|
+
ROOT_PATH = '/'.freeze
|
89
89
|
|
90
90
|
def path_from_request(request)
|
91
91
|
path = attribute_from_request(request, :path) || ''
|
@@ -32,7 +32,7 @@ module NewRelic
|
|
32
32
|
if segment = NewRelic::Agent::Tracer.current_segment
|
33
33
|
segment.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
34
34
|
else
|
35
|
-
NewRelic::Agent.logger.debug(
|
35
|
+
NewRelic::Agent.logger.debug('Attempted to merge untrusted attributes without segment')
|
36
36
|
end
|
37
37
|
end
|
38
38
|
|
@@ -20,7 +20,7 @@ module NewRelic
|
|
20
20
|
end
|
21
21
|
end
|
22
22
|
|
23
|
-
SUPPORTABILITY_PREFIX =
|
23
|
+
SUPPORTABILITY_PREFIX = 'Supportability/TraceContext'
|
24
24
|
CREATE_PREFIX = "#{SUPPORTABILITY_PREFIX}/Create"
|
25
25
|
ACCEPT_PREFIX = "#{SUPPORTABILITY_PREFIX}/Accept"
|
26
26
|
TRACESTATE_PREFIX = "#{SUPPORTABILITY_PREFIX}/TraceState"
|
@@ -73,7 +73,7 @@ module NewRelic
|
|
73
73
|
true
|
74
74
|
rescue Exception => e
|
75
75
|
NewRelic::Agent.increment_metric(CREATE_EXCEPTION_METRIC)
|
76
|
-
NewRelic::Agent.logger.warn(
|
76
|
+
NewRelic::Agent.logger.warn('Failed to create trace context payload', e)
|
77
77
|
false
|
78
78
|
end
|
79
79
|
|
@@ -95,7 +95,7 @@ module NewRelic
|
|
95
95
|
|
96
96
|
def create_trace_state_payload
|
97
97
|
unless Agent.config[:'distributed_tracing.enabled']
|
98
|
-
NewRelic::Agent.logger.warn(
|
98
|
+
NewRelic::Agent.logger.warn('Not configured to create WC3 trace context payload')
|
99
99
|
return
|
100
100
|
end
|
101
101
|
|
@@ -144,7 +144,7 @@ module NewRelic
|
|
144
144
|
true
|
145
145
|
rescue => e
|
146
146
|
NewRelic::Agent.increment_metric(ACCEPT_EXCEPTION_METRIC)
|
147
|
-
NewRelic::Agent.logger.warn(
|
147
|
+
NewRelic::Agent.logger.warn('Failed to accept trace context payload', e)
|
148
148
|
false
|
149
149
|
end
|
150
150
|
|
@@ -58,7 +58,7 @@ module NewRelic
|
|
58
58
|
end
|
59
59
|
|
60
60
|
def to_s_compact
|
61
|
-
str =
|
61
|
+
str = +''
|
62
62
|
str << metric_name
|
63
63
|
if children.any?
|
64
64
|
str << "{#{children.map { |cs| cs.to_s_compact }.join(',')}}"
|
@@ -67,9 +67,9 @@ module NewRelic
|
|
67
67
|
end
|
68
68
|
|
69
69
|
def to_debug_str(depth)
|
70
|
-
tab =
|
70
|
+
tab = (+' ') * depth
|
71
71
|
s = tab.clone
|
72
|
-
s << ">> #{'%3i ms' % (@entry_timestamp * 1000)} [#{self.class.name.split(
|
72
|
+
s << ">> #{'%3i ms' % (@entry_timestamp * 1000)} [#{self.class.name.split('::').last}] #{metric_name} \n"
|
73
73
|
unless params.empty?
|
74
74
|
params.each do |k, v|
|
75
75
|
s << "#{tab} -#{'%-16s' % k}: #{v.to_s[0..80]}\n"
|
@@ -136,10 +136,8 @@ module NewRelic
|
|
136
136
|
def each_node(&block)
|
137
137
|
yield(self)
|
138
138
|
|
139
|
-
|
140
|
-
|
141
|
-
node.each_node(&block)
|
142
|
-
end
|
139
|
+
@children&.each do |node|
|
140
|
+
node.each_node(&block)
|
143
141
|
end
|
144
142
|
end
|
145
143
|
|
@@ -149,11 +147,14 @@ module NewRelic
|
|
149
147
|
summary = yield(self)
|
150
148
|
summary.current_nest_count += 1 if summary
|
151
149
|
|
150
|
+
# no then branch coverage
|
151
|
+
# rubocop:disable Style/SafeNavigation
|
152
152
|
if @children
|
153
153
|
@children.each do |node|
|
154
154
|
node.each_node_with_nest_tracking(&block)
|
155
155
|
end
|
156
156
|
end
|
157
|
+
# rubocop:enable Style/SafeNavigation
|
157
158
|
|
158
159
|
summary.current_nest_count -= 1 if summary
|
159
160
|
end
|
@@ -35,8 +35,8 @@ module NewRelic
|
|
35
35
|
|
36
36
|
def segment_complete(segment)
|
37
37
|
# if parent was in another thread, remove the current_segment entry for this thread
|
38
|
-
if segment.parent && segment.parent.
|
39
|
-
remove_current_segment_by_thread_id(::
|
38
|
+
if segment.parent && segment.parent.starting_segment_key != NewRelic::Agent::Tracer.current_segment_key
|
39
|
+
remove_current_segment_by_thread_id(NewRelic::Agent::Tracer.current_segment_key)
|
40
40
|
else
|
41
41
|
set_current_segment(segment.parent)
|
42
42
|
end
|
@@ -52,8 +52,8 @@ module NewRelic
|
|
52
52
|
segments.each { |s| s.finalize }
|
53
53
|
end
|
54
54
|
|
55
|
-
WEB_TRANSACTION_TOTAL_TIME =
|
56
|
-
OTHER_TRANSACTION_TOTAL_TIME =
|
55
|
+
WEB_TRANSACTION_TOTAL_TIME = 'WebTransactionTotalTime'.freeze
|
56
|
+
OTHER_TRANSACTION_TOTAL_TIME = 'OtherTransactionTotalTime'.freeze
|
57
57
|
|
58
58
|
def record_total_time_metrics
|
59
59
|
total_time_metric = if recording_web_transaction?
|
@@ -63,7 +63,7 @@ module NewRelic
|
|
63
63
|
#
|
64
64
|
# This value will be forcibly capped by the max_capacity
|
65
65
|
def capacity
|
66
|
-
raise NotImplementedError.new(
|
66
|
+
raise NotImplementedError.new('TransactionSampleBuffer subclasses must provide a capacity override')
|
67
67
|
end
|
68
68
|
|
69
69
|
# Apply hard upper limit to the capacity to prevent users from
|