nodeclub/newrelic.js
2014-08-12 20:10:50 +08:00

26 lines
647 B
JavaScript

var config = require('./config');
/**
* 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: [config.name],
/**
* Your New Relic license key.
*/
license_key: config.newrelic_key,
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'
}
};