|
| 1 | +# |
| 2 | +# This file configures the New Relic Agent. New Relic monitors Ruby, Java, |
| 3 | +# .NET, PHP, Python, Node, and Go applications with deep visibility and low |
| 4 | +# overhead. For more information, visit www.newrelic.com. |
| 5 | +# |
| 6 | +# Generated February 16, 2020 |
| 7 | +# |
| 8 | +# This configuration file is custom generated for [email protected] |
| 9 | +# |
| 10 | +# For full documentation of agent configuration options, please refer to |
| 11 | +# https://docs.newrelic.com/docs/agents/ruby-agent/installation-configuration/ruby-agent-configuration |
| 12 | + |
| 13 | +common: &default_settings |
| 14 | + # Required license key associated with your New Relic account. |
| 15 | + license_key: eu01xxc4fdf06fbcb3ca00aab6d200b826faNRAL |
| 16 | + |
| 17 | + # Your application name. Renaming here affects where data displays in New |
| 18 | + # Relic. For more details, see https://docs.newrelic.com/docs/apm/new-relic-apm/maintenance/renaming-applications |
| 19 | + app_name: My Application |
| 20 | + |
| 21 | + # To disable the agent regardless of other settings, uncomment the following: |
| 22 | + # agent_enabled: false |
| 23 | + |
| 24 | + # Logging level for log/newrelic_agent.log |
| 25 | + log_level: info |
| 26 | + |
| 27 | + |
| 28 | +# Environment-specific settings are in this section. |
| 29 | +# RAILS_ENV or RACK_ENV (as appropriate) is used to determine the environment. |
| 30 | +# If your application has other named environments, configure them here. |
| 31 | +development: |
| 32 | + <<: *default_settings |
| 33 | + app_name: My Application (Development) |
| 34 | + |
| 35 | +test: |
| 36 | + <<: *default_settings |
| 37 | + # It doesn't make sense to report to New Relic from automated test runs. |
| 38 | + monitor_mode: false |
| 39 | + |
| 40 | +staging: |
| 41 | + <<: *default_settings |
| 42 | + app_name: My Application (Staging) |
| 43 | + |
| 44 | +production: |
| 45 | + <<: *default_settings |
0 commit comments