Created
March 8, 2016 01:59
-
-
Save satour/277f6e62663a4826e67b to your computer and use it in GitHub Desktop.
Newrelic.yml for heroku app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # For full documentation of agent configuration options, please refer to | |
| # https://docs.newrelic.com/docs/agents/ruby-agent/installation-configuration/ruby-agent-configuration | |
| common: &default_settings | |
| license_key: <%= ENV['NEW_RELIC_LICENSE_KEY'] %> | |
| app_name: <%= ENV['HEROKU_APP_NAME'] %> | |
| log_level: info | |
| development: | |
| <<: *default_settings | |
| developer_mode: true | |
| test: | |
| <<: *default_settings | |
| monitor_mode: false | |
| staging: | |
| <<: *default_settings | |
| production: | |
| <<: *default_settings |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment