add new relic and potentially fix the challenges controller

This commit is contained in:
Michael Q Larson
2014-11-17 19:26:55 -08:00
parent ec9316afee
commit 0fbee8bad3
3 changed files with 39 additions and 4 deletions

24
newrelic.js Normal file
View File

@@ -0,0 +1,24 @@
/**
* New Relic agent configuration.
*
* See lib/config.defaults.js in the agent distribution for a more complete
* description of configuration variables and their potential values.
*/
exports.config = {
/**
* Array of application names.
*/
app_name : ['freecodecamp'],
/**
* Your New Relic license key.
*/
license_key : '4b88e7cef87e9e99728be2d36c4d5f2a3862f5ae',
logging : {
/**
* Level at which to log. 'trace' is most useful to New Relic when diagnosing
* issues with the agent, 'info' and higher will impose the least overhead on
* production applications.
*/
level : 'info'
}
};