|
|
|
@@ -144,10 +144,9 @@ public class ExperimentInsController extends BaseController { |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@GetMapping("/pods/realTimeLog") |
|
|
|
@PostMapping("/pods/realTimeLog") |
|
|
|
@ApiOperation("获取pod实时日志请求") |
|
|
|
public GenericsAjaxResult<String> getRealtimePodLogFromPod(@PathVariable("pod_name") String podName, |
|
|
|
@PathVariable("namespace") String namespace,@PathVariable("container_name") String containerName){ |
|
|
|
public GenericsAjaxResult<String> getRealtimePodLogFromPod(@RequestParam("namespace") String namespace, @RequestParam("container_name") String containerName,@RequestParam("pod_name") String podName){ |
|
|
|
return genericsSuccess(this.experimentInsService.getRealtimePodLogFromPod(podName,namespace,containerName)); |
|
|
|
} |
|
|
|
|
|
|
|
|