You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: producer-rest-core/src/main/scala/za/co/absa/spline/producer/rest/controller/ExecutionEventsController.scala
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -48,12 +48,20 @@ class ExecutionEventsController @Autowired()(
48
48
{
49
49
// Reference to the execution plan Id that was triggered
50
50
planId: <UUID>,
51
+
52
+
// [Optional] A label that logically distinguish a group of one of multiple execution plans from another group.
53
+
// If set, it has to match the discriminator of the associated execution plan.
54
+
// The property is used for UUID collision detection.
55
+
discriminator: <string>,
56
+
51
57
// Time (milliseconds since Epoch) when the execution finished
52
58
timestamp: <number>,
59
+
53
60
// [Optional] Duration (in nanoseconds) of the execution
54
61
durationNs: <number>,
55
62
// [Optional] Additional info about the error (in case there was an error during the execution)
56
63
error: {...},
64
+
57
65
// [Optional] Any other extra information related to the given execution event
Copy file name to clipboardExpand all lines: producer-rest-core/src/main/scala/za/co/absa/spline/producer/rest/controller/ExecutionPlansController.scala
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,11 @@ class ExecutionPlansController @Autowired()(
52
52
// [Optional] A name of the application (script, job etc) that this execution plan represents.
53
53
name: <string>,
54
54
55
+
// [Optional] A label that logically distinguish a group of one of multiple execution plans from another group.
56
+
// If set, it has to match the discriminator of the associated execution events.
57
+
// The property is used for UUID collision detection.
Copy file name to clipboardExpand all lines: producer-services/src/main/scala/za/co/absa/spline/producer/service/model/ExecutionPlanPersistentModelBuilder.scala
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,7 @@ class ExecutionPlanPersistentModelBuilder private(
Copy file name to clipboardExpand all lines: producer-services/src/main/scala/za/co/absa/spline/producer/service/repo/ExecutionProducerRepositoryImpl.scala
0 commit comments