Node.js APM Troubleshooting Guide
- 1 Minute to read
- Print
- DarkLight
- PDF
Node.js APM Troubleshooting Guide
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Verify Compatibility
Node Engine Support
- Stackify supports Node.js version 4.7+
Verify Module Installation
- Check your application's
node_modules
directory, ensure thatstackify-node-apm
exists. - Verify
stackify.js
exists 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')
Was this article helpful?