Files
habitica/newrelic.js
Matteo Pagliazzi f4d66c7384 config newrelic
2016-02-21 22:30:25 +01:00

28 lines
671 B
JavaScript

var nconf = require('nconf');
/**
* 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: ['Habitica'],
/**
* Your New Relic license key.
*/
license_key: nconf.get('NEW_RELIC_LICENSE_KEY'),
ssl: false,
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'
}
}