18F/team-api-server

View on GitHub
newrelic.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * 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.
 */
const env = require('./lib/env');

exports.config = {
  /**
   * Array of application names.
   */
  app_name: [env.NEW_RELIC_APP_NAME],
  /**
   * Your New Relic license key.
   */
  license_key: env.NEW_RELIC_LICENSE_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',
  },
};