nodejs-health-checker
Version:
Simple Nodejs package to simplify applications based in Node, to trace the healthy of the pods
14 lines • 613 B
TypeScript
import { ApplicationConfig, ApplicationHealthDetailed, ApplicationHealthSimple } from "../interfaces/types.js";
/**
* HealthcheckerSimpleCheck perform a simple application check
* @returns ApplicationHealthSimple
*/
export declare function HealthcheckerSimpleCheck(): ApplicationHealthSimple;
/**
* HealthcheckerDetailedCheck perform a check for each integration informed
*
* @param config ApplicationConfig
* @return ApplicationHealthDetailed
*/
export declare function HealthcheckerDetailedCheck(config: ApplicationConfig): Promise<ApplicationHealthDetailed>;
//# sourceMappingURL=healthchecker.d.ts.map