1.0.0 • Published 8 months ago

@middleware.io/node-apm-legacy v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
8 months ago

node-apm-legacy

Middleware Application Performance Monitoring (APM) support for legacy Node.js Applications

Example

const tracker = require('@middleware.io/node-apm-legacy');
tracker.track({
    projectName:"Your application name",
    serviceName:"Your service name",
})

tracker.error(new Error('your error message'));

tracker.info('your info messaege');

tracker.warn('your warning message');

tracker.debug('your debug message');