nest-status-monitor
Simple, self-hosted module based on Socket.io and Chart.js to report realtime server metrics for Nest.js based node servers.
Demo
Demo can be found here
Installation & setup Nest.js v6
- Run
npm install nest-status-monitor --save
- Setup module:
@
- Run server and go to
/status
Installation & setup Nest.js v5
- Run
npm install nest-status-monitor@0.0.3 --save
- Setup module:
@
- Run server and go to
/status
Run examples
- Go to
cd examples/test-status-monitor
- Run
npm i
- Run server
npm start
- Go to
http://localhost:3001
Options
Monitor can be configured by passing options object during initialization of module.
Default config:
pageTitle: 'Nest.js Monitoring Page'port: 3001path: '/status'ignoreStartsWith: '/health/alive'spans: interval: 1 // Every second retention: 60 // Keep 60 datapoints in memory interval: 5 // Every 5 seconds retention: 60 interval: 15 // Every 15 seconds retention: 60 chartVisibility: cpu: true mem: true load: true responseTime: true rps: true statusCodes: truehealthChecks:
Health Checks
You can add a series of health checks to the configuration that will appear below the other stats. The health check will be considered successful if the endpoint returns a 200 status code.
// confighealthChecks: protocol: 'http' host: 'localhost' path: '/health/alive' port: 3001 protocol: 'http' host: 'localhost' path: '/health/dead' port: 3001 ;
License
MIT License © Ivan Vasiljevic
Forked from express-status-monitor