HeapAnalysisFailure

data class HeapAnalysisFailure(val heapDumpFile: File, val createdAtTimeMillis: Long, val dumpDurationMillis: Long = DUMP_DURATION_UNKNOWN, val analysisDurationMillis: Long, val exception: HeapAnalysisException) : HeapAnalysis

The analysis performed by HeapAnalyzer did not complete successfully.

Constructors

Link copied to clipboard
constructor(heapDumpFile: File, createdAtTimeMillis: Long, dumpDurationMillis: Long = DUMP_DURATION_UNKNOWN, analysisDurationMillis: Long, exception: HeapAnalysisException)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
open override val analysisDurationMillis: Long

Total time spent analyzing the heap.

Link copied to clipboard
open override val createdAtTimeMillis: Long

The System.currentTimeMillis when this HeapAnalysis instance was created.

Link copied to clipboard
open override val dumpDurationMillis: Long

Total time spent dumping the heap.

Link copied to clipboard

An exception wrapping the actual exception that was thrown.

Link copied to clipboard
open override val heapDumpFile: File

The hprof file that was analyzed.