@cadenza.io/core 3.0.16 → 3.0.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +5 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -811,14 +811,13 @@ var GraphNode = class _GraphNode extends SignalEmitter {
|
|
|
811
811
|
this.emitMetricsWithMetadata("meta.node.mapped", {
|
|
812
812
|
data: {
|
|
813
813
|
taskExecutionId: this.id,
|
|
814
|
-
previousTaskExecutionId: node.id
|
|
815
|
-
executionCount: "increment"
|
|
814
|
+
previousTaskExecutionId: node.id
|
|
816
815
|
},
|
|
817
816
|
filter: {
|
|
818
817
|
taskName: this.task.name,
|
|
819
818
|
taskVersion: this.task.version,
|
|
820
|
-
|
|
821
|
-
|
|
819
|
+
predecessorTaskName: node.task.name,
|
|
820
|
+
predecessorTaskVersion: node.task.version
|
|
822
821
|
}
|
|
823
822
|
});
|
|
824
823
|
});
|
|
@@ -1000,6 +999,7 @@ var GraphNode = class _GraphNode extends SignalEmitter {
|
|
|
1000
999
|
};
|
|
1001
1000
|
const context = this.context.getMetadata();
|
|
1002
1001
|
data.__metadata = {
|
|
1002
|
+
...data.__metadata,
|
|
1003
1003
|
__routineExecId: this.routineExecId,
|
|
1004
1004
|
__executionTraceId: (_b = (_a = context.__metadata) == null ? void 0 : _a.__executionTraceId) != null ? _b : context.__executionTraceId
|
|
1005
1005
|
};
|
|
@@ -1018,6 +1018,7 @@ var GraphNode = class _GraphNode extends SignalEmitter {
|
|
|
1018
1018
|
};
|
|
1019
1019
|
const context = this.context.getMetadata();
|
|
1020
1020
|
data.__metadata = {
|
|
1021
|
+
...data.__metadata,
|
|
1021
1022
|
__routineExecId: this.routineExecId,
|
|
1022
1023
|
__executionTraceId: (_b = (_a = context.__metadata) == null ? void 0 : _a.__executionTraceId) != null ? _b : context.__executionTraceId
|
|
1023
1024
|
};
|