From f21c582db9e0abb9f2c2ef769567a44787fcfa17 Mon Sep 17 00:00:00 2001 From: vimtor Date: Fri, 15 May 2026 22:18:37 +0200 Subject: [PATCH] chore: reduce alerting noise --- infra/monitoring.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/monitoring.ts b/infra/monitoring.ts index a2b4810993..06513c58cf 100644 --- a/infra/monitoring.ts +++ b/infra/monitoring.ts @@ -73,7 +73,7 @@ const modelHttpErrorsQuery = (product: "go" | "zen") => { const providerHttpErrorsQuery = () => { const filters = [ { column: "provider", op: "exists" }, - { column: "provider", op: "!=", value: "fireworks-go-glm-5.1" }, + { column: "status", op: "!=", value: "404" }, { column: "user_agent", op: "contains", value: "opencode" }, ] const successHttpStatus = calculatedField({ @@ -105,7 +105,7 @@ const providerHttpErrorsQuery = () => { }, ], formulas: [ - { name: "ERROR", expression: "IF(GTE(SUM($SUCCESS, $FAILED), 50), DIV($FAILED, SUM($SUCCESS, $FAILED)), 0)" }, + { name: "ERROR", expression: "IF(GTE(SUM($SUCCESS, $FAILED), 100), DIV($FAILED, SUM($SUCCESS, $FAILED)), 0)" }, ], timeRange: 900, }).json