Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prerelease 9.13.0-pre #2827

Merged
merged 1 commit into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.13.0

Version <dev> enhances support for AWS Lambda functions, adds experimental OpenSearch instrumentation, updates framework detection, silences a Bundler deprecation warning, fixes Falcon dispatcher detection, fixes a bug with Redis instrumentation installation, and addresses a JRuby-specific concurrency issue.
Version 9.13.0 enhances support for AWS Lambda functions, adds experimental OpenSearch instrumentation, updates framework detection, silences a Bundler deprecation warning, fixes Falcon dispatcher detection, fixes a bug with Redis instrumentation installation, and addresses a JRuby-specific concurrency issue.

- **Feature: Enhance AWS Lambda function instrumentation**

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 = 12
MINOR = 13
TINY = 0

STRING = "#{MAJOR}.#{MINOR}.#{TINY}"
Expand Down
10 changes: 10 additions & 0 deletions newrelic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,10 @@ common: &default_settings
# prepend, chain, disabled.
# instrumentation.net_http: auto

# Controls auto-instrumentation of the opensearch-ruby library at start-up. May
# be one of auto, prepend, chain, disabled.
# instrumentation.opensearch: auto

# Controls auto-instrumentation of Puma::Rack. When enabled, the agent hooks
# into the to_app method in Puma::Rack::Builder to find gems to instrument
# during application startup. May be one of: auto, prepend, chain, disabled.
Expand Down Expand Up @@ -607,6 +611,12 @@ common: &default_settings
# When true, the agent transmits data about your app to the New Relic collector.
# monitor_mode: true

# If true, the agent captures OpenSearch queries in transaction traces.
# opensearch.capture_queries: true

# If true, the agent obfuscates OpenSearch queries in transaction traces.
# opensearch.obfuscate_queries: true

# If true, uses Module#prepend rather than alias_method for ActiveRecord
# instrumentation.
# prepend_active_record_instrumentation: false
Expand Down