1. 상황Nestjs에서 readiness를 구현하기 위해 HttpHealthIndicator를 사용했습니다. HttpHealthIndicator를 사용해서 HTTP 통신이 가능한지 확인합니다.@Controller('health')export class HealthController { constructor( private httpHealthIndicator: HttpHealthIndicator ) {} @Get('/readiness') @HealthCheck() async checkReadiness() { return this.healthCheckService.check([ async () => this.httpHealthIndicator.pingCheck('self', ..