|
| 1 | +# |
| 2 | +# This file configures the New Relic Agent. New Relic monitors Ruby, Java, |
| 3 | +# .NET, PHP, Python and Node applications with deep visibility and low |
| 4 | +# overhead. For more information, visit www.newrelic.com. |
| 5 | +# |
| 6 | +# Generated October 21, 2017 |
| 7 | +# |
| 8 | +# This configuration file is custom generated for HELL Labs |
| 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: <%= ENV['NEW_RELIC_LICENSE_KEY'] %> |
| 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: Project Playtime |
| 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: Project Playtime (Development) |
| 34 | + monitor_mode: false |
| 35 | + |
| 36 | +test: |
| 37 | + <<: *default_settings |
| 38 | + monitor_mode: false |
| 39 | + |
| 40 | +staging: |
| 41 | + <<: *default_settings |
| 42 | + app_name: Project Playtime (Staging) |
| 43 | + monitor_mode: true |
| 44 | + |
| 45 | +production: |
| 46 | + <<: *default_settings |
| 47 | + app_name: Project Playtime (Production) |
| 48 | + monitor_mode: true |
0 commit comments