From 3f05c61faeb94a2f1c920d87a6ca8bde34d551e0 Mon Sep 17 00:00:00 2001 From: Dante Niewenhuis Date: Thu, 5 Sep 2024 15:17:58 +0200 Subject: Sim trace update (#249) * Started on reimplementing the SimTrace implementation * updated trace format. Fragments now do not have a deadline, but a duration. The Fragments are executed in order. --- .../src/main/kotlin/org/opendc/trace/conv/ResourceColumns.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/conv') diff --git a/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/conv/ResourceColumns.kt b/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/conv/ResourceColumns.kt index baaa0690..9a826418 100644 --- a/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/conv/ResourceColumns.kt +++ b/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/conv/ResourceColumns.kt @@ -40,7 +40,7 @@ public val resourceClusterID: String = "cluster_id" * Start time for the resource. */ @JvmField -public val resourceStartTime: String = "start_time" +public val resourceSubmissionTime: String = "submission_time" /** * Start time for the resource. @@ -52,7 +52,7 @@ public val resourceCarbonIntensity: String = "carbon_intensity" * End time for the resource. */ @JvmField -public val resourceStopTime: String = "stop_time" +public val resourceDuration: String = "duration" /** * Number of CPUs for the resource. -- cgit v1.2.3