@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.js
CHANGED
|
@@ -2374,7 +2374,7 @@ var GraphNode = class _GraphNode extends SignalEmitter {
|
|
|
2374
2374
|
},
|
|
2375
2375
|
filter: { uuid: this.routineExecId }
|
|
2376
2376
|
},
|
|
2377
|
-
{ squash: true, squashId: this.routineExecId
|
|
2377
|
+
{ squash: true, squashId: this.routineExecId }
|
|
2378
2378
|
);
|
|
2379
2379
|
}
|
|
2380
2380
|
if (this.debug && !this.task.isSubMeta && !this.context.getMetadata().__isSubMeta || this.verbose) {
|
|
@@ -3320,26 +3320,22 @@ var GraphRunner = class extends SignalEmitter {
|
|
|
3320
3320
|
}
|
|
3321
3321
|
});
|
|
3322
3322
|
}
|
|
3323
|
-
this.emitMetrics(
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
|
|
3332
|
-
|
|
3333
|
-
|
|
3334
|
-
previousRoutineExecution: context.__localRoutineExecId ?? context.__metadata?.__routineExecId ?? null,
|
|
3335
|
-
created: formatTimestamp(Date.now())
|
|
3336
|
-
},
|
|
3337
|
-
__metadata: {
|
|
3338
|
-
__executionTraceId: executionTraceId
|
|
3339
|
-
}
|
|
3323
|
+
this.emitMetrics("meta.runner.added_tasks", {
|
|
3324
|
+
data: {
|
|
3325
|
+
uuid: routineExecId,
|
|
3326
|
+
name: routineName,
|
|
3327
|
+
routineVersion,
|
|
3328
|
+
isMeta,
|
|
3329
|
+
executionTraceId,
|
|
3330
|
+
context: ctx.getContext(),
|
|
3331
|
+
metaContext: ctx.getMetadata(),
|
|
3332
|
+
previousRoutineExecution: context.__localRoutineExecId ?? context.__metadata?.__routineExecId ?? null,
|
|
3333
|
+
created: formatTimestamp(Date.now())
|
|
3340
3334
|
},
|
|
3341
|
-
|
|
3342
|
-
|
|
3335
|
+
__metadata: {
|
|
3336
|
+
__executionTraceId: executionTraceId
|
|
3337
|
+
}
|
|
3338
|
+
});
|
|
3343
3339
|
}
|
|
3344
3340
|
allTasks.forEach(
|
|
3345
3341
|
(task) => this.currentRun.addNode(
|