Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pm2-check-express

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pm2-check-express

Add endpoints to Express to check health of system

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

pm2-check-express

Create express endpoints for health check and stats with pm2

Install

$ npm install --save pm2-check-express

Usage

const express = require('express');
const app = express();
const pm2CheckRoutes = require('pm2-check-express');

app.use('/', function(req, res, next) {
  //
});

pm2CheckRoutes(app, {
  healthUrl: '/health',
  statsUrl: '/stats',
  timestampFormat: 'MM/DD/YY h:mm:ss a'
});

This will expose:

  • /health route which returns 200 if all processes are online or 500 if any process is not online

  • /stats route which returns a hash of stats:

    {
      healthy: true, // same as the /health route, but `true/false`
      system: {
        freeMemory: '2048.00MB',
        totalMemory: '4096.00MB',
        usedMemory: '2048.00MB',
        usedMemoryPercent: 50.00,
        cpuPercent: .36
      },
      processes: [
        pid: 12345,
        name: 'server',
        instances: 1,
        status: 'online',
        lastStart: '07/04/2016 7:22 am',
        lastStartAgo: '5 days ago',
        firstStart: '07/01/2016 6:44 pm',
        firstStartAgo: '8 days ago',
        httpLatency: 155,
        loopDelay: {},
        restarts: 1,
        memory: 22,
        cpu: 12
      }
    

Keywords

FAQs

Package last updated on 09 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc