/ newrelic.js
newrelic.js
 1  /**
 2   * New Relic agent configuration.
 3   *
 4   * See lib/config.defaults.js in the agent distribution for a more complete
 5   * description of configuration variables and their potential values.
 6   */
 7  exports.config = {
 8    /**
 9     * Array of application names.
10     */
11    app_name : ['ethdev'],
12    /**
13     * Your New Relic license key.
14     */
15    license_key : process.env.NEWRELIC_LICENSE_KEY,
16    logging : {
17      /**
18       * Level at which to log. 'trace' is most useful to New Relic when diagnosing
19       * issues with the agent, 'info' and higher will impose the least overhead on
20       * production applications.
21       */
22      level : 'info'
23    }
24  };