admin-plugin-healthcheck

1.1.0 • Public • Published

admin-plugin-healthcheck   Node.js admin plugin system js-semistandard-style

Contents

Installation

npm install --save admin-plugin-healthcheck

Usage

admin.configure({
  plugins: [
    require('admin-plugin-healthcheck')({
      checks: {
        random() {
          const v = Math.random();
          if (> 0.8) {
            throw new Error('Random value >0.8');
          } else if (> 0.3) {
            return "Healthy like an application that isn't used.";
          } else {
            return Promise.reject('Something bad happened here…');
          }
        }
      }
    })
  ]
});

Dependencies (1)

Dev Dependencies (1)

Package Sidebar

Install

npm i admin-plugin-healthcheck

Weekly Downloads

74

Version

1.1.0

License

MIT

Last publish

Collaborators

  • bripkens