mirror of
https://github.com/koodiklinikka/koodiklinikka.fi-api.git
synced 2026-01-26 11:44:12 +00:00
20 lines
464 B
JavaScript
20 lines
464 B
JavaScript
var config = require('./lib/config');
|
|
exports.config = {
|
|
/**
|
|
* Array of application names.
|
|
*/
|
|
app_name: ['My Application'],
|
|
/**
|
|
* 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'
|
|
}
|
|
}
|