feat: expose executor job observability
This commit is contained in:
@@ -410,6 +410,8 @@ export type OrchestratorCanaryReadiness = {
|
||||
latencyMs: number | null;
|
||||
checkpointKind: string | null;
|
||||
checkpointDurable: boolean | null;
|
||||
executorJobStoreKind: string | null;
|
||||
executorJobStoreDurable: boolean | null;
|
||||
execution: string | null;
|
||||
};
|
||||
checks: OrchestratorCanaryReadinessCheck[];
|
||||
@@ -452,6 +454,29 @@ export type OrchestratorShadowRunDetail = {
|
||||
data?: Record<string, unknown> | null;
|
||||
}>;
|
||||
error: { code: string; message: string } | null;
|
||||
executorJob: {
|
||||
available: boolean;
|
||||
state: {
|
||||
version?: string;
|
||||
jobId?: string;
|
||||
executor?: string;
|
||||
status?: string;
|
||||
reason?: string;
|
||||
attempts?: number;
|
||||
createdAt?: number;
|
||||
updatedAt?: number;
|
||||
} | null;
|
||||
events: Array<{
|
||||
version?: string;
|
||||
eventId?: string;
|
||||
jobId?: string;
|
||||
sequence?: number;
|
||||
type?: string;
|
||||
timestamp?: number;
|
||||
data?: Record<string, unknown> | null;
|
||||
}>;
|
||||
error: { code: string; message: string } | null;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user