Listory/src/health-check/health-check.controller.ts

36 lines
894 B
TypeScript

import { Controller, Get } from "@nestjs/common";
import {
DNSHealthIndicator,
HealthCheck,
HealthCheckService,
TypeOrmHealthIndicator,
} from "@nestjs/terminus";
import { ConfigService } from "@nestjs/config";
@Controller("api/v1/health")
export class HealthCheckController {
constructor(
private readonly health: HealthCheckService,
private readonly dns: DNSHealthIndicator,
private readonly typeorm: TypeOrmHealthIndicator,
private readonly config: ConfigService
) {}
@Get()
@HealthCheck()
check() {
return this.health.check([
() =>
this.dns.pingCheck(
"spotify-web",
this.config.get<string>("SPOTIFY_WEB_API_URL")
),
() =>
this.dns.pingCheck(
"spotify-auth",
this.config.get<string>("SPOTIFY_AUTH_API_URL")
),
() => this.typeorm.pingCheck("db"),
]);
}
}