Skip to content

Commit

Permalink
Prerelease 9.15.0-pre (#2927)
Browse files Browse the repository at this point in the history
* bump version

---------

Co-authored-by: newrelic-ruby-agent-bot <[email protected]>
Co-authored-by: Hannah Ramadan <[email protected]>
  • Loading branch information
3 people authored Oct 30, 2024
1 parent c3bc266 commit e1b035f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# New Relic Ruby Agent Release Notes

## dev
## v9.15.0

Version <dev> updates View Componment instrumentation to use a default metric name when one is unavailable, adds a configuration option to associate the AWS account ID with the DynamoDB calls from the AWS SDK, resolves a bug in rdkafka instrumentation when using the karafka-rdkafka gem, resolves a bug in the ruby-kafka instrumentation, fixes a bug with Grape instrumentation, and addresses a bug preventing the agent from running in serverless mode in an AWS Lambda layer.
Version 9.15.0 updates View Componment instrumentation to use a default metric name when one is unavailable, adds a configuration option to associate the AWS account ID with the DynamoDB calls from the AWS SDK, resolves a bug in rdkafka instrumentation when using the karafka-rdkafka gem, resolves a bug in the ruby-kafka instrumentation, fixes a bug with Grape instrumentation, and addresses a bug preventing the agent from running in serverless mode in an AWS Lambda layer.

- **Feature: New configuration option cloud.aws.account_id**

Expand Down
2 changes: 1 addition & 1 deletion lib/new_relic/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
module NewRelic
module VERSION # :nodoc:
MAJOR = 9
MINOR = 14
MINOR = 15
TINY = 0

STRING = "#{MAJOR}.#{MINOR}.#{TINY}"
Expand Down
13 changes: 8 additions & 5 deletions newrelic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ common: &default_settings
# audit_log.path: log/newrelic_audit.log

# An array of CLASS#METHOD (for instance methods) and/or CLASS.METHOD (for class
# methods) strings representing Ruby methods for the agent to automatically add
# custom instrumentation to without the need for altering any of the source code
# that defines the methods.
# methods) strings representing Ruby methods for the agent to automatically
# add custom instrumentation to without the need for altering any of the
# source code that defines the methods.
#
# Use fully qualified class names (using the :: delimiter) that include any
# module or class namespacing.
Expand All @@ -138,10 +138,10 @@ common: &default_settings
# end
# end
# end
#
#
# Given that source code, the newrelic.yml config file might request
# instrumentation for both of these methods like so:
#
#
# automatic_custom_instrumentation_method_list:
# - MyCompany::Image#render_png
# - MyCompany::User.notify
Expand Down Expand Up @@ -216,6 +216,9 @@ common: &default_settings
# If true, the agent will clear Tracer::State in Agent.drop_buffered_data.
# clear_transaction_state_after_fork: false

# The AWS account ID for the AWS account associated with this app
# cloud.aws.account_id: nil

# If true, the agent will report source code level metrics for traced methods.
# See:
# https://docs.newrelic.com/docs/apm/agents/ruby-agent/features/ruby-codestream-integration/
Expand Down

0 comments on commit e1b035f

Please sign in to comment.