Browse Source

新增实时查询

pull/9/head
fanshuai 1 year ago
parent
commit
449d7c52c2
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/controller/experiment/ExperimentInsController.java

+ 2
- 2
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/controller/experiment/ExperimentInsController.java View File

@@ -147,8 +147,8 @@ public class ExperimentInsController extends BaseController {
@GetMapping("/pods/realtimelog") @GetMapping("/pods/realtimelog")
@ApiOperation("获取pod实时日志请求") @ApiOperation("获取pod实时日志请求")
public GenericsAjaxResult<String> getRealtimePodLogFromPod(@RequestParam("pod_name") String podName, public GenericsAjaxResult<String> getRealtimePodLogFromPod(@RequestParam("pod_name") String podName,
@RequestParam("workspace") String workspace){
return genericsSuccess(this.experimentInsService.getRealtimePodLogFromPod(podName,workspace));
@RequestParam("namespace") String namespace){
return genericsSuccess(this.experimentInsService.getRealtimePodLogFromPod(podName,namespace));
} }






Loading…
Cancel
Save