@appsignal/koa
The AppSignal for Node.js integration for Koa (koa
) v2.0.0+.
Installation
First, sign up for an AppSignal account and add both the @appsignal/nodejs
and @appsignal/koa
packages to your package.json
. Then, run yarn install
/npm install
.
You can also add these packages to your package.json
on the command line:
yarn add @appsignal/nodejs @appsignal/koa
npm install --save @appsignal/nodejs @appsignal/koa
You can then import and use the package in your app.
Usage
The module includes an AppSignal intrumentation plugin for automatically instrumenting the middlewares or routes of your application.
const { Appsignal } = require("@appsignal/nodejs");
const appsignal = new Appsignal({
active: true,
name: "<YOUR APPLICATION NAME>",
pushApiKey: "<YOUR API KEY>"
});
appsignal.instrument(require("@appsignal/koa"));
const Koa = require("koa");
const Router = require("@koa/router");
app.on("error", (error) => {
appsignal
.tracer()
.setError(error)
});
const app = new Koa();
Contributing
Thinking of contributing to this repo? Awesome! 🚀
Please follow our Contributing guide in our documentation and follow our Code of Conduct.
Also, we would be very happy to send you Stroopwafles. Have look at everyone we send a package to so far on our Stroopwafles page.
Support
Contact us and speak directly with the engineers working on AppSignal. They will help you get set up, tweak your code and make sure you get the most out of using AppSignal.