Skip to content

Commit

Permalink
Added RPM tracking code
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Pulver committed Nov 27, 2013
1 parent 26e092a commit 6487141
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions newrelic.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/**
* 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 : ['glitxt'],
/**
* Your New Relic license key.
*/
license_key : '7b422b4aba01d9a7bb17eb9510f8153ddf6f7dfd',
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 : 'trace'
}
};
1 change: 1 addition & 0 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
/**
* Module dependencies.
*/
require('newrelic');
var bunyan = require('bunyan');
var restify = require('restify');
var routes = require('./routes');
Expand Down

0 comments on commit 6487141

Please sign in to comment.