newrelic_rpm 9.0.0 → 9.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.rubocop.yml +7 -81
- data/.rubocop_todo.yml +4 -43
- data/.simplecov +2 -1
- data/Brewfile +1 -0
- data/CHANGELOG.md +101 -2
- data/Gemfile +1 -1
- data/Guardfile +8 -7
- data/README.md +1 -2
- data/Rakefile +8 -8
- data/Thorfile +1 -1
- data/bin/newrelic +1 -0
- data/bin/newrelic_cmd +1 -0
- data/bin/nrdebug +20 -20
- data/init.rb +1 -1
- data/lib/new_relic/agent/agent.rb +3 -16
- data/lib/new_relic/agent/agent_helpers/connect.rb +4 -9
- data/lib/new_relic/agent/agent_helpers/harvest.rb +4 -4
- data/lib/new_relic/agent/agent_helpers/shutdown.rb +5 -5
- data/lib/new_relic/agent/agent_helpers/special_startup.rb +2 -2
- data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +47 -39
- data/lib/new_relic/agent/agent_helpers/startup.rb +13 -13
- data/lib/new_relic/agent/agent_helpers/transmit.rb +6 -6
- data/lib/new_relic/agent/agent_logger.rb +9 -9
- data/lib/new_relic/agent/attribute_filter.rb +2 -2
- data/lib/new_relic/agent/attribute_processing.rb +2 -2
- data/lib/new_relic/agent/audit_logger.rb +5 -5
- data/lib/new_relic/agent/autostart.rb +1 -1
- data/lib/new_relic/agent/commands/agent_command.rb +2 -2
- data/lib/new_relic/agent/commands/agent_command_router.rb +5 -4
- data/lib/new_relic/agent/commands/thread_profiler_session.rb +5 -5
- data/lib/new_relic/agent/configuration/default_source.rb +106 -118
- data/lib/new_relic/agent/configuration/environment_source.rb +2 -2
- data/lib/new_relic/agent/configuration/high_security_source.rb +3 -3
- data/lib/new_relic/agent/configuration/manager.rb +15 -2
- data/lib/new_relic/agent/configuration/security_policy_source.rb +10 -10
- data/lib/new_relic/agent/configuration/server_source.rb +24 -24
- data/lib/new_relic/agent/configuration/yaml_source.rb +4 -4
- data/lib/new_relic/agent/connect/request_builder.rb +1 -1
- data/lib/new_relic/agent/connect/response_handler.rb +1 -1
- data/lib/new_relic/agent/custom_event_aggregator.rb +4 -4
- data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -1
- data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
- data/lib/new_relic/agent/database/obfuscator.rb +2 -2
- data/lib/new_relic/agent/database.rb +4 -4
- data/lib/new_relic/agent/datastores/metric_helper.rb +5 -5
- data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +11 -11
- data/lib/new_relic/agent/datastores/redis.rb +6 -6
- data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +7 -8
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +10 -10
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +7 -7
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +1 -1
- data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +6 -6
- data/lib/new_relic/agent/distributed_tracing/trace_context.rb +7 -7
- data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +4 -4
- data/lib/new_relic/agent/distributed_tracing.rb +5 -5
- data/lib/new_relic/agent/error_collector.rb +35 -7
- data/lib/new_relic/agent/error_filter.rb +2 -2
- data/lib/new_relic/agent/error_trace_aggregator.rb +5 -4
- data/lib/new_relic/agent/event_loop.rb +3 -3
- data/lib/new_relic/agent/external.rb +1 -1
- data/lib/new_relic/agent/harvester.rb +1 -3
- data/lib/new_relic/agent/heap.rb +2 -1
- data/lib/new_relic/agent/hostname.rb +1 -1
- data/lib/new_relic/agent/http_clients/abstract.rb +9 -21
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +7 -3
- data/lib/new_relic/agent/http_clients/excon_wrappers.rb +7 -5
- data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +4 -0
- data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +6 -2
- data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +5 -1
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +8 -5
- data/lib/new_relic/agent/http_clients/uri_util.rb +2 -2
- data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +5 -2
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +3 -2
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +3 -3
- data/lib/new_relic/agent/instrumentation/active_job.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +3 -3
- data/lib/new_relic/agent/instrumentation/active_record.rb +3 -2
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +38 -35
- data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +3 -3
- data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +2 -2
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +3 -2
- data/lib/new_relic/agent/instrumentation/bunny/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +3 -3
- data/lib/new_relic/agent/instrumentation/bunny.rb +1 -1
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +5 -3
- data/lib/new_relic/agent/instrumentation/curb/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +5 -5
- data/lib/new_relic/agent/instrumentation/curb.rb +1 -1
- data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +2 -1
- data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +1 -0
- data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +2 -1
- data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +2 -2
- data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +4 -3
- data/lib/new_relic/agent/instrumentation/elasticsearch.rb +2 -2
- data/lib/new_relic/agent/instrumentation/excon/middleware.rb +2 -1
- data/lib/new_relic/agent/instrumentation/excon.rb +3 -3
- data/lib/new_relic/agent/instrumentation/fiber/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/fiber.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +4 -4
- data/lib/new_relic/agent/instrumentation/grape.rb +3 -3
- data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +3 -2
- data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +4 -4
- data/lib/new_relic/agent/instrumentation/grpc_client.rb +1 -1
- data/lib/new_relic/agent/instrumentation/grpc_server.rb +1 -1
- data/lib/new_relic/agent/instrumentation/httprb.rb +1 -1
- data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
- data/lib/new_relic/agent/instrumentation/logger.rb +1 -1
- data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +3 -1
- data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +2 -2
- data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +3 -1
- data/lib/new_relic/agent/instrumentation/memcache.rb +8 -8
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +3 -3
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +1 -1
- data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +6 -6
- data/lib/new_relic/agent/instrumentation/net_http.rb +1 -1
- data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +1 -1
- data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +3 -3
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +2 -2
- data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +3 -2
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +7 -7
- data/lib/new_relic/agent/instrumentation/rake.rb +2 -2
- data/lib/new_relic/agent/instrumentation/redis/constants.rb +1 -1
- data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +2 -1
- data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sequel.rb +4 -4
- data/lib/new_relic/agent/instrumentation/sequel_helper.rb +10 -10
- data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +1 -0
- data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
- data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +6 -5
- data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +1 -1
- data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +2 -1
- data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +5 -5
- data/lib/new_relic/agent/javascript_instrumentor.rb +29 -24
- data/lib/new_relic/agent/linking_metadata.rb +2 -2
- data/lib/new_relic/agent/log_event_aggregator.rb +15 -15
- data/lib/new_relic/agent/logging.rb +73 -33
- data/lib/new_relic/agent/messaging.rb +7 -5
- data/lib/new_relic/agent/method_tracer.rb +7 -7
- data/lib/new_relic/agent/method_tracer_helpers.rb +1 -1
- data/lib/new_relic/agent/monitors/cross_app_monitor.rb +4 -4
- data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +1 -1
- data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
- data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +2 -2
- data/lib/new_relic/agent/new_relic_service.rb +14 -15
- data/lib/new_relic/agent/obfuscator.rb +1 -1
- data/lib/new_relic/agent/parameter_filtering.rb +6 -6
- data/lib/new_relic/agent/pipe_channel_manager.rb +7 -6
- data/lib/new_relic/agent/pipe_service.rb +5 -3
- data/lib/new_relic/agent/priority_sampled_buffer.rb +1 -1
- data/lib/new_relic/agent/sampler.rb +2 -1
- data/lib/new_relic/agent/sampler_collection.rb +1 -1
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +5 -5
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +9 -9
- data/lib/new_relic/agent/samplers/memory_sampler.rb +9 -9
- data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
- data/lib/new_relic/agent/span_event_aggregator.rb +4 -4
- data/lib/new_relic/agent/span_event_primitive.rb +2 -2
- data/lib/new_relic/agent/sql_sampler.rb +2 -2
- data/lib/new_relic/agent/stats.rb +1 -1
- data/lib/new_relic/agent/synthetics_event_aggregator.rb +1 -1
- data/lib/new_relic/agent/system_info.rb +10 -10
- data/lib/new_relic/agent/threading/agent_thread.rb +1 -1
- data/lib/new_relic/agent/threading/backtrace_node.rb +3 -3
- data/lib/new_relic/agent/threading/backtrace_service.rb +3 -7
- data/lib/new_relic/agent/threading/thread_profile.rb +5 -5
- data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
- data/lib/new_relic/agent/tracer.rb +9 -8
- data/lib/new_relic/agent/transaction/abstract_segment.rb +52 -46
- data/lib/new_relic/agent/transaction/datastore_segment.rb +1 -1
- data/lib/new_relic/agent/transaction/distributed_tracer.rb +7 -6
- data/lib/new_relic/agent/transaction/distributed_tracing.rb +13 -14
- data/lib/new_relic/agent/transaction/external_request_segment.rb +11 -11
- data/lib/new_relic/agent/transaction/message_broker_segment.rb +1 -1
- data/lib/new_relic/agent/transaction/request_attributes.rb +2 -2
- data/lib/new_relic/agent/transaction/segment.rb +1 -1
- data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction/trace.rb +1 -1
- data/lib/new_relic/agent/transaction/trace_context.rb +4 -4
- data/lib/new_relic/agent/transaction/trace_node.rb +8 -7
- data/lib/new_relic/agent/transaction/tracing.rb +8 -2
- data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
- data/lib/new_relic/agent/transaction.rb +43 -36
- data/lib/new_relic/agent/transaction_error_primitive.rb +5 -5
- data/lib/new_relic/agent/transaction_event_aggregator.rb +4 -4
- data/lib/new_relic/agent/transaction_event_primitive.rb +3 -3
- data/lib/new_relic/agent/transaction_sampler.rb +3 -3
- data/lib/new_relic/agent/transaction_time_aggregator.rb +7 -3
- data/lib/new_relic/agent/utilization/aws.rb +1 -1
- data/lib/new_relic/agent/utilization/azure.rb +3 -3
- data/lib/new_relic/agent/utilization/gcp.rb +3 -3
- data/lib/new_relic/agent/utilization/pcf.rb +1 -1
- data/lib/new_relic/agent/utilization/vendor.rb +1 -1
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
- data/lib/new_relic/agent/vm/mri_vm.rb +9 -8
- data/lib/new_relic/agent/worker_loop.rb +1 -1
- data/lib/new_relic/agent.rb +78 -16
- data/lib/new_relic/cli/command.rb +3 -3
- data/lib/new_relic/cli/commands/deployments.rb +26 -25
- data/lib/new_relic/cli/commands/install.rb +14 -14
- data/lib/new_relic/collection_helper.rb +2 -2
- data/lib/new_relic/constants.rb +7 -8
- data/lib/new_relic/control/class_methods.rb +3 -3
- data/lib/new_relic/control/frameworks/rails.rb +30 -18
- data/lib/new_relic/control/instance_methods.rb +5 -5
- data/lib/new_relic/control/instrumentation.rb +1 -15
- data/lib/new_relic/control/private_instance_methods.rb +1 -1
- data/lib/new_relic/dependency_detection.rb +14 -18
- data/lib/new_relic/environment_report.rb +4 -4
- data/lib/new_relic/helper.rb +2 -1
- data/lib/new_relic/language_support.rb +1 -1
- data/lib/new_relic/latest_changes.rb +5 -5
- data/lib/new_relic/noticed_error.rb +20 -18
- data/lib/new_relic/rack/browser_monitoring.rb +20 -16
- data/lib/new_relic/recipes/capistrano3.rb +1 -1
- data/lib/new_relic/recipes/capistrano_legacy.rb +6 -6
- data/lib/new_relic/recipes/helpers/send_deployment.rb +5 -5
- data/lib/new_relic/supportability_helper.rb +2 -0
- data/lib/new_relic/version.rb +2 -2
- data/lib/newrelic_rpm.rb +3 -3
- data/lib/sequel/extensions/new_relic_instrumentation.rb +3 -3
- data/lib/sequel/plugins/new_relic_instrumentation.rb +1 -1
- data/lib/tasks/config.rake +12 -12
- data/lib/tasks/coverage_report.rake +4 -4
- data/lib/tasks/helpers/format.rb +9 -9
- data/lib/tasks/helpers/removers.rb +5 -5
- data/lib/tasks/install.rake +4 -4
- data/lib/tasks/instrumentation_generator/instrumentation.thor +8 -8
- data/lib/tasks/instrumentation_generator/templates/chain.tt +1 -1
- data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +1 -1
- data/lib/tasks/multiverse.rb +13 -6
- data/lib/tasks/newrelic.rb +1 -0
- data/lib/tasks/tests.rake +6 -6
- data/newrelic.yml +5 -5
- data/newrelic_rpm.gemspec +13 -13
- data/test/agent_helper.rb +25 -24
- metadata +73 -4
- data/lib/new_relic/agent/range_extensions.rb +0 -27
@@ -16,7 +16,7 @@ require 'new_relic/control' unless defined? NewRelic::Control
|
|
16
16
|
|
17
17
|
class NewRelic::Cli::Deployments < NewRelic::Cli::Command
|
18
18
|
attr_reader :control
|
19
|
-
def self.command;
|
19
|
+
def self.command; 'deployments'; end
|
20
20
|
|
21
21
|
# Initialize the deployment uploader with command line args.
|
22
22
|
# Use -h to see options.
|
@@ -33,7 +33,8 @@ class NewRelic::Cli::Deployments < NewRelic::Cli::Command
|
|
33
33
|
@changelog = nil
|
34
34
|
@user = nil
|
35
35
|
super(command_line_args)
|
36
|
-
|
36
|
+
# needs else branch coverage
|
37
|
+
@description ||= @leftover && @leftover.join(' ') # rubocop:disable Style/SafeNavigation
|
37
38
|
@user ||= ENV['USER']
|
38
39
|
control.env = @environment if @environment
|
39
40
|
|
@@ -71,17 +72,17 @@ class NewRelic::Cli::Deployments < NewRelic::Cli::Command
|
|
71
72
|
end
|
72
73
|
|
73
74
|
if !api_v1? && (@revision.nil? || @revision.empty?)
|
74
|
-
raise
|
75
|
+
raise 'revision required when using New Relic REST API v2 with api_key. Pass in revision using: -r, --revision=REV'
|
75
76
|
end
|
76
77
|
|
77
78
|
request = if api_v1?
|
78
|
-
uri =
|
79
|
-
create_request(uri, {'x-license-key' => @license_key},
|
79
|
+
uri = '/deployments.xml'
|
80
|
+
create_request(uri, {'x-license-key' => @license_key}, 'application/octet-stream').tap do |req|
|
80
81
|
set_params_v1(req)
|
81
82
|
end
|
82
83
|
else
|
83
84
|
uri = "/v2/applications/#{application_id}/deployments.json"
|
84
|
-
create_request(uri, {
|
85
|
+
create_request(uri, {'Api-Key' => @api_key}, 'application/json').tap do |req|
|
85
86
|
set_params_v2(req)
|
86
87
|
end
|
87
88
|
end
|
@@ -92,7 +93,7 @@ class NewRelic::Cli::Deployments < NewRelic::Cli::Command
|
|
92
93
|
if response.is_a?(Net::HTTPSuccess)
|
93
94
|
info("Recorded deployment to '#{@appname}' (#{@description || Time.now})")
|
94
95
|
else
|
95
|
-
err_string = REXML::Document.new(response.body).elements['errors/error'].map(&:to_s).join(
|
96
|
+
err_string = REXML::Document.new(response.body).elements['errors/error'].map(&:to_s).join('; ') rescue response.message
|
96
97
|
raise NewRelic::Cli::Command::CommandFailure, "Deployment not recorded: #{err_string}"
|
97
98
|
end
|
98
99
|
rescue SystemCallError, SocketError => e
|
@@ -150,7 +151,7 @@ class NewRelic::Cli::Deployments < NewRelic::Cli::Command
|
|
150
151
|
|
151
152
|
def set_params_v2(request)
|
152
153
|
request.body = {
|
153
|
-
|
154
|
+
'deployment' => {
|
154
155
|
:description => @description,
|
155
156
|
:user => @user,
|
156
157
|
:revision => @revision,
|
@@ -161,25 +162,25 @@ class NewRelic::Cli::Deployments < NewRelic::Cli::Command
|
|
161
162
|
|
162
163
|
def options
|
163
164
|
OptionParser.new(%Q(Usage: #{$0} #{self.class.command} [OPTIONS] ["description"] ), 40) do |o|
|
164
|
-
o.separator(
|
165
|
-
o.on(
|
166
|
-
|
167
|
-
|
168
|
-
o.on(
|
169
|
-
|
170
|
-
|
171
|
-
o.on(
|
172
|
-
|
165
|
+
o.separator('OPTIONS:')
|
166
|
+
o.on('-a', '--appname=NAME', String,
|
167
|
+
'Set the application name.',
|
168
|
+
'Default is app_name setting in newrelic.yml. Available only when using API v1.') { |e| @appname = e }
|
169
|
+
o.on('-i', '--appid=ID', String,
|
170
|
+
'Set the application ID',
|
171
|
+
'If not provided, will connect to the New Relic collector to get it') { |i| @application_id = i }
|
172
|
+
o.on('-e', '--environment=name', String,
|
173
|
+
'Override the (RAILS|RUBY|RACK)_ENV setting',
|
173
174
|
"currently: #{control.env}") { |e| @environment = e }
|
174
|
-
o.on(
|
175
|
-
|
175
|
+
o.on('-u', '--user=USER', String,
|
176
|
+
'Specify the user deploying, for information only',
|
176
177
|
"Default: #{@user || '<none>'}") { |u| @user = u }
|
177
|
-
o.on(
|
178
|
-
|
179
|
-
o.on(
|
180
|
-
|
181
|
-
o.on(
|
182
|
-
|
178
|
+
o.on('-r', '--revision=REV', String,
|
179
|
+
'Specify the revision being deployed. Required when using New Relic REST API v2') { |r| @revision = r }
|
180
|
+
o.on('-l', '--license-key=KEY', String,
|
181
|
+
'Specify the license key of the account for the app being deployed') { |l| @license_key = l }
|
182
|
+
o.on('-c', '--changes',
|
183
|
+
'Read in a change log from the standard input') { @changelog = STDIN.read }
|
183
184
|
yield(o) if block_given?
|
184
185
|
end
|
185
186
|
end
|
@@ -7,9 +7,9 @@ require 'new_relic/version'
|
|
7
7
|
require 'erb'
|
8
8
|
|
9
9
|
class NewRelic::Cli::Install < NewRelic::Cli::Command
|
10
|
-
NO_LICENSE_KEY =
|
10
|
+
NO_LICENSE_KEY = '<PASTE LICENSE KEY HERE>'
|
11
11
|
|
12
|
-
def self.command;
|
12
|
+
def self.command; 'install'; end
|
13
13
|
|
14
14
|
# Use -h to see options.
|
15
15
|
# When command_line_args is a hash, we are invoking directly and
|
@@ -25,22 +25,22 @@ class NewRelic::Cli::Install < NewRelic::Cli::Command
|
|
25
25
|
super(command_line_args)
|
26
26
|
if @dest_dir.nil?
|
27
27
|
# Install a newrelic.yml file into the local config directory.
|
28
|
-
if File.directory?(
|
29
|
-
@dest_dir =
|
28
|
+
if File.directory?('config')
|
29
|
+
@dest_dir = 'config'
|
30
30
|
else
|
31
|
-
@dest_dir =
|
31
|
+
@dest_dir = '.'
|
32
32
|
end
|
33
33
|
end
|
34
34
|
@license_key ||= NO_LICENSE_KEY
|
35
|
-
@app_name ||= @leftover.join(
|
35
|
+
@app_name ||= @leftover.join(' ')
|
36
36
|
@agent_version = NewRelic::VERSION::STRING
|
37
|
-
raise CommandFailure.new(
|
37
|
+
raise CommandFailure.new('Application name required.', @options) unless @app_name && @app_name.size > 0
|
38
38
|
end
|
39
39
|
|
40
40
|
def run
|
41
|
-
dest_file = File.expand_path(@dest_dir +
|
41
|
+
dest_file = File.expand_path(@dest_dir + '/newrelic.yml')
|
42
42
|
if File.exist?(dest_file) && !@force
|
43
|
-
raise NewRelic::Cli::Command::CommandFailure,
|
43
|
+
raise NewRelic::Cli::Command::CommandFailure, 'newrelic.yml file already exists. Use --force flag to overwrite.'
|
44
44
|
end
|
45
45
|
|
46
46
|
File.open(dest_file, 'w') { |out| out.puts(content) }
|
@@ -63,7 +63,7 @@ class NewRelic::Cli::Install < NewRelic::Cli::Command
|
|
63
63
|
end
|
64
64
|
|
65
65
|
def content
|
66
|
-
@src_file ||= File.expand_path(File.join(File.dirname(__FILE__),
|
66
|
+
@src_file ||= File.expand_path(File.join(File.dirname(__FILE__), '..', '..', '..', '..', 'newrelic.yml'))
|
67
67
|
template = File.read(@src_file)
|
68
68
|
ERB.new(template).result(binding)
|
69
69
|
end
|
@@ -72,10 +72,10 @@ class NewRelic::Cli::Install < NewRelic::Cli::Command
|
|
72
72
|
|
73
73
|
def options
|
74
74
|
OptionParser.new("Usage: #{$0} #{self.class.command} [ OPTIONS] 'application name'", 40) do |o|
|
75
|
-
o.on(
|
76
|
-
o.on(
|
77
|
-
|
78
|
-
o.on(
|
75
|
+
o.on('-f', '--force', 'Overwrite newrelic.yml if it exists') { |e| @force = true }
|
76
|
+
o.on('-l', '--license_key=NAME', String,
|
77
|
+
'Use the given license key') { |e| @license_key = e }
|
78
|
+
o.on('-d', '--destdir=name', String,
|
79
79
|
"Write the newrelic.yml to the given directory, default is '.'") { |e| @dest_dir = e }
|
80
80
|
yield(o) if block_given?
|
81
81
|
end
|
@@ -40,7 +40,7 @@ module NewRelic
|
|
40
40
|
when nil then ''
|
41
41
|
when object.instance_of?(String) then object
|
42
42
|
when String then String.new(object) # convert string subclasses to strings
|
43
|
-
else
|
43
|
+
else +"#<#{object.class}>"
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
@@ -52,7 +52,7 @@ module NewRelic
|
|
52
52
|
real_string = flatten(string)
|
53
53
|
if real_string.size > len
|
54
54
|
real_string = real_string.slice(0...len)
|
55
|
-
real_string <<
|
55
|
+
real_string << '...'
|
56
56
|
end
|
57
57
|
real_string
|
58
58
|
else
|
data/lib/new_relic/constants.rb
CHANGED
@@ -7,16 +7,16 @@ module NewRelic
|
|
7
7
|
|
8
8
|
EMPTY_ARRAY = [].freeze
|
9
9
|
EMPTY_HASH = {}.freeze
|
10
|
-
EMPTY_STR =
|
10
|
+
EMPTY_STR = ''
|
11
11
|
|
12
|
-
HTTP =
|
13
|
-
HTTPS =
|
14
|
-
UNKNOWN =
|
12
|
+
HTTP = 'HTTP'
|
13
|
+
HTTPS = 'HTTPS'
|
14
|
+
UNKNOWN = 'Unknown'
|
15
15
|
|
16
16
|
FORMAT_NON_RACK = 0
|
17
17
|
FORMAT_RACK = 1
|
18
18
|
|
19
|
-
NEWRELIC_KEY =
|
19
|
+
NEWRELIC_KEY = 'newrelic'
|
20
20
|
CANDIDATE_NEWRELIC_KEYS = [
|
21
21
|
NEWRELIC_KEY,
|
22
22
|
'NEWRELIC',
|
@@ -24,8 +24,8 @@ module NewRelic
|
|
24
24
|
'Newrelic'
|
25
25
|
].freeze
|
26
26
|
|
27
|
-
TRACEPARENT_KEY =
|
28
|
-
TRACESTATE_KEY =
|
27
|
+
TRACEPARENT_KEY = 'traceparent'
|
28
|
+
TRACESTATE_KEY = 'tracestate'
|
29
29
|
|
30
30
|
STANDARD_OUT = 'STDOUT'
|
31
31
|
|
@@ -34,6 +34,5 @@ module NewRelic
|
|
34
34
|
HTTP_NEWRELIC_KEY = "HTTP_#{NEWRELIC_KEY.upcase}"
|
35
35
|
|
36
36
|
CONNECT_RETRY_PERIODS = [15, 15, 30, 60, 120, 300]
|
37
|
-
MIN_RETRY_PERIOD = 15
|
38
37
|
MAX_RETRY_PERIOD = 300
|
39
38
|
end
|
@@ -35,8 +35,8 @@ module NewRelic
|
|
35
35
|
|
36
36
|
# nb this does not 'load test' the framework, it loads the 'test framework'
|
37
37
|
def load_test_framework
|
38
|
-
config = File.expand_path(File.join('..', '..', '..', '..',
|
39
|
-
require
|
38
|
+
config = File.expand_path(File.join('..', '..', '..', '..', 'test', 'config', 'newrelic.yml'), __FILE__)
|
39
|
+
require 'config/test_control'
|
40
40
|
NewRelic::Control::Frameworks::Test.new(local_env, config)
|
41
41
|
end
|
42
42
|
|
@@ -54,7 +54,7 @@ module NewRelic
|
|
54
54
|
|
55
55
|
# The root directory for the plugin or gem
|
56
56
|
def newrelic_root
|
57
|
-
File.expand_path(File.join(
|
57
|
+
File.expand_path(File.join('..', '..', '..', '..'), __FILE__)
|
58
58
|
end
|
59
59
|
|
60
60
|
def camelize(snake_case_name)
|
@@ -44,26 +44,38 @@ module NewRelic
|
|
44
44
|
# find a config and use that.
|
45
45
|
def init_config(options = {})
|
46
46
|
@config = options[:config]
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
47
|
+
install_dependency_detection
|
48
|
+
install_browser_monitoring_and_agent_hooks
|
49
|
+
rescue => e
|
50
|
+
::NewRelic::Agent.logger.error('Failure during init_config for Rails. Is Rails required in a non-Rails ' \
|
51
|
+
'app? Set NEW_RELIC_FRAMEWORK=ruby to avoid this message. The Ruby agent ' \
|
52
|
+
'will continue running, but Rails-specific features may be missing. ' \
|
53
|
+
"#{e.class} - #{e.message}")
|
54
|
+
end
|
55
|
+
|
56
|
+
def install_dependency_detection
|
57
|
+
return unless rails_config && ::Rails.configuration.respond_to?(:after_initialize)
|
58
|
+
|
59
|
+
rails_config.after_initialize do
|
60
|
+
# This will insure we load all the instrumentation as late as
|
61
|
+
# possible. If the agent is not enabled, it will load a limited
|
62
|
+
# amount of instrumentation.
|
63
|
+
DependencyDetection.detect!
|
54
64
|
end
|
65
|
+
end
|
66
|
+
|
67
|
+
def install_browser_monitoring_and_agent_hooks
|
68
|
+
return unless rails_config
|
69
|
+
|
55
70
|
if !Agent.config[:agent_enabled]
|
56
|
-
# Might not be running if it does not think mongrel, thin,
|
57
|
-
# is running, if it thinks it's a rake task, or
|
58
|
-
|
71
|
+
# Might not be running if it does not think mongrel, thin,
|
72
|
+
# passenger, etc. is running, if it thinks it's a rake task, or
|
73
|
+
# if the agent_enabled is false.
|
74
|
+
::NewRelic::Agent.logger.info('New Relic Agent not running. Skipping browser monitoring and agent hooks.')
|
59
75
|
else
|
60
76
|
install_browser_monitoring(rails_config)
|
61
77
|
install_agent_hooks(rails_config)
|
62
78
|
end
|
63
|
-
rescue => e
|
64
|
-
::NewRelic::Agent.logger.error("Failure during init_config for Rails. Is Rails required in a non-Rails app? Set NEW_RELIC_FRAMEWORK=ruby to avoid this message.",
|
65
|
-
"The Ruby agent will continue running, but Rails-specific features may be missing.",
|
66
|
-
e)
|
67
79
|
end
|
68
80
|
|
69
81
|
def install_agent_hooks(config)
|
@@ -77,9 +89,9 @@ module NewRelic
|
|
77
89
|
return unless NewRelic::Rack::AgentHooks.needed?
|
78
90
|
|
79
91
|
config.middleware.use(NewRelic::Rack::AgentHooks)
|
80
|
-
::NewRelic::Agent.logger.debug(
|
92
|
+
::NewRelic::Agent.logger.debug('Installed New Relic Agent Hooks middleware')
|
81
93
|
rescue => e
|
82
|
-
::NewRelic::Agent.logger.warn(
|
94
|
+
::NewRelic::Agent.logger.warn('Error installing New Relic Agent Hooks middleware', e)
|
83
95
|
end
|
84
96
|
end
|
85
97
|
|
@@ -93,9 +105,9 @@ module NewRelic
|
|
93
105
|
begin
|
94
106
|
require 'new_relic/rack/browser_monitoring'
|
95
107
|
config.middleware.use(NewRelic::Rack::BrowserMonitoring)
|
96
|
-
::NewRelic::Agent.logger.debug(
|
108
|
+
::NewRelic::Agent.logger.debug('Installed New Relic Browser Monitoring middleware')
|
97
109
|
rescue => e
|
98
|
-
::NewRelic::Agent.logger.warn(
|
110
|
+
::NewRelic::Agent.logger.warn('Error installing New Relic Browser Monitoring middleware', e)
|
99
111
|
end
|
100
112
|
end
|
101
113
|
end
|
@@ -82,10 +82,10 @@ module NewRelic
|
|
82
82
|
if @started_in_env && @started_in_env != env
|
83
83
|
Agent.logger.error("Attempted to start agent in #{env.inspect} environment, but agent was already running " \
|
84
84
|
"in #{@started_in_env.inspect}", "The agent will continue running in #{@started_in_env.inspect}. To " \
|
85
|
-
|
85
|
+
'alter this, ensure the desired environment is set before the agent starts.')
|
86
86
|
else
|
87
87
|
Agent.logger.info("Starting the New Relic agent version #{NewRelic::VERSION::STRING} in #{env.inspect} " \
|
88
|
-
|
88
|
+
'environment.', 'To prevent agent startup add a NEW_RELIC_AGENT_ENABLED=false environment variable or ' \
|
89
89
|
"modify the #{env.inspect} section of your newrelic.yml.")
|
90
90
|
end
|
91
91
|
|
@@ -106,9 +106,9 @@ module NewRelic
|
|
106
106
|
end
|
107
107
|
|
108
108
|
def handle_invalid_security_settings
|
109
|
-
NewRelic::Agent.logger.error(
|
110
|
-
|
111
|
-
|
109
|
+
NewRelic::Agent.logger.error('Security Policies and High Security Mode cannot both be present in the agent ' \
|
110
|
+
'configuration. If Security Policies have been set for your account, please ensure the ' \
|
111
|
+
'security_policies_token is set but high_security is disabled (default).')
|
112
112
|
install_shim
|
113
113
|
end
|
114
114
|
|
@@ -62,9 +62,8 @@ module NewRelic
|
|
62
62
|
File.join(instrumentation_path, app.to_s, '*.rb')
|
63
63
|
@instrumentation_files.each { |pattern| load_instrumentation_files(pattern) }
|
64
64
|
DependencyDetection.detect!
|
65
|
-
ruby_deprecation
|
66
65
|
rails_32_deprecation
|
67
|
-
::NewRelic::Agent.logger.info(
|
66
|
+
::NewRelic::Agent.logger.info('Finished instrumentation')
|
68
67
|
end
|
69
68
|
end
|
70
69
|
|
@@ -81,19 +80,6 @@ module NewRelic
|
|
81
80
|
)
|
82
81
|
end
|
83
82
|
|
84
|
-
def ruby_deprecation
|
85
|
-
return unless RUBY_VERSION < '2.4.0'
|
86
|
-
|
87
|
-
deprecation_msg = 'The Ruby Agent is dropping support for Rubies below 2.4 ' \
|
88
|
-
'in version 9.0.0. Please upgrade your Ruby version to continue receiving support. ' \
|
89
|
-
|
90
|
-
::NewRelic::Agent.logger.log_once(
|
91
|
-
:warn,
|
92
|
-
:deprecated_ruby_version,
|
93
|
-
deprecation_msg
|
94
|
-
)
|
95
|
-
end
|
96
|
-
|
97
83
|
include Instrumentation
|
98
84
|
end
|
99
85
|
end
|
@@ -12,7 +12,7 @@ module NewRelic
|
|
12
12
|
|
13
13
|
def configure_high_security
|
14
14
|
if security_settings_valid? && Agent.config[:high_security]
|
15
|
-
Agent.logger.info(
|
15
|
+
Agent.logger.info('Installing high security configuration based on local configuration')
|
16
16
|
Agent.config.replace_or_add_config(Agent::Configuration::HighSecuritySource.new(Agent.config))
|
17
17
|
end
|
18
18
|
end
|
@@ -35,19 +35,6 @@ module DependencyDetection
|
|
35
35
|
@items.find { |i| i.name == name }
|
36
36
|
end
|
37
37
|
|
38
|
-
def installed?(name)
|
39
|
-
item = dependency_by_name(name)
|
40
|
-
item && item.executed
|
41
|
-
end
|
42
|
-
|
43
|
-
def items
|
44
|
-
@items
|
45
|
-
end
|
46
|
-
|
47
|
-
def items=(new_items)
|
48
|
-
@items = new_items
|
49
|
-
end
|
50
|
-
|
51
38
|
class Dependent
|
52
39
|
attr_reader :executed
|
53
40
|
attr_accessor :name
|
@@ -83,7 +70,7 @@ module DependencyDetection
|
|
83
70
|
# Given "NewRelic::Agent::Instrumentation::NetHTTP::Prepend"
|
84
71
|
# Will extract "NetHTTP" which is in the 2nd to last spot
|
85
72
|
def extract_supportability_name(instrumenting_module)
|
86
|
-
instrumenting_module.to_s.split(
|
73
|
+
instrumenting_module.to_s.split('::')[-2]
|
87
74
|
end
|
88
75
|
|
89
76
|
def log_and_instrument(method, instrumenting_module, supportability_name)
|
@@ -94,20 +81,20 @@ module DependencyDetection
|
|
94
81
|
end
|
95
82
|
|
96
83
|
def prepend_instrument(target_class, instrumenting_module, supportability_name = nil)
|
97
|
-
log_and_instrument(
|
84
|
+
log_and_instrument('Prepend', instrumenting_module, supportability_name) do
|
98
85
|
target_class.send(:prepend, instrumenting_module)
|
99
86
|
end
|
100
87
|
end
|
101
88
|
|
102
89
|
def chain_instrument(instrumenting_module, supportability_name = nil)
|
103
|
-
log_and_instrument(
|
90
|
+
log_and_instrument('MethodChaining', instrumenting_module, supportability_name) do
|
104
91
|
instrumenting_module.instrument!
|
105
92
|
end
|
106
93
|
end
|
107
94
|
|
108
95
|
def chain_instrument_target(target, instrumenting_module, supportability_name = nil)
|
109
96
|
NewRelic::Agent.logger.info("Installing deferred #{target} instrumentation")
|
110
|
-
log_and_instrument(
|
97
|
+
log_and_instrument('MethodChaining', instrumenting_module, supportability_name) do
|
111
98
|
instrumenting_module.instrument!(target)
|
112
99
|
end
|
113
100
|
end
|
@@ -192,6 +179,15 @@ module DependencyDetection
|
|
192
179
|
return valid_value
|
193
180
|
end
|
194
181
|
|
182
|
+
# update any :auto config value to be either :prepend or :chain after auto
|
183
|
+
# determination has selected one of those to use
|
184
|
+
def update_config_value(use_prepend)
|
185
|
+
if config_key && auto_configured?
|
186
|
+
NewRelic::Agent.config.instance_variable_get(:@cache)[config_key] = use_prepend ? :prepend : :chain
|
187
|
+
end
|
188
|
+
use_prepend
|
189
|
+
end
|
190
|
+
|
195
191
|
def config_value
|
196
192
|
return AUTO_CONFIG_VALUE unless config_key
|
197
193
|
|
@@ -215,7 +211,7 @@ module DependencyDetection
|
|
215
211
|
end
|
216
212
|
|
217
213
|
def use_prepend?
|
218
|
-
prepend_configured? || (auto_configured? && !prepend_conflicts?)
|
214
|
+
update_config_value(prepend_configured? || (auto_configured? && !prepend_conflicts?))
|
219
215
|
end
|
220
216
|
|
221
217
|
def prepend_conflicts?
|
@@ -52,7 +52,7 @@ module NewRelic
|
|
52
52
|
# though so try it if the above fails.
|
53
53
|
Bundler.load.specs.map do |spec|
|
54
54
|
version = (spec.respond_to?(:version) && spec.version)
|
55
|
-
spec.name + (version ? "(#{version})" :
|
55
|
+
spec.name + (version ? "(#{version})" : '')
|
56
56
|
end
|
57
57
|
end
|
58
58
|
end
|
@@ -118,19 +118,19 @@ module NewRelic
|
|
118
118
|
def record_value(data, key, value)
|
119
119
|
data[key] = value
|
120
120
|
|
121
|
-
Agent.record_metric(
|
121
|
+
Agent.record_metric('Supportability/EnvironmentReport/success', 0.0)
|
122
122
|
Agent.record_metric("Supportability/EnvironmentReport/success/#{key}", 0.0)
|
123
123
|
end
|
124
124
|
|
125
125
|
def record_empty_value(key, value)
|
126
126
|
Agent.logger.debug("EnvironmentReport ignoring value for #{key.inspect} which came back falsey: #{value.inspect}")
|
127
|
-
Agent.record_metric(
|
127
|
+
Agent.record_metric('Supportability/EnvironmentReport/empty', 0.0)
|
128
128
|
Agent.record_metric("Supportability/EnvironmentReport/empty/#{key}", 0.0)
|
129
129
|
end
|
130
130
|
|
131
131
|
def rescue_initialize(key, exception)
|
132
132
|
Agent.logger.debug("EnvironmentReport failed to retrieve value for #{key.inspect}: #{exception}")
|
133
|
-
Agent.record_metric(
|
133
|
+
Agent.record_metric('Supportability/EnvironmentReport/error', 0.0)
|
134
134
|
Agent.record_metric("Supportability/EnvironmentReport/error/#{key}", 0.0)
|
135
135
|
end
|
136
136
|
end
|
data/lib/new_relic/helper.rb
CHANGED
@@ -63,7 +63,8 @@ module NewRelic
|
|
63
63
|
raise NewRelic::CommandRunFailedError.new("Failed to run command '#{command}': #{message}")
|
64
64
|
end
|
65
65
|
|
66
|
-
|
66
|
+
# needs else branch coverage
|
67
|
+
output.chomp if output # rubocop:disable Style/SafeNavigation
|
67
68
|
end
|
68
69
|
|
69
70
|
# TODO: Open3 defers the actual execution of a binary to Process.spawn,
|
@@ -62,7 +62,7 @@ module NewRelic
|
|
62
62
|
#
|
63
63
|
# Can't help if the constant isn't a class...
|
64
64
|
if result.is_a?(Module)
|
65
|
-
expected_name = "#{namespace}::#{name}".gsub(/^Object::/,
|
65
|
+
expected_name = "#{namespace}::#{name}".gsub(/^Object::/, '')
|
66
66
|
return unless expected_name == result.to_s
|
67
67
|
end
|
68
68
|
|
@@ -26,12 +26,12 @@ EOS
|
|
26
26
|
# * This is a patch item (3.7.1.188)
|
27
27
|
def self.read_patch(patch_level, changelog = default_changelog)
|
28
28
|
latest = extract_latest_changes(File.read(changelog))
|
29
|
-
changes = ["## v#{patch_level}",
|
29
|
+
changes = ["## v#{patch_level}", '']
|
30
30
|
|
31
31
|
current_item = nil
|
32
32
|
latest.each do |line|
|
33
|
-
if
|
34
|
-
if
|
33
|
+
if /^\s*\*.*/.match?(line)
|
34
|
+
if /\(#{patch_level}\)/.match?(line)
|
35
35
|
# Found a patch level item, so start tracking the lines!
|
36
36
|
current_item = line
|
37
37
|
else
|
@@ -52,12 +52,12 @@ EOS
|
|
52
52
|
changes = []
|
53
53
|
version_count = 0
|
54
54
|
contents.each_line do |line|
|
55
|
-
if
|
55
|
+
if /##\s+v[\d.]+/.match?(line)
|
56
56
|
version_count += 1
|
57
57
|
end
|
58
58
|
break if version_count >= 2
|
59
59
|
|
60
|
-
changes << line.sub(/^ \* /,
|
60
|
+
changes << line.sub(/^ \* /, '* ').chomp
|
61
61
|
end
|
62
62
|
changes
|
63
63
|
end
|
@@ -15,18 +15,20 @@ class NewRelic::NoticedError
|
|
15
15
|
:stack_trace, :attributes_from_notice_error, :attributes,
|
16
16
|
:expected
|
17
17
|
|
18
|
-
attr_reader :exception_id, :is_internal
|
18
|
+
attr_reader :error_group, :exception_id, :is_internal
|
19
19
|
|
20
20
|
STRIPPED_EXCEPTION_REPLACEMENT_MESSAGE = "Message removed by New Relic 'strip_exception_messages' setting"
|
21
21
|
UNKNOWN_ERROR_CLASS_NAME = 'Error'
|
22
22
|
NIL_ERROR_MESSAGE = '<no message>'
|
23
23
|
|
24
|
-
USER_ATTRIBUTES =
|
25
|
-
AGENT_ATTRIBUTES =
|
26
|
-
INTRINSIC_ATTRIBUTES =
|
24
|
+
USER_ATTRIBUTES = 'userAttributes'
|
25
|
+
AGENT_ATTRIBUTES = 'agentAttributes'
|
26
|
+
INTRINSIC_ATTRIBUTES = 'intrinsics'
|
27
27
|
|
28
28
|
DESTINATION = NewRelic::Agent::AttributeFilter::DST_ERROR_COLLECTOR
|
29
29
|
|
30
|
+
AGENT_ATTRIBUTE_ERROR_GROUP = :'error.group.name'
|
31
|
+
|
30
32
|
ERROR_PREFIX_KEY = 'error'
|
31
33
|
ERROR_MESSAGE_KEY = "#{ERROR_PREFIX_KEY}.message"
|
32
34
|
ERROR_CLASS_KEY = "#{ERROR_PREFIX_KEY}.class"
|
@@ -141,21 +143,9 @@ class NewRelic::NoticedError
|
|
141
143
|
end
|
142
144
|
|
143
145
|
def build_agent_attributes(merged_attributes)
|
144
|
-
|
145
|
-
@attributes.agent_attributes_for(DESTINATION)
|
146
|
-
else
|
147
|
-
NewRelic::EMPTY_HASH
|
148
|
-
end
|
149
|
-
|
150
|
-
# It's possible to override the request_uri from the transaction attributes
|
151
|
-
# with a uri passed to notice_error. Add it to merged_attributes filter and
|
152
|
-
# merge with the transaction attributes, possibly overriding the request_uri
|
153
|
-
if request_uri
|
154
|
-
merged_attributes.add_agent_attribute(:'request.uri', request_uri, DESTINATION)
|
155
|
-
agent_attributes.merge(merged_attributes.agent_attributes_for(DESTINATION))
|
156
|
-
end
|
146
|
+
return NewRelic::EMPTY_HASH unless @attributes
|
157
147
|
|
158
|
-
|
148
|
+
@attributes.agent_attributes_for(DESTINATION)
|
159
149
|
end
|
160
150
|
|
161
151
|
def build_intrinsic_attributes
|
@@ -197,4 +187,16 @@ class NewRelic::NoticedError
|
|
197
187
|
@message = exception.to_s
|
198
188
|
end
|
199
189
|
end
|
190
|
+
|
191
|
+
def error_group=(name)
|
192
|
+
return if name.nil? || name.empty?
|
193
|
+
|
194
|
+
if agent_attributes.frozen?
|
195
|
+
processed_attributes[AGENT_ATTRIBUTES] = agent_attributes.merge(AGENT_ATTRIBUTE_ERROR_GROUP => name)
|
196
|
+
else
|
197
|
+
agent_attributes[AGENT_ATTRIBUTE_ERROR_GROUP] = name
|
198
|
+
end
|
199
|
+
|
200
|
+
@error_group = name
|
201
|
+
end
|
200
202
|
end
|