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

Add security agent content back to newrelic.yml #2772

Merged
merged 1 commit into from
Jul 24, 2024
Merged
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
24 changes: 24 additions & 0 deletions newrelic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -645,6 +645,28 @@ common: &default_settings
# ignoring specific transactions.
# rules.ignore_url_regexes: []

# BEGIN security agent
#
# NOTE: At this time, the security agent is intended for use only within
# a dedicated security testing environment with data that can tolerate
# modification or deletion. The security agent is available as a
# separate Ruby gem, newrelic_security. It is recommended that this
# separate gem only be introduced to a security testing environment
# by leveraging Bundler grouping like so:
#
# # Gemfile
# gem 'newrelic_rpm' # New Relic APM observability agent
# gem 'newrelic-infinite_tracing' # New Relic Infinite Tracing
#
# group :security do
# gem 'newrelic_security', require: false # New Relic security agent
# end
#
# NOTE: All "security.*" configuration parameters are related only to the
# security agent, and all other configuration parameters that may
# have "security" in the name some where are related to the APM agent.
#

# If true, the security agent is loaded (a Ruby 'require' is performed)
# security.agent.enabled: false

Expand Down Expand Up @@ -675,6 +697,8 @@ common: &default_settings
# Defines the endpoint URL for posting security-related data
# security.validator_service_url: wss://csec.nr-data.net

# END security agent

# Applies Language Agent Security Policy settings.
# security_policies_token: ""

Expand Down
Loading