From 416feca42e6c9d2dd42a66701bbf2a0ab0374a3e Mon Sep 17 00:00:00 2001 From: Tyler Renelle Date: Thu, 30 Jan 2014 11:52:58 -0700 Subject: [PATCH] chore(newrelic): use license key in accordance with https://docs.newrelic.com/docs/nodejs/nodejs-agent-on-heroku --- config.json.example | 3 ++- newrelic.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/config.json.example b/config.json.example index 5cf560aae6..634d22c7a7 100644 --- a/config.json.example +++ b/config.json.example @@ -13,5 +13,6 @@ "SMTP_SERVICE":"Gmail", "STRIPE_API_KEY":"aaaabbbbccccddddeeeeffff00001111", "STRIPE_PUB_KEY":"22223333444455556666777788889999", - "PAYPAL_MERCHANT":"paypal-merchant@gmail.com" + "PAYPAL_MERCHANT":"paypal-merchant@gmail.com", + "NEW_RELIC_LICENSE_KEY":"NEW_RELIC_LICENSE_KEY" } diff --git a/newrelic.js b/newrelic.js index 48127ad3bc..7763ba2269 100644 --- a/newrelic.js +++ b/newrelic.js @@ -13,7 +13,7 @@ exports.config = { /** * Your New Relic license key. */ - license_key : nconf.get('NEWRELIC'), + license_key : nconf.get('NEW_RELIC_LICENSE_KEY'), logging : { /** * Level at which to log. 'trace' is most useful to New Relic when diagnosing