Node.js APM Troubleshooting Guide

  • 1 minute(s) read
Prev Next

Verify Compatibility

Node Engine Support

  • Stackify supports Node.js version 4.7+

Verify Module Installation

  1. Check your application's node_modules directory, ensure that stackify-node-apm exists.
  2. 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'
}
  1. 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?