mirror of
https://github.com/szimek/sharedrop.git
synced 2026-06-05 21:02:47 +08:00
22 lines
535 B
JavaScript
22 lines
535 B
JavaScript
/**
|
|
* 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: ['ShareDrop'],
|
|
|
|
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',
|
|
},
|
|
};
|