학습 진행 현황 - 진행율, 진행중인 모델 API 추가

This commit is contained in:
2026-06-04 12:38:23 +09:00
parent b85f920f40
commit 5f4640ea60
6 changed files with 143 additions and 0 deletions

View File

@@ -236,4 +236,41 @@ public class ModelTrainMngApiController {
public ApiResponseDto<MonitorDto> getSystem() throws IOException {
return ApiResponseDto.ok(systemMonitorService.get());
}
@Operation(summary = "모델학습 1단계/2단계 실행중인 것 id 정보", description = "모델학습 1단계/2단계 실행중인 것 id 정보")
@ApiResponses(
value = {
@ApiResponse(
responseCode = "200",
description = "검색 성공",
content =
@Content(
mediaType = "application/json",
schema = @Schema(implementation = Long.class))),
@ApiResponse(responseCode = "400", description = "잘못된 검색 조건", content = @Content),
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
})
@GetMapping("/ing-model")
public ApiResponseDto<ModelTrainMngDto.InProgressModel> findInprogressModel() {
return ApiResponseDto.ok(modelTrainMngService.findInprogressModel());
}
@Operation(summary = "모델학습 진행율 퍼센트", description = "모델학습 진행율 퍼센트")
@ApiResponses(
value = {
@ApiResponse(
responseCode = "200",
description = "검색 성공",
content =
@Content(
mediaType = "application/json",
schema = @Schema(implementation = Long.class))),
@ApiResponse(responseCode = "400", description = "잘못된 검색 조건", content = @Content),
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
})
@GetMapping("/progress-percent/{uuid}")
public ApiResponseDto<ModelTrainMngDto.ProgressPercent> findTrainProgressPercent(
@PathVariable UUID uuid) {
return ApiResponseDto.ok(modelTrainMngService.findTrainProgressPercent(uuid));
}
}