@cadenza.io/core 3.17.0 → 3.17.1
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 +16 -20
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -20
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2337,7 +2337,7 @@ var GraphNode = class _GraphNode extends SignalEmitter {
|
|
|
2337
2337
|
},
|
|
2338
2338
|
filter: { uuid: this.routineExecId }
|
|
2339
2339
|
},
|
|
2340
|
-
{ squash: true, squashId: this.routineExecId
|
|
2340
|
+
{ squash: true, squashId: this.routineExecId }
|
|
2341
2341
|
);
|
|
2342
2342
|
}
|
|
2343
2343
|
if (this.debug && !this.task.isSubMeta && !this.context.getMetadata().__isSubMeta || this.verbose) {
|
|
@@ -3283,26 +3283,22 @@ var GraphRunner = class extends SignalEmitter {
|
|
|
3283
3283
|
}
|
|
3284
3284
|
});
|
|
3285
3285
|
}
|
|
3286
|
-
this.emitMetrics(
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
previousRoutineExecution: context.__localRoutineExecId ?? context.__metadata?.__routineExecId ?? null,
|
|
3298
|
-
created: formatTimestamp(Date.now())
|
|
3299
|
-
},
|
|
3300
|
-
__metadata: {
|
|
3301
|
-
__executionTraceId: executionTraceId
|
|
3302
|
-
}
|
|
3286
|
+
this.emitMetrics("meta.runner.added_tasks", {
|
|
3287
|
+
data: {
|
|
3288
|
+
uuid: routineExecId,
|
|
3289
|
+
name: routineName,
|
|
3290
|
+
routineVersion,
|
|
3291
|
+
isMeta,
|
|
3292
|
+
executionTraceId,
|
|
3293
|
+
context: ctx.getContext(),
|
|
3294
|
+
metaContext: ctx.getMetadata(),
|
|
3295
|
+
previousRoutineExecution: context.__localRoutineExecId ?? context.__metadata?.__routineExecId ?? null,
|
|
3296
|
+
created: formatTimestamp(Date.now())
|
|
3303
3297
|
},
|
|
3304
|
-
|
|
3305
|
-
|
|
3298
|
+
__metadata: {
|
|
3299
|
+
__executionTraceId: executionTraceId
|
|
3300
|
+
}
|
|
3301
|
+
});
|
|
3306
3302
|
}
|
|
3307
3303
|
allTasks.forEach(
|
|
3308
3304
|
(task) => this.currentRun.addNode(
|