mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
24 lines
641 B
JavaScript
24 lines
641 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: ['Nylas K2 Sync'],
|
|
/**
|
|
* Your New Relic license key.
|
|
*/
|
|
license_key: 'e232d6ccc786bd87aa72b86782439710162e3739',
|
|
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',
|
|
},
|
|
}
|