1.1.0 • Published 6 months ago

@subbul/express-plugin v1.1.0

Weekly downloads
-
License
-
Repository
-
Last release
6 months ago

Subbul Express Plugin

Express plugin for Subbul - track your APIs core metrics with a few lines of code.

Overview

Plug in the SDK into your Express application and instantly start tracking metrics such as

  • Response times
  • Requests per minute
  • HTTP Status Codes
  • Custom metrics

Once you are tracking your metrics, create alarms against them using the Subbul dashboard.

Quick start

import express from 'express';
import { Subbul, SubbulAllMetricsMiddleware } from '@subbul/express-plugin';

const app = express();

const subbul = Subbul({
  licenseKey: '<LICENSE_KEY>'
});

subbul.use(SubbulAllMetricsMiddleware());

await subbul.configure({ app });

app.get('/', (req, res) => {
  res.send('Hello World!')
})

app.listen('3000', () => {
  console.log('App started on port 3000')
})

Documentation

Visit the documentation for an extensive overview of this package.

1.1.0

6 months ago

1.0.1

9 months ago

1.0.0-canary.2

11 months ago

1.0.0-canary.3

10 months ago

1.0.0-canary.1

11 months ago

1.0.0-canary.0

11 months ago