InstanceBenchmarkEvent

data class InstanceBenchmarkEvent(val nt: Long = System.nanoTime(), val ts: Long = System.currentTimeMillis(), val id: String, val benchmark: String, val result: String, val success: Boolean = true) : InstanceEvent, StatusEvent

Signals that the instance executed a benchmark.

Constructors

Link copied to clipboard
constructor(nt: Long = System.nanoTime(), ts: Long = System.currentTimeMillis(), id: String, benchmark: String, result: String, success: Boolean = true)

Properties

Link copied to clipboard

Name of the benchmark

Link copied to clipboard
open override val id: String

The id of the PowerGoblin instance.

Link copied to clipboard
open override val nt: Long

Event timestamp in nanoseconds (more precise, but overflows).

Link copied to clipboard

Result of the benchmark

Link copied to clipboard
val success: Boolean = true
Link copied to clipboard
open override val ts: Long

Event timestamp in milliseconds.