Add more info to fir bench report & format as table
Properly measure raw fir builder time in fir benchmark
This commit is contained in:
+1
-10
@@ -57,16 +57,7 @@ class FirResolveModularizedTotalKotlinTest : AbstractModularizedTest() {
|
||||
val builder = RawFirBuilder(session, stubMode = false)
|
||||
|
||||
val totalTransformer = FirTotalResolveTransformer()
|
||||
val firFiles = ktFiles.toList().mapNotNull {
|
||||
var firFile: FirFile? = null
|
||||
val time = measureNanoTime {
|
||||
firFile = builder.buildFirFile(it)
|
||||
(session.service<FirProvider>() as FirProviderImpl).recordFile(firFile!!)
|
||||
}
|
||||
bench.countBuilder(builder, time)
|
||||
firFile
|
||||
}.toList()
|
||||
|
||||
val firFiles = bench.buildFiles(builder, ktFiles)
|
||||
|
||||
println("Raw FIR up, files: ${firFiles.size}")
|
||||
|
||||
|
||||
@@ -0,0 +1,348 @@
|
||||
/*
|
||||
* Copyright 2010-2018 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||
*/
|
||||
package org.jetbrains.kotlin.fir
|
||||
|
||||
import com.intellij.openapi.fileEditor.FileDocumentManager
|
||||
import com.intellij.psi.PsiElement
|
||||
import org.jetbrains.kotlin.fir.builder.RawFirBuilder
|
||||
import org.jetbrains.kotlin.fir.declarations.FirFile
|
||||
import org.jetbrains.kotlin.fir.expressions.FirFunctionCall
|
||||
import org.jetbrains.kotlin.fir.expressions.FirQualifiedAccessExpression
|
||||
import org.jetbrains.kotlin.fir.resolve.FirProvider
|
||||
import org.jetbrains.kotlin.fir.resolve.impl.FirProviderImpl
|
||||
import org.jetbrains.kotlin.fir.types.*
|
||||
import org.jetbrains.kotlin.fir.visitors.FirTransformer
|
||||
import org.jetbrains.kotlin.fir.visitors.FirVisitorVoid
|
||||
import org.jetbrains.kotlin.psi.KtFile
|
||||
import org.jetbrains.kotlin.psi.psiUtil.startOffset
|
||||
import org.jetbrains.kotlin.utils.addToStdlib.sumByLong
|
||||
import java.io.PrintStream
|
||||
import kotlin.math.max
|
||||
import kotlin.reflect.KClass
|
||||
import kotlin.system.measureNanoTime
|
||||
|
||||
|
||||
fun checkFirProvidersConsistency(firFiles: List<FirFile>) {
|
||||
for ((session, files) in firFiles.groupBy { it.fileSession }) {
|
||||
val provider = session.service<FirProvider>() as FirProviderImpl
|
||||
provider.ensureConsistent(files)
|
||||
}
|
||||
}
|
||||
|
||||
private data class FailureInfo(val transformer: KClass<*>, val throwable: Throwable, val file: String)
|
||||
private data class ErrorTypeReport(val report: String, var count: Int = 0)
|
||||
|
||||
class FirResolveBench(val withProgress: Boolean) {
|
||||
|
||||
|
||||
data class Measure(
|
||||
var time: Long = 0,
|
||||
var user: Long = 0,
|
||||
var cpu: Long = 0,
|
||||
var gcTime: Long = 0,
|
||||
var gcCollections: Int = 0,
|
||||
var files: Int = 0
|
||||
) {}
|
||||
|
||||
val timePerTransformer = mutableMapOf<KClass<*>, Measure>()
|
||||
var resolvedTypes = 0
|
||||
var errorTypes = 0
|
||||
var unresolvedTypes = 0
|
||||
var errorFunctionCallTypes = 0
|
||||
var errorQualifiedAccessTypes = 0
|
||||
var implicitTypes = 0
|
||||
var fileCount = 0
|
||||
|
||||
|
||||
private val fails = mutableListOf<FailureInfo>()
|
||||
val hasFiles get() = fails.isNotEmpty()
|
||||
|
||||
private val errorTypesReports = mutableMapOf<String, ErrorTypeReport>()
|
||||
|
||||
fun buildFiles(
|
||||
builder: RawFirBuilder,
|
||||
ktFiles: List<KtFile>
|
||||
): List<FirFile> {
|
||||
return ktFiles.map { file ->
|
||||
val before = vmStateSnapshot()
|
||||
var firFile: FirFile? = null
|
||||
val time = measureNanoTime {
|
||||
firFile = builder.buildFirFile(file)
|
||||
(builder.session.service<FirProvider>() as FirProviderImpl).recordFile(firFile!!)
|
||||
}
|
||||
val after = vmStateSnapshot()
|
||||
val diff = after - before
|
||||
recordTime(builder::class, diff, time)
|
||||
firFile!!
|
||||
}
|
||||
}
|
||||
|
||||
private fun recordTime(stageClass: KClass<*>, diff: VMCounters, time: Long) {
|
||||
timePerTransformer.computeIfAbsent(stageClass) { Measure() }.apply {
|
||||
this.time += time
|
||||
this.files += 1
|
||||
this.user += diff.userTime
|
||||
this.cpu += diff.cpuTime
|
||||
this.gcCollections += diff.gcInfo.values.sumBy { it.collections.toInt() }
|
||||
this.gcTime += diff.gcInfo.values.sumByLong { it.gcTime }
|
||||
}
|
||||
}
|
||||
|
||||
private fun runStage(transformer: FirTransformer<Nothing?>, firFileSequence: Sequence<FirFile>) {
|
||||
for (firFile in firFileSequence) {
|
||||
var fail = false
|
||||
val before = vmStateSnapshot()
|
||||
val time = measureNanoTime {
|
||||
try {
|
||||
transformer.transformFile(firFile, null)
|
||||
} catch (e: Throwable) {
|
||||
val ktFile = firFile.psi as KtFile
|
||||
println("Fail in file: ${ktFile.virtualFilePath}")
|
||||
fail = true
|
||||
fails += FailureInfo(transformer::class, e, ktFile.virtualFilePath)
|
||||
//println(ktFile.text)
|
||||
//throw e
|
||||
}
|
||||
}
|
||||
if (!fail) {
|
||||
val after = vmStateSnapshot()
|
||||
val diff = after - before
|
||||
recordTime(transformer::class, diff, time)
|
||||
|
||||
}
|
||||
//totalLength += StringBuilder().apply { FirRenderer(this).visitFile(firFile) }.length
|
||||
}
|
||||
}
|
||||
|
||||
fun processFiles(
|
||||
firFiles: List<FirFile>,
|
||||
transformers: List<FirTransformer<Nothing?>>
|
||||
) {
|
||||
fileCount += firFiles.size
|
||||
try {
|
||||
for ((stage, transformer) in transformers.withIndex()) {
|
||||
println("Starting stage #$stage. $transformer")
|
||||
val firFileSequence = if (withProgress) firFiles.progress(" ~ ") else firFiles.asSequence()
|
||||
runStage(transformer, firFileSequence)
|
||||
checkFirProvidersConsistency(firFiles)
|
||||
}
|
||||
|
||||
if (fails.none()) {
|
||||
println("SUCCESS!")
|
||||
} else {
|
||||
println("ERROR!")
|
||||
}
|
||||
} finally {
|
||||
|
||||
|
||||
val fileDocumentManager = FileDocumentManager.getInstance()
|
||||
|
||||
firFiles.forEach {
|
||||
it.accept(object : FirVisitorVoid() {
|
||||
|
||||
fun reportProblem(problem: String, psi: PsiElement) {
|
||||
val document = try {
|
||||
fileDocumentManager.getDocument(psi.containingFile.virtualFile)
|
||||
} catch (t: Throwable) {
|
||||
throw Exception("for file ${psi.containingFile}", t)
|
||||
}
|
||||
val line = (document?.getLineNumber(psi.startOffset) ?: 0)
|
||||
val char = psi.startOffset - (document?.getLineStartOffset(line) ?: 0)
|
||||
val report = "e: ${psi.containingFile?.virtualFile?.path}: (${line + 1}:$char): $problem"
|
||||
errorTypesReports.getOrPut(problem) { ErrorTypeReport(report) }.count++
|
||||
}
|
||||
|
||||
override fun visitElement(element: FirElement) {
|
||||
element.acceptChildren(this)
|
||||
}
|
||||
|
||||
override fun visitFunctionCall(functionCall: FirFunctionCall) {
|
||||
val typeRef = functionCall.typeRef
|
||||
if (typeRef is FirResolvedTypeRef) {
|
||||
val type = typeRef.type
|
||||
if (type is ConeKotlinErrorType) {
|
||||
errorFunctionCallTypes++
|
||||
}
|
||||
}
|
||||
|
||||
super.visitFunctionCall(functionCall)
|
||||
}
|
||||
|
||||
override fun visitQualifiedAccessExpression(qualifiedAccessExpression: FirQualifiedAccessExpression) {
|
||||
val typeRef = qualifiedAccessExpression.typeRef
|
||||
if (typeRef is FirResolvedTypeRef) {
|
||||
val type = typeRef.type
|
||||
if (type is ConeKotlinErrorType) {
|
||||
errorQualifiedAccessTypes++
|
||||
}
|
||||
}
|
||||
|
||||
super.visitQualifiedAccessExpression(qualifiedAccessExpression)
|
||||
}
|
||||
|
||||
override fun visitTypeRef(typeRef: FirTypeRef) {
|
||||
unresolvedTypes++
|
||||
|
||||
if (typeRef.psi != null) {
|
||||
val psi = typeRef.psi!!
|
||||
val problem = "${typeRef::class.simpleName}: ${typeRef.render()}"
|
||||
reportProblem(problem, psi)
|
||||
}
|
||||
}
|
||||
|
||||
override fun visitImplicitTypeRef(implicitTypeRef: FirImplicitTypeRef) {
|
||||
if (implicitTypeRef is FirResolvedTypeRef) {
|
||||
visitResolvedTypeRef(implicitTypeRef)
|
||||
} else {
|
||||
visitTypeRef(implicitTypeRef)
|
||||
}
|
||||
}
|
||||
|
||||
override fun visitResolvedTypeRef(resolvedTypeRef: FirResolvedTypeRef) {
|
||||
resolvedTypes++
|
||||
val type = resolvedTypeRef.type
|
||||
if (type is ConeKotlinErrorType || type is ConeClassErrorType) {
|
||||
if (resolvedTypeRef.psi == null) {
|
||||
implicitTypes++
|
||||
} else {
|
||||
errorTypes++
|
||||
val psi = resolvedTypeRef.psi!!
|
||||
val problem = "${resolvedTypeRef::class.simpleName} -> ${type::class.simpleName}: ${type.render()}"
|
||||
reportProblem(problem, psi)
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
fun throwFailure() {
|
||||
if (fails.any()) {
|
||||
val (transformerClass, failure, file) = fails.first()
|
||||
throw AssertionError("Failures detected in ${transformerClass.simpleName}, file: $file", failure)
|
||||
}
|
||||
}
|
||||
|
||||
fun report(stream: PrintStream, errorTypeReports: Boolean = true) {
|
||||
|
||||
if (errorTypeReports)
|
||||
errorTypesReports.values.sortedByDescending { it.count }.forEach {
|
||||
stream.print("${it.count}:")
|
||||
stream.println(it.report)
|
||||
}
|
||||
|
||||
infix fun Int.percentOf(other: Int): String {
|
||||
return String.format("%.1f%%", this * 100.0 / other)
|
||||
}
|
||||
|
||||
val totalTypes = unresolvedTypes + resolvedTypes
|
||||
stream.println("UNRESOLVED (UNTOUCHED) IMPLICIT TYPES: $unresolvedTypes (${unresolvedTypes percentOf totalTypes})")
|
||||
stream.println("RESOLVED TYPES: $resolvedTypes (${resolvedTypes percentOf totalTypes})")
|
||||
val goodTypes = resolvedTypes - errorTypes - implicitTypes
|
||||
stream.println("CORRECTLY RESOLVED TYPES: $goodTypes (${goodTypes percentOf resolvedTypes} of resolved)")
|
||||
stream.println("ERRONEOUSLY RESOLVED TYPES: $errorTypes (${errorTypes percentOf resolvedTypes} of resolved)")
|
||||
stream.println(" - unresolved calls: $errorFunctionCallTypes")
|
||||
stream.println(" - unresolved q.accesses: $errorQualifiedAccessTypes")
|
||||
stream.println("ERRONEOUSLY RESOLVED IMPLICIT TYPES: $implicitTypes (${implicitTypes percentOf resolvedTypes} of resolved)")
|
||||
stream.println("UNIQUE ERROR TYPES: ${errorTypesReports.size}")
|
||||
|
||||
printTable(stream) {
|
||||
row {
|
||||
cell("Stage", LEFT)
|
||||
cells("Time", "Time per file", "Files: OK/E/T", "CPU", "User", "GC", "GC count")
|
||||
}
|
||||
separator()
|
||||
timePerTransformer.forEach { (transformer, measure) ->
|
||||
val time = measure.time
|
||||
val counter = measure.files
|
||||
row {
|
||||
cell(transformer.simpleName.toString(), LEFT)
|
||||
timeCell(time, fractionDigits = 0)
|
||||
timeCell(time / counter)
|
||||
cell("$counter/${fileCount - counter}/$fileCount")
|
||||
timeCell(measure.cpu, fractionDigits = 0)
|
||||
timeCell(measure.user)
|
||||
timeCell(measure.gcTime, inputUnit = TableTimeUnit.MS)
|
||||
cell(measure.gcCollections.toString())
|
||||
}
|
||||
}
|
||||
|
||||
if (timePerTransformer.keys.size > 0) {
|
||||
separator()
|
||||
val totalTime = timePerTransformer.values.sumByLong { it.time }
|
||||
val totalCpuTime = timePerTransformer.values.sumByLong { it.cpu }
|
||||
val totalUserTime = timePerTransformer.values.sumByLong { it.user }
|
||||
val totalGcTime = timePerTransformer.values.sumByLong { it.gcTime }
|
||||
val totalGcCollections = timePerTransformer.values.sumBy { it.gcCollections }
|
||||
val averageFiles = timePerTransformer.values.map { it.files }.average().toLong()
|
||||
|
||||
|
||||
row {
|
||||
cell("Total", LEFT)
|
||||
timeCell(totalTime, fractionDigits = 0)
|
||||
timeCell(totalTime / averageFiles)
|
||||
cell("$averageFiles")
|
||||
cell("$averageFiles")
|
||||
timeCell(totalCpuTime, fractionDigits = 0)
|
||||
timeCell(totalUserTime)
|
||||
timeCell(totalGcTime, inputUnit = TableTimeUnit.MS)
|
||||
cell(totalGcCollections.toString())
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
fun doFirResolveTestBench(
|
||||
firFiles: List<FirFile>,
|
||||
transformers: List<FirTransformer<Nothing?>>,
|
||||
gc: Boolean = true,
|
||||
withProgress: Boolean = false
|
||||
) {
|
||||
|
||||
if (gc) {
|
||||
System.gc()
|
||||
}
|
||||
|
||||
val bench = FirResolveBench(withProgress)
|
||||
bench.processFiles(firFiles, transformers)
|
||||
bench.report(System.out)
|
||||
bench.throwFailure()
|
||||
}
|
||||
|
||||
|
||||
fun <T> Collection<T>.progress(label: String, step: Double = 0.1): Sequence<T> {
|
||||
return progress(step) { label }
|
||||
}
|
||||
|
||||
fun <T> Collection<T>.progress(step: Double = 0.1, computeLabel: (T) -> String): Sequence<T> {
|
||||
val intStep = max(1, (this.size * step).toInt())
|
||||
var progress = 0
|
||||
val startTime = System.currentTimeMillis()
|
||||
|
||||
fun Long.formatTime(): String {
|
||||
return when {
|
||||
this < 1000 -> "${this}ms"
|
||||
this < 60 * 1000 -> "${this / 1000}s ${this % 1000}ms"
|
||||
else -> "${this / (60 * 1000)}m ${this % (60 * 1000) / 1000}s ${this % (60 * 1000) % 1000}ms"
|
||||
}
|
||||
}
|
||||
|
||||
return asSequence().onEach {
|
||||
if (progress % intStep == 0) {
|
||||
val currentTime = System.currentTimeMillis()
|
||||
val elapsed = currentTime - startTime
|
||||
|
||||
val eta = if (progress > 0) ((elapsed / progress * 1.0) * (this.size - progress)).toLong().formatTime() else "Unknown"
|
||||
println("${computeLabel(it)}: ${progress * 100 / size}% ($progress/${this.size}), ETA: $eta, Elapsed: ${elapsed.formatTime()}")
|
||||
}
|
||||
progress++
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,149 @@
|
||||
/*
|
||||
* Copyright 2010-2019 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||
*/
|
||||
|
||||
package org.jetbrains.kotlin.fir
|
||||
|
||||
import java.text.DecimalFormat
|
||||
|
||||
class RTableContext {
|
||||
val data: MutableList<Row> = mutableListOf()
|
||||
var cols = 0
|
||||
fun row(names: List<String>) = row(names.map { Cell(it) })
|
||||
|
||||
sealed class Row {
|
||||
class Data(val cells: List<Cell>) : Row()
|
||||
class Separator() : Row()
|
||||
}
|
||||
|
||||
@JvmName("rowCells")
|
||||
fun row(cells: List<Cell>) {
|
||||
cols = maxOf(cells.size, cols)
|
||||
data += Row.Data(cells)
|
||||
}
|
||||
|
||||
fun row(vararg names: String) {
|
||||
row(listOf(*names))
|
||||
}
|
||||
|
||||
fun separator() {
|
||||
data += Row.Separator()
|
||||
}
|
||||
|
||||
inner class RTableRowContext() {
|
||||
val rowData = mutableListOf<Cell>()
|
||||
val LEFT = false
|
||||
val RIGHT = true
|
||||
fun cell(text: String?, align: Boolean = RIGHT) {
|
||||
rowData += Cell(text.toString(), align)
|
||||
}
|
||||
|
||||
fun cells(texts: List<String>, align: Boolean = RIGHT) {
|
||||
rowData += texts.map { Cell(it, align) }
|
||||
}
|
||||
|
||||
fun cells(vararg texts: String, align: Boolean = RIGHT) {
|
||||
cells(listOf(*texts), align)
|
||||
}
|
||||
}
|
||||
|
||||
inline fun row(body: RTableRowContext.() -> Unit) {
|
||||
val ctx = RTableRowContext()
|
||||
ctx.body()
|
||||
row(ctx.rowData)
|
||||
}
|
||||
|
||||
data class Cell(val text: String, val alignRight: Boolean = true) {
|
||||
fun padText(size: Int): String {
|
||||
return if (alignRight) {
|
||||
text.padStart(size)
|
||||
} else {
|
||||
text.padEnd(size)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun printout(out: Appendable) {
|
||||
val colSize = IntArray(cols) { index ->
|
||||
data.filterIsInstance<Row.Data>().fold(0) { acc, row -> maxOf(acc, row.cells[index].text.length) }
|
||||
}
|
||||
|
||||
|
||||
fun appendHLine(prefix: String, sep: String, postfix: String) {
|
||||
out.append(prefix)
|
||||
for ((index, size) in colSize.withIndex()) {
|
||||
if (index != 0) {
|
||||
out.append(sep)
|
||||
out.append(HLINE)
|
||||
}
|
||||
out.append(HLINE.repeat(size))
|
||||
}
|
||||
out.append(postfix)
|
||||
out.appendln()
|
||||
}
|
||||
|
||||
appendHLine(CORNER_LU, TOP_T, CORNER_RU)
|
||||
for (row in data) {
|
||||
when (row) {
|
||||
is Row.Data -> {
|
||||
out.append(VLINE)
|
||||
for ((index, cell) in row.cells.withIndex()) {
|
||||
out.append(cell.padText(colSize[index]))
|
||||
out.append(VLINE)
|
||||
out.append(" ")
|
||||
}
|
||||
out.appendln()
|
||||
}
|
||||
is Row.Separator -> {
|
||||
appendHLine(LEFT_T, CROSS, RIGHT_T)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
appendHLine(CORNER_LD, BOT_T, CORNER_RD)
|
||||
}
|
||||
|
||||
companion object {
|
||||
private const val CROSS = "┼"
|
||||
private const val VLINE = "│"
|
||||
private const val HLINE = "─"
|
||||
private const val CORNER_LU = "┌"
|
||||
private const val CORNER_RU = "┐"
|
||||
private const val CORNER_LD = "└"
|
||||
private const val CORNER_RD = "┘"
|
||||
private const val LEFT_T = "├"
|
||||
private const val RIGHT_T = "┤"
|
||||
private const val TOP_T = "┬"
|
||||
private const val BOT_T = "┴"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
internal enum class TableTimeUnit(val postfixText: String, val nsMultiplier: Double, val fractionDigits: Int) {
|
||||
NS("ns", 1.0, 0),
|
||||
MICS("mcs", 1e-3, 3),
|
||||
MS("ms", 1e-6, 6),
|
||||
S("s", 1e-9, 9);
|
||||
|
||||
fun convert(value: Long, from: TableTimeUnit): Double {
|
||||
return value / from.nsMultiplier * this.nsMultiplier
|
||||
}
|
||||
}
|
||||
|
||||
internal inline fun RTableContext.RTableRowContext.timeCell(
|
||||
time: Long,
|
||||
outputUnit: TableTimeUnit = TableTimeUnit.MS,
|
||||
inputUnit: TableTimeUnit = TableTimeUnit.NS,
|
||||
fractionDigits: Int = outputUnit.fractionDigits
|
||||
) {
|
||||
val df = DecimalFormat()
|
||||
df.maximumFractionDigits = fractionDigits
|
||||
df.isGroupingUsed = true
|
||||
|
||||
cell("${df.format(outputUnit.convert(time, inputUnit))} ${outputUnit.postfixText}")
|
||||
}
|
||||
|
||||
internal inline fun printTable(out: Appendable = System.out, body: RTableContext.() -> Unit) {
|
||||
RTableContext().apply(body).printout(out)
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
/*
|
||||
* Copyright 2010-2019 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||
*/
|
||||
|
||||
package org.jetbrains.kotlin.fir
|
||||
|
||||
import org.jetbrains.kotlin.daemon.common.threadCpuTime
|
||||
import org.jetbrains.kotlin.daemon.common.threadUserTime
|
||||
import sun.management.ManagementFactoryHelper
|
||||
|
||||
|
||||
data class GCInfo(val name: String, val gcTime: Long, val collections: Long) {
|
||||
operator fun minus(other: GCInfo): GCInfo {
|
||||
return this.copy(
|
||||
gcTime = gcTime - other.gcTime,
|
||||
collections = collections - other.collections
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
data class VMCounters(val userTime: Long, val cpuTime: Long, val gcInfo: Map<String, GCInfo>) {
|
||||
|
||||
|
||||
operator fun minus(other: VMCounters): VMCounters {
|
||||
return VMCounters(
|
||||
userTime - other.userTime,
|
||||
cpuTime - other.cpuTime,
|
||||
merge(gcInfo, other.gcInfo) { a, b -> a - b }
|
||||
)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
private fun <K, V> merge(first: Map<K, V>, second: Map<K, V>, valueOp: (V, V) -> V): Map<K, V> {
|
||||
val result = first.toMutableMap()
|
||||
for ((k, v) in second) {
|
||||
result.merge(k, v, valueOp)
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
object Init {
|
||||
init {
|
||||
ManagementFactoryHelper.getThreadMXBean().isThreadCpuTimeEnabled = true
|
||||
}
|
||||
}
|
||||
|
||||
fun vmStateSnapshot(): VMCounters {
|
||||
Init
|
||||
val threadMXBean = ManagementFactoryHelper.getThreadMXBean()
|
||||
|
||||
return VMCounters(
|
||||
threadMXBean.threadUserTime(), threadMXBean.threadCpuTime(),
|
||||
ManagementFactoryHelper.getGarbageCollectorMXBeans().associate { it.name to GCInfo(it.name, it.collectionTime, it.collectionCount) }
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user