Maven Resource Usage
data class MavenResourceUsage(@Json(name = "totalMemory" ) val totalMemory: Long? = null, @Json(name = "total" ) val total: ResourceUsageBreakdown? = null, @Json(name = "nonExecution" ) val nonExecution: ResourceUsageBreakdown? = null, @Json(name = "execution" ) val execution: ResourceUsageBreakdown? = null)
Parameters
total Memory
The physical memory of the system in bytes. Can be null
if the metrics could not be captured.
total
non Execution
execution
Constructors
Link copied to clipboard
constructor(@Json(name = "totalMemory" ) totalMemory: Long? = null, @Json(name = "total" ) total: ResourceUsageBreakdown? = null, @Json(name = "nonExecution" ) nonExecution: ResourceUsageBreakdown? = null, @Json(name = "execution" ) execution: ResourceUsageBreakdown? = null)