-
Notifications
You must be signed in to change notification settings - Fork 600
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into redshift_active_record_adapter
- Loading branch information
Showing
17 changed files
with
1,215 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# This file is distributed under New Relic's license terms. | ||
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. | ||
# frozen_string_literal: true | ||
|
||
require_relative 'aws_sdk_firehose/instrumentation' | ||
require_relative 'aws_sdk_firehose/chain' | ||
require_relative 'aws_sdk_firehose/prepend' | ||
|
||
DependencyDetection.defer do | ||
named :aws_sdk_firehose | ||
|
||
depends_on do | ||
defined?(Aws::Firehose::Client) | ||
end | ||
executes do | ||
if use_prepend? | ||
prepend_instrument Aws::Firehose::Client, NewRelic::Agent::Instrumentation::Firehose::Prepend | ||
else | ||
chain_instrument NewRelic::Agent::Instrumentation::Firehose::Chain | ||
end | ||
end | ||
end |
21 changes: 21 additions & 0 deletions
21
lib/new_relic/agent/instrumentation/aws_sdk_firehose/chain.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# This file is distributed under New Relic's license terms. | ||
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. | ||
# frozen_string_literal: true | ||
|
||
module NewRelic::Agent::Instrumentation | ||
module Firehose::Chain | ||
def self.instrument! | ||
::Aws::Firehose::Client.class_eval do | ||
include NewRelic::Agent::Instrumentation::Firehose | ||
|
||
NewRelic::Agent::Instrumentation::Firehose::INSTRUMENTED_METHODS.each do |method_name| | ||
alias_method("#{method_name}_without_new_relic".to_sym, method_name.to_sym) | ||
|
||
define_method(method_name) do |*args| | ||
instrument_method_with_new_relic(method_name, *args) { send("#{method_name}_without_new_relic".to_sym, *args) } | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
66 changes: 66 additions & 0 deletions
66
lib/new_relic/agent/instrumentation/aws_sdk_firehose/instrumentation.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# This file is distributed under New Relic's license terms. | ||
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. | ||
# frozen_string_literal: true | ||
|
||
module NewRelic::Agent::Instrumentation | ||
module Firehose | ||
INSTRUMENTED_METHODS = %w[ | ||
create_delivery_stream | ||
delete_delivery_stream | ||
describe_delivery_stream | ||
list_delivery_streams | ||
list_tags_for_delivery_stream | ||
put_record | ||
put_record_batch | ||
start_delivery_stream_encryption | ||
stop_delivery_stream_encryption | ||
tag_delivery_stream | ||
untag_delivery_stream | ||
update_destination | ||
].freeze | ||
|
||
FIREHOSE = 'Firehose' | ||
AWS_KINESIS_DELIVERY_STREAMS = 'aws_kinesis_delivery_streams' | ||
|
||
def instrument_method_with_new_relic(method_name, *args) | ||
return yield unless NewRelic::Agent::Tracer.tracing_enabled? | ||
|
||
NewRelic::Agent.record_instrumentation_invocation(FIREHOSE) | ||
|
||
params = args[0] | ||
segment = NewRelic::Agent::Tracer.start_segment(name: get_segment_name(method_name, params)) | ||
arn = get_arn(params) if params | ||
segment&.add_agent_attribute('cloud.resource_id', arn) if arn | ||
|
||
begin | ||
NewRelic::Agent::Tracer.capture_segment_error(segment) { yield } | ||
ensure | ||
segment&.add_agent_attribute('cloud.platform', AWS_KINESIS_DELIVERY_STREAMS) | ||
segment&.finish | ||
end | ||
end | ||
|
||
def get_segment_name(method_name, params) | ||
stream_name = params&.dig(:delivery_stream_name) | ||
return "#{FIREHOSE}/#{method_name}/#{stream_name}" if stream_name | ||
|
||
"#{FIREHOSE}/#{method_name}" | ||
rescue => e | ||
NewRelic::Agent.logger.warn("Failed to create segment name: #{e}") | ||
end | ||
|
||
def nr_account_id | ||
return @nr_account_id if defined?(@nr_account_id) | ||
|
||
@nr_account_id = NewRelic::Agent::Aws.get_account_id(config) | ||
end | ||
|
||
def get_arn(params) | ||
stream_arn = params&.dig(:delivery_stream_arn) | ||
return stream_arn if stream_arn | ||
|
||
stream_name = params&.dig(:delivery_stream_name) | ||
NewRelic::Agent::Aws.create_arn(FIREHOSE.downcase, "deliverystream/#{stream_name}", config&.region, nr_account_id) if stream_name | ||
end | ||
end | ||
end |
15 changes: 15 additions & 0 deletions
15
lib/new_relic/agent/instrumentation/aws_sdk_firehose/prepend.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This file is distributed under New Relic's license terms. | ||
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. | ||
# frozen_string_literal: true | ||
|
||
module NewRelic::Agent::Instrumentation | ||
module Firehose::Prepend | ||
include NewRelic::Agent::Instrumentation::Firehose | ||
|
||
INSTRUMENTED_METHODS.each do |method_name| | ||
define_method(method_name) do |*args| | ||
instrument_method_with_new_relic(method_name, *args) { super(*args) } | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# This file is distributed under New Relic's license terms. | ||
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. | ||
# frozen_string_literal: true | ||
|
||
require_relative 'aws_sdk_kinesis/instrumentation' | ||
require_relative 'aws_sdk_kinesis/chain' | ||
require_relative 'aws_sdk_kinesis/prepend' | ||
|
||
DependencyDetection.defer do | ||
named :aws_sdk_kinesis | ||
|
||
depends_on do | ||
defined?(Aws::Kinesis::Client) | ||
end | ||
executes do | ||
if use_prepend? | ||
prepend_instrument Aws::Kinesis::Client, NewRelic::Agent::Instrumentation::Kinesis::Prepend | ||
else | ||
chain_instrument NewRelic::Agent::Instrumentation::Kinesis::Chain | ||
end | ||
end | ||
end |
21 changes: 21 additions & 0 deletions
21
lib/new_relic/agent/instrumentation/aws_sdk_kinesis/chain.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# This file is distributed under New Relic's license terms. | ||
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. | ||
# frozen_string_literal: true | ||
|
||
module NewRelic::Agent::Instrumentation | ||
module Kinesis::Chain | ||
def self.instrument! | ||
::Aws::Kinesis::Client.class_eval do | ||
include NewRelic::Agent::Instrumentation::Kinesis | ||
|
||
NewRelic::Agent::Instrumentation::Kinesis::INSTRUMENTED_METHODS.each do |method_name| | ||
alias_method("#{method_name}_without_new_relic".to_sym, method_name.to_sym) | ||
|
||
define_method(method_name) do |*args| | ||
instrument_method_with_new_relic(method_name, *args) { send("#{method_name}_without_new_relic".to_sym, *args) } | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
91 changes: 91 additions & 0 deletions
91
lib/new_relic/agent/instrumentation/aws_sdk_kinesis/instrumentation.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
# This file is distributed under New Relic's license terms. | ||
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. | ||
# frozen_string_literal: true | ||
|
||
module NewRelic::Agent::Instrumentation | ||
module Kinesis | ||
INSTRUMENTED_METHODS = %w[ | ||
add_tags_to_stream | ||
create_stream | ||
decrease_stream_retention_period | ||
delete_stream | ||
describe_limits | ||
describe_stream | ||
disable_enhanced_monitoring | ||
enable_enhanced_monitoring | ||
get_records | ||
get_shard_iterator | ||
increase_stream_retention_period | ||
list_streams | ||
list_tags_for_stream | ||
merge_shards | ||
put_record | ||
put_records | ||
remove_tags_from_stream | ||
split_shard | ||
update_shard_count | ||
].freeze | ||
|
||
KINESIS = 'Kinesis' | ||
AWS_KINESIS_DATA_STREAMS = 'aws_kinesis_data_streams' | ||
MESSAGE_BROKER_SEGMENT_METHODS = %w[put_record put_records get_records].freeze | ||
|
||
def instrument_method_with_new_relic(method_name, *args) | ||
return yield unless NewRelic::Agent::Tracer.tracing_enabled? | ||
|
||
NewRelic::Agent.record_instrumentation_invocation(KINESIS) | ||
params = args[0] | ||
arn = get_arn(params) if params | ||
|
||
if MESSAGE_BROKER_SEGMENT_METHODS.include?(method_name) | ||
stream_name = get_stream_name(params, arn) | ||
segment = NewRelic::Agent::Tracer.start_message_broker_segment( | ||
action: method_name == 'get_records' ? :consume : :produce, | ||
library: KINESIS, | ||
destination_type: :stream, | ||
destination_name: stream_name | ||
) | ||
else | ||
segment = NewRelic::Agent::Tracer.start_segment(name: get_segment_name(method_name, params)) | ||
end | ||
|
||
segment&.add_agent_attribute('cloud.resource_id', arn) if arn | ||
|
||
begin | ||
NewRelic::Agent::Tracer.capture_segment_error(segment) { yield } | ||
ensure | ||
segment&.add_agent_attribute('cloud.platform', AWS_KINESIS_DATA_STREAMS) | ||
segment&.finish | ||
end | ||
end | ||
|
||
def get_segment_name(method_name, params) | ||
stream_name = params&.dig(:stream_name) | ||
return "#{KINESIS}/#{method_name}/#{stream_name}" if stream_name | ||
|
||
"#{KINESIS}/#{method_name}" | ||
rescue => e | ||
NewRelic::Agent.logger.warn("Failed to create segment name: #{e}") | ||
end | ||
|
||
def get_stream_name(params, arn) | ||
params&.dig(:stream_name) || arn.split('/').last || 'unknown' | ||
rescue => e | ||
NewRelic::Agent.logger.warn("Failed to get stream name: #{e}") | ||
end | ||
|
||
def nr_account_id | ||
return @nr_account_id if defined?(@nr_account_id) | ||
|
||
@nr_account_id = NewRelic::Agent::Aws.get_account_id(config) | ||
end | ||
|
||
def get_arn(params) | ||
stream_arn = params&.dig(:stream_arn) | ||
return stream_arn if stream_arn | ||
|
||
stream_name = params&.dig(:stream_name) | ||
NewRelic::Agent::Aws.create_arn(KINESIS.downcase, "stream/#{stream_name}", config&.region, nr_account_id) if stream_name | ||
end | ||
end | ||
end |
15 changes: 15 additions & 0 deletions
15
lib/new_relic/agent/instrumentation/aws_sdk_kinesis/prepend.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This file is distributed under New Relic's license terms. | ||
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. | ||
# frozen_string_literal: true | ||
|
||
module NewRelic::Agent::Instrumentation | ||
module Kinesis::Prepend | ||
include NewRelic::Agent::Instrumentation::Kinesis | ||
|
||
INSTRUMENTED_METHODS.each do |method_name| | ||
define_method(method_name) do |*args| | ||
instrument_method_with_new_relic(method_name, *args) { super(*args) } | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# This file is distributed under New Relic's license terms. | ||
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. | ||
# frozen_string_literal: true | ||
|
||
instrumentation_methods :chain, :prepend | ||
|
||
gemfile <<~RB | ||
gem 'aws-sdk-firehose' | ||
RB |
19 changes: 19 additions & 0 deletions
19
test/multiverse/suites/aws_sdk_firehose/config/newrelic.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
development: | ||
error_collector: | ||
enabled: true | ||
apdex_t: 0.5 | ||
monitor_mode: true | ||
license_key: bootstrap_newrelic_admin_license_key_000 | ||
instrumentation: | ||
aws_sdk_firehose: <%= $instrumentation_method %> | ||
app_name: test | ||
log_level: debug | ||
host: 127.0.0.1 | ||
api_host: 127.0.0.1 | ||
transaction_trace: | ||
record_sql: obfuscated | ||
enabled: true | ||
stack_trace_threshold: 0.5 | ||
transaction_threshold: 1.0 | ||
capture_params: false |
Oops, something went wrong.