feat(core): Add queue events to log streaming (#16427)

This commit is contained in:
Iván Ovejero
2025-06-17 16:26:33 +02:00
committed by GitHub
parent 84fa924ce6
commit 93ac46c581
13 changed files with 316 additions and 4 deletions

View File

@@ -2143,6 +2143,9 @@ export interface IRun {
startedAt: Date;
stoppedAt?: Date;
status: ExecutionStatus;
/** ID of the job this execution belongs to. Only in scaling mode. */
jobId?: string;
}
// Contains all the data which is needed to execute a workflow and so also to

View File

@@ -15,6 +15,7 @@ export const enum EventMessageTypeNames {
execution = '$$EventMessageExecution',
aiNode = '$$EventMessageAiNode',
runner = '$$EventMessageRunner',
queue = '$$EventMessageQueue',
}
export const enum MessageEventBusDestinationTypeNames {