n8n 2.26.8 → 2.26.9

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.
@@ -4191,6 +4191,11 @@ let InstanceAiService = class InstanceAiService {
4191
4191
  ...(hasArchived ? { archivedWorkflowIds } : {}),
4192
4192
  },
4193
4193
  });
4194
+ this.telemetry.track('instance_ai_run_finished', {
4195
+ thread_id: threadId,
4196
+ run_id: runId,
4197
+ status: effectiveStatus,
4198
+ });
4194
4199
  }
4195
4200
  async finalizeRun(threadId, runId, status, snapshotStorage, options) {
4196
4201
  this.publishRunFinish(threadId, runId, status, undefined, options?.archivedWorkflowIds);