admin-plugin-healthcheck
v1.1.0
Published
Plugin adds a healthcheck endpoint to the admin interface
Downloads
329
Maintainers
Readme
admin-plugin-healthcheck
Contents
Installation
npm install --save admin-plugin-healthcheck
Usage
admin.configure({
plugins: [
require('admin-plugin-healthcheck')({
checks: {
random() {
const v = Math.random();
if (v > 0.8) {
throw new Error('Random value >0.8');
} else if (v > 0.3) {
return "Healthy like an application that isn't used.";
} else {
return Promise.reject('Something bad happened here…');
}
}
}
})
]
});