Gradle Build Daemon Jvm Memory Usage
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
total Garbage Collection Time
The total garbage collection time.
memory Pools
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)