OrchestratorSummary

data class OrchestratorSummary(val runId: String, val orchestratorName: String, val totalItems: Int, val completedItems: Int, val failedItems: Int, val beginTime: Instant, val endTime: Instant)(source)

Lightweight aggregate summary for an orchestrated multi-run execution (scenario sweep, designed experiment, or simulation-optimization).

Carried by RunResult.BatchCompleted and RunResult.OptimizationCompleted.

Constructors

Link copied to clipboard
constructor(runId: String, orchestratorName: String, totalItems: Int, completedItems: Int, failedItems: Int, beginTime: Instant, endTime: Instant)

Properties

Link copied to clipboard
val beginTime: Instant

wall-clock instant the orchestrator began

Link copied to clipboard

items that finished without a RuntimeException

Link copied to clipboard
val endTime: Instant

wall-clock instant the orchestrator finished

Link copied to clipboard

items that threw a RuntimeException during execution

Link copied to clipboard

human-readable name (e.g. "ScenarioOrchestrator")

Link copied to clipboard

unique identifier for this orchestrator run

Link copied to clipboard

total number of items submitted (scenarios, design points, or iterations)

Link copied to clipboard

Wall-clock elapsed time for the entire orchestrated run.