Skip to content

Latest commit

 

History

History
executable file
·
43 lines (32 loc) · 1.45 KB

README.md

File metadata and controls

executable file
·
43 lines (32 loc) · 1.45 KB

sails-hook-newrelic

Build Status Dependency status Dev Dependencies Status NPM Status Gittip

Integrates newrelic with your Sails application

Install

Note: This library requires sails >= 0.11.0

npm install sails-hook-newrelic

Usage

  1. Setup your newrelic connection in config/newrelic following the rules of newrelic package like:
module.exports.newrelic = {
  app_name: ['your-app-name'],
  license_key: 'your-license-key',
  logging: {
    level: 'warn', // can be error, warn, info, debug or trace
    rules: {
      ignore: ['^/socket.io/*/xhr-polling']
    }
  }
};
  1. add the following line in the first line of your app.js:
require('sails-hook-newrelic/register');

License

MIT © Kiko Beats