Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gritzkoo/nodejs-health-checker
This is a Node package that allows you to track the health of your application providing readiness and liveness functionalities.
https://github.com/gritzkoo/nodejs-health-checker
hacktoberfest hacktoberfest2020 health-check healthcheck k8s liveness-probe node-typescript nodejs nodemodule npm-package readiness-probe typescript
Last synced: 18 days ago
JSON representation
This is a Node package that allows you to track the health of your application providing readiness and liveness functionalities.
- Host: GitHub
- URL: https://github.com/gritzkoo/nodejs-health-checker
- Owner: gritzkoo
- License: mit
- Created: 2020-09-16T10:10:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-24T15:25:30.000Z (9 months ago)
- Last Synced: 2024-05-01T15:28:48.335Z (8 months ago)
- Topics: hacktoberfest, hacktoberfest2020, health-check, healthcheck, k8s, liveness-probe, node-typescript, nodejs, nodemodule, npm-package, readiness-probe, typescript
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/nodejs-health-checker
- Size: 1.33 MB
- Stars: 43
- Watchers: 4
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# nodejs-health-checker
![npm](https://img.shields.io/npm/dt/nodejs-health-checker?style=for-the-badge)
[![npm version](https://badge.fury.io/js/nodejs-health-checker.svg)](https://badge.fury.io/js/nodejs-health-checker)
![test](https://github.com/gritzkoo/nodejs-health-checker/workflows/test/badge.svg?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/gritzkoo/nodejs-health-checker/badge.svg?branch=master)](https://coveralls.io/github/gritzkoo/nodejs-health-checker?branch=master)
[![License Status](https://img.shields.io/github/license/gritzkoo/nodejs-health-checker)](https://img.shields.io/github/license/gritzkoo/nodejs-health-checker)
[![Issues Status](https://img.shields.io/github/issues/gritzkoo/nodejs-health-checker)](https://img.shields.io/github/issues/gritzkoo/nodejs-health-checker)
[![Tag Status](https://img.shields.io/github/v/tag/gritzkoo/nodejs-health-checker)](https://img.shields.io/github/v/tag/gritzkoo/nodejs-health-checker)
[![Languages Status](https://img.shields.io/github/languages/count/gritzkoo/nodejs-health-checker)](https://img.shields.io/github/languages/count/gritzkoo/nodejs-health-checker)
[![Repo Size Status](https://img.shields.io/github/repo-size/gritzkoo/nodejs-health-checker)](https://img.shields.io/github/repo-size/gritzkoo/nodejs-health-checker)___
## Contributors
![contributors](https://contrib.rocks/image?repo=gritzkoo/nodejs-health-checker)
>Made with [contributors-img](https://contrib.rocks).
___This is a Node package that allows you to track the health of your application, providing two ways of checking:
*__Simple__*: will respond to a JSON as below and that allows you to check if your application is online and responding without checking any kind of integration.
```json
{
"status": "fully functional"
}
```*__Detailed__*: will respond a JSON as below and that allows you to check if your application is up and running and check if all of your integrations informed in the configuration list is up and running.
```json
{
"name": "My node application",
"version": "my version",
"status": true,
"date": "2020-09-18T15:29:41.616Z",
"duration": 0.523,
"integrations": [
{
"name": "redis integration",
"kind": "Redis DB integration",
"status": true,
"response_time": 0.044,
"url": "redis:6379"
},
{
"name": "My memcache integration",
"kind": "Memcached integraton",
"status": true,
"response_time": 0.038,
"url": "memcache:11211"
},
{
"name": "my web api integration",
"kind": "Web integrated API",
"status": true,
"response_time": 0.511,
"url": "https://github.com/status"
},
{
"name": "my dynamo",
"kind": "AWS Dynamo DB",
"status": true,
"response_time": 0.004,
"url": "http://localhost:8000",
}
]
}
```## How to install
```sh
npm i nodejs-health-checker
```## Available integrations
- [x] Redis
- [x] Memcached
- [x] Web integration (https)
- [x] AWS DynamoDB
- [x] Sequelize (authored by @MikeG96)
- [x] Custom integration support (authored by @youngpayters)## How to use
Example using Nodejs + Express
```javascript
import express from "express";
import {
HealthcheckerDetailedCheck,
HealthcheckerSimpleCheck
} from "./healthchecker/healthchecker";
import { Dialects, HealthTypes } from "./interfaces/types";const server = express();
server.get("/health-check/liveness", (_, res) => {
res.send(HealthcheckerSimpleCheck());
});server.get("/health-check/readiness", async (_, res) => {
res.send(
await HealthcheckerDetailedCheck({
name: "My node application",
version: "my version",
// here you will inform all of your external dependencies
// that your application must be checked to keep healthy
// available integration types: [
// HealthTypes.Redis,
// HealthTypes.Memcached,
// HealthTypes.Web
// HealthTypes.Custom
// ]
integrations: [
{
type: HealthTypes.Redis,
name: "redis integration",
host: "redis",
},
{
type: HealthTypes.Memcached,
name: "My memcache integration",
host: "memcache:11211",
},
{
type: HealthTypes.Web,
name: "my web api integration",
host: "https://github.com/status",
headers: [{ key: "Accept", value: "application/json" }],
},
{
type: HealthTypes.Dynamo,
name: "my dynamo",
host: "http://localhost",
port: 8000,
Aws: {
region: "us-east-1",
access_key_id: "",
secret_access_key: "",
},
},
{
type: HealthTypes.Database,
name: "my database",
host: "localhost",
dbPort: 5432,
dbName: "postgres",
dbUser: "postgres",
dbPwd: "root",
dbDialect: Dialects.postgres,
},
{
type: HealthTypes.Custom,
name: "my custom integration",
host: "localhost",
customCheckerFunction: () => { return { status: true, error: {} }},
},
],
})
);
});export default server;
```And then, you could call these endpoints manually to see your application health, but, if you are using modern Kubernetes deployment, you can config your chart to check your application with the setup below. There is an [Example](https://runkit.com/gritzkoo/618d325cb041300008eb7bfe) on runkit too.
```yaml
apiVersion: v1
kind: Pod
metadata:
labels:
test: liveness
name: liveness-http
spec:
containers:
- name: liveness
image: 'node' #your application image
args:
- /server
livenessProbe:
httpGet:
path: /health-check/liveness
port: 80
httpHeaders:
- name: Custom-Header
value: Awesome
initialDelaySeconds: 3
periodSeconds: 3
- name: readiness
image: 'node' #your application image
args:
- /server
readinessProbe:
httpGet:
path: /health-check/readiness
port: 80
httpHeaders:
- name: Custom-Header
value: Awesome
initialDelaySeconds: 3
periodSeconds: 3
```### Import using require
If your application needs to use the `require` instead of ECMAScript, you should import on this way:
```typescript
const express = require('express');
const {
HealthcheckerSimpleCheck,
HealthcheckerDetailedCheck
} = require("nodejs-health-checker/dist/healthchecker/healthchecker");
const { HealthTypes } = require("nodejs-health-checker/dist/interfaces/types");
const server = express();
server.get('/', (req, res) => {
res.json({ status: "I'm alive!" });
})
server.get('/health-check/liveness', (req, res) => {
res.json(HealthcheckerSimpleCheck())
})
server.get('/health-check/readiness', async (req, res) => {
let result = await HealthcheckerDetailedCheck({
name: 'example',
version: 'v1.0.0',
integrations: [
{
type: HealthTypes.Web,
name: 'A simple api integration check',
host: 'https://github.com/status'
}
]
});
res.json(result);
})
server.listen(3000, () => {
console.log('server started at port 3000')
})
```