From 2a1305f2315d8d0625a75b4627cc6c8292abb486 Mon Sep 17 00:00:00 2001 From: vimtor Date: Thu, 7 May 2026 21:07:19 +0200 Subject: [PATCH] chore: increase alerting threshold --- infra/monitoring.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/infra/monitoring.ts b/infra/monitoring.ts index aad090aa80..313e6c1dd4 100644 --- a/infra/monitoring.ts +++ b/infra/monitoring.ts @@ -100,7 +100,7 @@ new honeycomb.Trigger("IncreasedModelHttpErrorsGo", { queryJson: modelHttpErrorsQuery("go"), alertType: "on_change", frequency: 300, - thresholds: [{ op: ">=", value: 0.8, exceededLimit: 1 }], + thresholds: [{ op: ">=", value: 0.9, exceededLimit: 1 }], recipients: [ { id: webhookRecipient.id, @@ -119,7 +119,7 @@ new honeycomb.Trigger("IncreasedModelHttpErrorsZen", { queryJson: modelHttpErrorsQuery("zen"), alertType: "on_change", frequency: 300, - thresholds: [{ op: ">=", value: 0.8, exceededLimit: 1 }], + thresholds: [{ op: ">=", value: 0.9, exceededLimit: 1 }], recipients: [ { id: webhookRecipient.id, @@ -138,7 +138,7 @@ new honeycomb.Trigger("IncreasedProviderHttpErrorsGo", { queryJson: providerHttpErrorsQuery("go"), alertType: "on_change", frequency: 600, - thresholds: [{ op: ">=", value: 0.8, exceededLimit: 1 }], + thresholds: [{ op: ">=", value: 0.9, exceededLimit: 1 }], recipients: [ { id: webhookRecipient.id, @@ -157,7 +157,7 @@ new honeycomb.Trigger("IncreasedProviderHttpErrorsZen", { queryJson: providerHttpErrorsQuery("zen"), alertType: "on_change", frequency: 600, - thresholds: [{ op: ">=", value: 0.8, exceededLimit: 1 }], + thresholds: [{ op: ">=", value: 0.9, exceededLimit: 1 }], recipients: [ { id: webhookRecipient.id,