GradleBuildDaemonJvmMemoryUsage

data class GradleBuildDaemonJvmMemoryUsage(@Json(name = "totalGarbageCollectionTime") val totalGarbageCollectionTime: Long, @Json(name = "memoryPools") val memoryPools: List<MemoryPoolUsage>? = null)

Memory usage stats of the Gradle Daemon JVM while running the build.

Parameters

totalGarbageCollectionTime

The total garbage collection time.

memoryPools

A list of all the heap memory pools of the JVM build process and their peak usage.

Constructors

Link copied to clipboard
constructor(@Json(name = "totalGarbageCollectionTime") totalGarbageCollectionTime: Long, @Json(name = "memoryPools") memoryPools: List<MemoryPoolUsage>? = null)

Properties

Link copied to clipboard