Skip to content
This repository was archived by the owner on May 16, 2024. It is now read-only.

Latest commit

 

History

History
21 lines (12 loc) · 357 Bytes

README.md

File metadata and controls

21 lines (12 loc) · 357 Bytes

Middleware Node APM

const tracker = require('@middleware.io/node-apm');
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');