Skip to content

RafaelGSS/open-apm-sdk-node

Repository files navigation

Open-APM SDK for NodeJS.

Open-APM is an lightweight APM for NodeJS. Allows you to observe NodeJS application to perform workload tests for improve the app.

Usage

import agent from '../index';
agent.start();

agent.wrap(functionExample)();
console.log('done!')

function functionExample() {
  // ...
}

or Async

import agent from '../index';
agent.start();

agent.wrap(functionExample, 'functionExample', true)().then(() => console.log('done!'));

async function functionExample() {
  // ...
}

Check the examples folder for more information.

About

Open APM SDK for NodeJS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published