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
@@ -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,19 +114,18 @@ 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
|
|
121
121
|
def check_required_fields_present(payload)
|
122
|
-
if
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
!payload.timestamp.nil?
|
122
|
+
if !payload.version.nil? &&
|
123
|
+
!payload.parent_account_id.nil? &&
|
124
|
+
!payload.parent_app_id.nil? &&
|
125
|
+
!payload.parent_type.nil? &&
|
126
|
+
(!payload.transaction_id.nil? || !payload.id.nil?) &&
|
127
|
+
!payload.trace_id.nil? &&
|
128
|
+
!payload.timestamp.nil?
|
130
129
|
|
131
130
|
true
|
132
131
|
else
|
@@ -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
|
@@ -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
|
@@ -23,10 +23,10 @@ module NewRelic
|
|
23
23
|
include Tracing
|
24
24
|
|
25
25
|
# for nested transactions
|
26
|
-
NESTED_TRANSACTION_PREFIX =
|
27
|
-
CONTROLLER_PREFIX =
|
28
|
-
MIDDLEWARE_PREFIX =
|
29
|
-
OTHER_TRANSACTION_PREFIX =
|
26
|
+
NESTED_TRANSACTION_PREFIX = 'Nested/'
|
27
|
+
CONTROLLER_PREFIX = 'Controller/'
|
28
|
+
MIDDLEWARE_PREFIX = 'Middleware/Rack/'
|
29
|
+
OTHER_TRANSACTION_PREFIX = 'OtherTransaction/'
|
30
30
|
TASK_PREFIX = "#{OTHER_TRANSACTION_PREFIX}Background/"
|
31
31
|
RAKE_PREFIX = "#{OTHER_TRANSACTION_PREFIX}Rake/"
|
32
32
|
MESSAGE_PREFIX = "#{OTHER_TRANSACTION_PREFIX}Message/"
|
@@ -37,21 +37,21 @@ module NewRelic
|
|
37
37
|
|
38
38
|
WEB_TRANSACTION_CATEGORIES = [:web, :controller, :uri, :rack, :sinatra, :grape, :middleware, :action_cable].freeze
|
39
39
|
|
40
|
-
MIDDLEWARE_SUMMARY_METRICS = [
|
41
|
-
WEB_SUMMARY_METRIC =
|
40
|
+
MIDDLEWARE_SUMMARY_METRICS = ['Middleware/all'].freeze
|
41
|
+
WEB_SUMMARY_METRIC = 'HttpDispatcher'
|
42
42
|
OTHER_SUMMARY_METRIC = "#{OTHER_TRANSACTION_PREFIX}all"
|
43
|
-
QUEUE_TIME_METRIC =
|
43
|
+
QUEUE_TIME_METRIC = 'WebFrontend/QueueTime'
|
44
44
|
|
45
|
-
APDEX_S =
|
46
|
-
APDEX_T =
|
47
|
-
APDEX_F =
|
48
|
-
APDEX_ALL_METRIC =
|
49
|
-
APDEX_METRIC =
|
50
|
-
APDEX_OTHER_METRIC =
|
51
|
-
APDEX_TXN_METRIC_PREFIX =
|
52
|
-
APDEX_OTHER_TXN_METRIC_PREFIX =
|
45
|
+
APDEX_S = 'S'
|
46
|
+
APDEX_T = 'T'
|
47
|
+
APDEX_F = 'F'
|
48
|
+
APDEX_ALL_METRIC = 'ApdexAll'
|
49
|
+
APDEX_METRIC = 'Apdex'
|
50
|
+
APDEX_OTHER_METRIC = 'ApdexOther'
|
51
|
+
APDEX_TXN_METRIC_PREFIX = 'Apdex/'
|
52
|
+
APDEX_OTHER_TXN_METRIC_PREFIX = 'ApdexOther/Transaction/'
|
53
53
|
|
54
|
-
JRUBY_CPU_TIME_ERROR =
|
54
|
+
JRUBY_CPU_TIME_ERROR = 'Error calculating JRuby CPU Time'
|
55
55
|
|
56
56
|
# A Time instance for the start time, never nil
|
57
57
|
attr_accessor :start_time
|
@@ -155,7 +155,7 @@ module NewRelic
|
|
155
155
|
NewRelic::Agent.record_api_supportability_metric(:recording_web_transaction?)
|
156
156
|
|
157
157
|
txn = tl_current
|
158
|
-
txn
|
158
|
+
txn&.recording_web_transaction?
|
159
159
|
end
|
160
160
|
|
161
161
|
def self.apdex_bucket(duration, failed, apdex_t)
|
@@ -181,20 +181,21 @@ module NewRelic
|
|
181
181
|
|
182
182
|
def add_agent_attribute(key, value, default_destinations)
|
183
183
|
@attributes.add_agent_attribute(key, value, default_destinations)
|
184
|
-
|
184
|
+
# the following line needs else branch coverage
|
185
|
+
current_segment.add_agent_attribute(key, value) if current_segment # rubocop:disable Style/SafeNavigation
|
185
186
|
end
|
186
187
|
|
187
188
|
def self.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
188
189
|
if txn = tl_current
|
189
190
|
txn.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
190
191
|
else
|
191
|
-
NewRelic::Agent.logger.debug(
|
192
|
+
NewRelic::Agent.logger.debug('Attempted to merge untrusted attributes without transaction')
|
192
193
|
end
|
193
194
|
end
|
194
195
|
|
195
196
|
def merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
196
197
|
@attributes.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
197
|
-
current_segment
|
198
|
+
current_segment&.merge_untrusted_agent_attributes(attributes, prefix, default_destinations)
|
198
199
|
end
|
199
200
|
|
200
201
|
@@java_classes_loaded = false
|
@@ -209,7 +210,7 @@ module NewRelic
|
|
209
210
|
end
|
210
211
|
end
|
211
212
|
|
212
|
-
def initialize(category, options)
|
213
|
+
def initialize(category, options) # rubocop:disable Metrics/AbcSize
|
213
214
|
@nesting_max_depth = 0
|
214
215
|
@current_segment_by_thread = {}
|
215
216
|
@current_segment_lock = Mutex.new
|
@@ -309,15 +310,15 @@ module NewRelic
|
|
309
310
|
end
|
310
311
|
|
311
312
|
def referer
|
312
|
-
@request_attributes
|
313
|
+
@request_attributes&.referer
|
313
314
|
end
|
314
315
|
|
315
316
|
def request_path
|
316
|
-
@request_attributes
|
317
|
+
@request_attributes&.request_path
|
317
318
|
end
|
318
319
|
|
319
320
|
def request_port
|
320
|
-
@request_attributes
|
321
|
+
@request_attributes&.port
|
321
322
|
end
|
322
323
|
|
323
324
|
# This transaction-local hash may be used as temporary storage by
|
@@ -533,7 +534,7 @@ module NewRelic
|
|
533
534
|
|
534
535
|
commit!(initial_segment.name) unless @ignore_this_transaction
|
535
536
|
rescue => e
|
536
|
-
NewRelic::Agent.logger.error(
|
537
|
+
NewRelic::Agent.logger.error('Exception during Transaction#finish', e)
|
537
538
|
nil
|
538
539
|
ensure
|
539
540
|
state.reset
|
@@ -594,9 +595,7 @@ module NewRelic
|
|
594
595
|
add_agent_attribute(:'response.headers.contentType', response_content_type, default_destinations)
|
595
596
|
end
|
596
597
|
|
597
|
-
|
598
|
-
@request_attributes.assign_agent_attributes(self)
|
599
|
-
end
|
598
|
+
@request_attributes&.assign_agent_attributes(self)
|
600
599
|
|
601
600
|
display_host = Agent.config[:'process_host.display_name']
|
602
601
|
unless display_host == NewRelic::Agent::Hostname.get
|
@@ -735,15 +734,19 @@ module NewRelic
|
|
735
734
|
def record_exceptions
|
736
735
|
error_recorded = false
|
737
736
|
@exceptions.each do |exception, options|
|
738
|
-
|
739
|
-
options[:port] = request_port if request_port
|
740
|
-
options[:metric] = best_name
|
741
|
-
options[:attributes] = @attributes
|
742
|
-
|
743
|
-
span_id = options.delete(:span_id)
|
744
|
-
error_recorded = !!agent.error_collector.notice_error(exception, options, span_id) || error_recorded
|
737
|
+
error_recorded = record_exception(exception, options, error_recorded)
|
745
738
|
end
|
746
|
-
payload[:error
|
739
|
+
payload&.[]=(:error, error_recorded)
|
740
|
+
end
|
741
|
+
|
742
|
+
def record_exception(exception, options, error_recorded)
|
743
|
+
options[:uri] ||= request_path if request_path
|
744
|
+
options[:port] = request_port if request_port
|
745
|
+
options[:metric] = best_name
|
746
|
+
options[:attributes] = @attributes
|
747
|
+
|
748
|
+
span_id = options.delete(:span_id)
|
749
|
+
!!agent.error_collector.notice_error(exception, options, span_id) || error_recorded
|
747
750
|
end
|
748
751
|
|
749
752
|
# Do not call this. Invoke the class method instead.
|
@@ -28,11 +28,11 @@ module NewRelic
|
|
28
28
|
SAMPLED_KEY = 'sampled'.freeze
|
29
29
|
GUID_KEY = 'nr.transactionGuid'.freeze
|
30
30
|
REFERRING_TRANSACTION_GUID_KEY = 'nr.referringTransactionGuid'.freeze
|
31
|
-
SYNTHETICS_RESOURCE_ID_KEY =
|
32
|
-
SYNTHETICS_JOB_ID_KEY =
|
33
|
-
SYNTHETICS_MONITOR_ID_KEY =
|
34
|
-
PRIORITY_KEY =
|
35
|
-
SPAN_ID_KEY =
|
31
|
+
SYNTHETICS_RESOURCE_ID_KEY = 'nr.syntheticsResourceId'.freeze
|
32
|
+
SYNTHETICS_JOB_ID_KEY = 'nr.syntheticsJobId'.freeze
|
33
|
+
SYNTHETICS_MONITOR_ID_KEY = 'nr.syntheticsMonitorId'.freeze
|
34
|
+
PRIORITY_KEY = 'priority'.freeze
|
35
|
+
SPAN_ID_KEY = 'spanId'.freeze
|
36
36
|
|
37
37
|
def create(noticed_error, payload, span_id)
|
38
38
|
[
|
@@ -18,7 +18,7 @@ module NewRelic
|
|
18
18
|
|
19
19
|
def record(priority: nil, event: nil, &blk)
|
20
20
|
unless event || priority && blk
|
21
|
-
raise ArgumentError,
|
21
|
+
raise ArgumentError, 'Expected priority and block, or event'
|
22
22
|
end
|
23
23
|
|
24
24
|
return unless enabled?
|
@@ -38,7 +38,7 @@ module NewRelic
|
|
38
38
|
end
|
39
39
|
|
40
40
|
def record_sampling_rate(metadata) # THREAD_LOCAL_ACCESS
|
41
|
-
NewRelic::Agent.logger.debug(
|
41
|
+
NewRelic::Agent.logger.debug('Sampled %d / %d (%.1f %%) requests this cycle, %d / %d (%.1f %%) since startup' % [
|
42
42
|
metadata[:captured],
|
43
43
|
metadata[:seen],
|
44
44
|
(metadata[:captured].to_f / metadata[:seen] * 100.0),
|
@@ -48,8 +48,8 @@ module NewRelic
|
|
48
48
|
])
|
49
49
|
|
50
50
|
engine = NewRelic::Agent.instance.stats_engine
|
51
|
-
engine.tl_record_supportability_metric_count(
|
52
|
-
engine.tl_record_supportability_metric_count(
|
51
|
+
engine.tl_record_supportability_metric_count('TransactionEventAggregator/requests', metadata[:seen])
|
52
|
+
engine.tl_record_supportability_metric_count('TransactionEventAggregator/samples', metadata[:captured])
|
53
53
|
end
|
54
54
|
end
|
55
55
|
end
|
@@ -35,9 +35,9 @@ module NewRelic
|
|
35
35
|
CAT_REFERRING_PATH_HASH_KEY = 'nr.referringPathHash'
|
36
36
|
CAT_ALTERNATE_PATH_HASHES_KEY = 'nr.alternatePathHashes'
|
37
37
|
APDEX_PERF_ZONE_KEY = 'nr.apdexPerfZone'
|
38
|
-
SYNTHETICS_RESOURCE_ID_KEY =
|
39
|
-
SYNTHETICS_JOB_ID_KEY =
|
40
|
-
SYNTHETICS_MONITOR_ID_KEY =
|
38
|
+
SYNTHETICS_RESOURCE_ID_KEY = 'nr.syntheticsResourceId'
|
39
|
+
SYNTHETICS_JOB_ID_KEY = 'nr.syntheticsJobId'
|
40
|
+
SYNTHETICS_MONITOR_ID_KEY = 'nr.syntheticsMonitorId'
|
41
41
|
|
42
42
|
def create(payload)
|
43
43
|
intrinsics = {
|
@@ -34,13 +34,13 @@ module NewRelic
|
|
34
34
|
threshold = Agent.config[:'transaction_tracer.transaction_threshold']
|
35
35
|
::NewRelic::Agent.logger.debug("Transaction tracing threshold is #{threshold} seconds.")
|
36
36
|
else
|
37
|
-
::NewRelic::Agent.logger.debug(
|
37
|
+
::NewRelic::Agent.logger.debug('Transaction traces will not be sent to the New Relic service.')
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
41
|
Agent.config.register_callback(:'transaction_tracer.record_sql') do |config|
|
42
42
|
if config == 'raw'
|
43
|
-
::NewRelic::Agent.logger.warn(
|
43
|
+
::NewRelic::Agent.logger.warn('Agent is configured to send raw SQL to the service')
|
44
44
|
end
|
45
45
|
end
|
46
46
|
end
|
@@ -81,7 +81,7 @@ module NewRelic
|
|
81
81
|
begin
|
82
82
|
sample.prepare_to_send!
|
83
83
|
rescue => e
|
84
|
-
NewRelic::Agent.logger.error(
|
84
|
+
NewRelic::Agent.logger.error('Failed to prepare transaction trace. Error: ', e)
|
85
85
|
false
|
86
86
|
else
|
87
87
|
true
|
@@ -101,7 +101,8 @@ module NewRelic
|
|
101
101
|
|
102
102
|
def thread_is_alive?(thread_id)
|
103
103
|
thread = thread_by_id(thread_id)
|
104
|
-
|
104
|
+
# needs else branch coverage
|
105
|
+
thread && thread.alive? # rubocop:disable Style/SafeNavigation
|
105
106
|
rescue StandardError
|
106
107
|
false
|
107
108
|
end
|
@@ -144,10 +145,13 @@ module NewRelic
|
|
144
145
|
elapsed
|
145
146
|
end
|
146
147
|
|
148
|
+
# this method has no test coverage
|
147
149
|
def log_missing_elapsed_transaction_time
|
148
|
-
|
150
|
+
# rubocop:disable Style/SafeNavigation
|
151
|
+
transaction_name = transaction_name = Tracer.current_transaction &&
|
149
152
|
Tracer.current_transaction.best_name ||
|
150
|
-
|
153
|
+
'unknown'
|
154
|
+
# rubocop:enable Style/SafeNavigation
|
151
155
|
NewRelic::Agent.logger.warn("Unable to calculate elapsed transaction time for #{transaction_name}")
|
152
156
|
end
|
153
157
|
end
|
@@ -6,9 +6,9 @@ module NewRelic
|
|
6
6
|
module Agent
|
7
7
|
module Utilization
|
8
8
|
class Azure < Vendor
|
9
|
-
vendor_name
|
10
|
-
endpoint
|
11
|
-
headers
|
9
|
+
vendor_name 'azure'
|
10
|
+
endpoint 'http://169.254.169.254/metadata/instance/compute?api-version=2017-03-01'
|
11
|
+
headers 'Metadata' => 'true'
|
12
12
|
keys %w[vmId name vmSize location]
|
13
13
|
key_transforms :to_sym
|
14
14
|
end
|
@@ -8,9 +8,9 @@ module NewRelic
|
|
8
8
|
module Agent
|
9
9
|
module Utilization
|
10
10
|
class GCP < Vendor
|
11
|
-
vendor_name
|
12
|
-
endpoint
|
13
|
-
headers
|
11
|
+
vendor_name 'gcp'
|
12
|
+
endpoint 'http://metadata.google.internal/computeMetadata/v1/instance/?recursive=true'
|
13
|
+
headers 'Metadata-Flavor' => 'Google'
|
14
14
|
keys %w[id machineType name zone]
|
15
15
|
key_transforms :to_sym
|
16
16
|
|