@softkit/healthcheck
TypeScript icon, indicating that this package has built-in type declarations

0.0.5 • Public • Published

Health Check Library

This library provides a healthcheck endpoint for the application.

It's useful for kubernetes and other containerized or any environments that need healthcheck to validate that app is functioning ok.

This module is tight to Softkit ecosystem and there is no point to use it outside.

Installation

yarn add @softkit/health-check

Usage in your main app module:

  • Import HealthCheckModule and register it in imports array
  • Add HealthConfig to your RootConfig class
import { HealthConfig } from '@softkit/healthcheck';

export default class RootConfig implements PlatformClientConfig {

  @Type(() => HealthConfig)
  @ValidateNested()
  public readonly health!: HealthConfig;

}
  • Add health config to your .env.yaml file. (Check health config to find default and available configs)
health:
  disk:
    enabled: true
  db:
    enabled: true
  • That's it health endpoint will be available at /health path for use. If you have a basePath configured it also will be applied to health endpoint.

Package Sidebar

Install

npm i @softkit/healthcheck

Weekly Downloads

0

Version

0.0.5

License

none

Unpacked Size

13.8 kB

Total Files

21

Last publish

Collaborators

  • vsamofal