Remote Debug Java Application running on OCP

Posted on

I am using Eclipse IDE to remote debug Java application running on OCP. The remote debug is set up through port forwarding on specific pod, that means each time I am just debugging one pod. But this could be a problem if the failure happened on another pod, rather then the pod I attached the debugger to.

I want to know if it is possible to remote debug the application such as all the pods is connect to the debugger at same time? So no matter which pod reach failed process, my debugger can catch that.

Responses