Fast and light weight api and endpoint monitoring backed by Redis and carefully written for performace.
- Url request monitoring
- Easily integratable with Express, Koa, and standard http
- Fast and efficient data storage based on Redis
- Monitoring daily requests
- Moinotring requests per hour
- Monitoring response times
- Custom options
-
An object is made in redis that is defined as an event. An event is a collection of the route, the method, the status code, the number of requests, and date and hour (depending on what key is specified).
-
Redis stores the data per request into three separate keys:
- The total number of requests per event (date and hour are not included here)
- The total number of requests per event per day
- The total number of requests per event per hour of every day.
- The time in milliseconds each event takes per request.
-
Note: These keys are stored by default as key names: 'total', 'daily', 'hourly', and 'response-times'.
$ npm install aegis-net
const express = require('express')
const {AegisNet} = require('aegis-net');
const app = express();
app.use(express.json());
const aegis = new AegisNet;
app.use(aegis.express())
const koa = require('koa');
const {AegisNet} = require('aegis-net');
const router = require('@koa/router');
const app = new koa();
const router = new Router();
app.use(aegis.koa());
const http = require('http');
const {AegisNet} = require('aegis-net');
const server = http.createServer((req, res) => {
// server code here
aegis.http(req, res);
});
server.listen(3000, () => "Listening");
const express = require('express')
const {AegisNet} = require('aegis-net');
const app = express();
app.use(express.json());
const aegis = new AegisNet;
app.use(aegis.express({port: 6379, host: 'localhost', dailyKey: "foo"}))
app.get('/api/users', (_, res) => {
// note: Redis will store the data as a JSON string
// so it's important you parse after you retrieve it first to work with it.
client.get('total', (err, stats) => {
res.status(200).send(stats);
});
});
options | about | type |
---|---|---|
port | Redis port number | number |
host | Redis host | string |
totalKey | Key name for total requests, defaults to "total" | string |
dailyKey | Key name for daily requests, defaults to "daily" | string |
hourlyKey | Key name for hourly requests, defaults to "hourly" | string |
responseKey | Key name for response-time key, defaults to "response-times" | string |
[ { "method": "GET", "route": "/api/users", "statusCode": 200, "requests": 10 }]
[ { "method": "POST", "route": "/api/users", "statusCode": 200, "requests": 5, "date": "9/20/2020" }]
[ { "method": "GET", "route": "/api/users", "statusCode": 304, "requests": 2, "date": "9/20/2020", "hour": "12" }]
- It is very important you initialize the middleware before any of your routes or custom middleware. If you don't do this, you may find some unkown error. Further testing with it is required.
- Any unkown request sent to the server will send the event with route of "unkown route".
Look at how to contribute to see how you can contribute to this project.