From 9ee16c7d1a1cd3a34de27115d081442ee578d96f Mon Sep 17 00:00:00 2001 From: Flavien David Date: Thu, 11 Apr 2024 18:55:27 +0200 Subject: [PATCH] Please alerting temporal TS (#4691) --- alerting/temporal/src/qdrant/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alerting/temporal/src/qdrant/index.ts b/alerting/temporal/src/qdrant/index.ts index 70ff550d3e65..774485407845 100644 --- a/alerting/temporal/src/qdrant/index.ts +++ b/alerting/temporal/src/qdrant/index.ts @@ -29,7 +29,7 @@ async function fetchPrometheusMetrics( "api-key": QDRANT_MONITORING_API_KEY, }, }); - const metricLines = response.data.trim().split("\n"); + const metricLines: string[] = response.data.trim().split("\n"); // Parse and update metric values. metricLines.forEach((line) => {