@boomerang-io/webapp-spa-server
Version:
Webapp Server for React-based SPA w/ client-side routing
29 lines (27 loc) • 784 B
JavaScript
;
/**
* New Relic agent configuration.
*
* See lib/config.default.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: process.env.NEW_RELIC_APP_NAME,
/**
* Your New Relic license key.
*/
license_key: process.env.NEW_RELIC_LICENSE_KEY,
proxy_host: process.env.NEW_RELIC_PROXY_HOST,
proxy_port: process.env.NEW_RELIC_PROXY_PORT,
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",
},
};