ExperimentRunStarted

data class ExperimentRunStarted(val runId: String, val modelIdentifier: String, val totalDesignPoints: Int, val startTime: Instant) : RunEvent.Started(source)

Emitted once by ExperimentOrchestrator immediately before the designed experiment begins, after any pre-run warnings.

Constructors

Link copied to clipboard
constructor(runId: String, modelIdentifier: String, totalDesignPoints: Int, startTime: Instant)

Properties

Link copied to clipboard
open override val modelIdentifier: String

the run's model identifier

Link copied to clipboard
open override val runId: String

the unique run identifier assigned by the orchestrator

Link copied to clipboard
open override val startTime: Instant

wall-clock instant the orchestrator began the experiment

Link copied to clipboard

total number of design points; matches DesignPointCompleted.totalDesignPoints on subsequent events