From 119cf912b8afcc8fdd2250ea05d21958c1a6aa60 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Tue, 14 Apr 2026 23:21:23 +0200 Subject: [PATCH] feat: add useStartupLogs hook for container startup log polling Co-Authored-By: Claude Opus 4.6 (1M context) --- ui/src/api/queries/logs.ts | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/ui/src/api/queries/logs.ts b/ui/src/api/queries/logs.ts index 416b0e85..0d35f52c 100644 --- a/ui/src/api/queries/logs.ts +++ b/ui/src/api/queries/logs.ts @@ -31,6 +31,7 @@ export interface LogSearchParams { application?: string; agentId?: string; source?: string; + environment?: string; exchangeId?: string; logger?: string; from?: string; @@ -48,6 +49,7 @@ async function fetchLogs(params: LogSearchParams): Promise