Verify Compatibility
Node Engine Support
- Stackify supports Node.js version 4.7+
Verify Module Installation
- Check your application's
node_modulesdirectory, ensure thatstackify-node-apmexists. - Verify
stackify.jsexists in your application's root directory.
/**
* Stackify Node APM Configuration
*/
exports.config = {
/**
* Your application name.
*/
application_name: 'Node Application',
/**
* Your environment name.
*/
environment_name: 'Production'
}
- Verify that you have included the stackify module at the top of your application's main module.
require('stackify-node-apm')