express-status-monitor
Version:
Realtime Monitoring for Express-based Node applications
36 lines (35 loc) • 567 B
JavaScript
module.exports = {
title: 'Express Status',
theme: 'default.css',
path: '/status',
socketPath: '/socket.io',
spans: [
{
interval: 1,
retention: 60,
},
{
interval: 5,
retention: 60,
},
{
interval: 15,
retention: 60,
},
],
port: null,
websocket: null,
iframe: false,
chartVisibility: {
cpu: true,
mem: true,
load: true,
heap: true,
eventLoop: true,
responseTime: true,
rps: true,
statusCodes: true,
},
ignoreStartsWith: '/admin',
healthChecks: [],
};