Skip to main content

Gradle : How to list all running Gradle Daemon processes

How to list all running Gradle Daemon processes

To see a list of all the running gradle Daemon processes you can use the following command.

gradle --status

This will give you a list of all the running processes with their versions as shown in the sample output below.

   PID STATUS   INFO
3461 IDLE 3.0
31881 BUSY 3.0

Here the output is

  1. PID - the process id of the gradle daemon process.
  2. STATUS - status of the Gradle Daemon, Idle states that this gradle daemon can be used for making builds. BUSY states that it is currently used for running some build.
  3. INFO - it states the version of gradle that is being used for these daemons.

Also Read

Comments