Reputation: 9393
With gradle --status
I can see the gradle PID, which is for example:
PID STATUS INFO
12868 IDLE 7.4.1
Yet, on Windows Task Manager there is no process with PID 12868. I cannot find either any process with gradle on name.
Where is the gradle process on Windows task manager?
For some unknown reason my Windows Task Manager is not updating with new processes after gradle daemon Java Process has started. I need to close and reopen Task Manager to see the corresponding Java process.
Next, you have the Print screens of Task Manager sorted by PID before and after closed and reopen.
Upvotes: 1
Views: 976
Reputation: 23060
Gradle is a Java application, so the name of the process will have Java in it somewhere.
Given the PID, in Windows Task Manager, navigate to the Details tab. From there you can sort by PID or name to find the process.
For example, in the below screenshot, you can see the process ID of 8964 in PowerShell and the same process highlighted in the Details tab on the right in Windows Task Manager.
Upvotes: 1