From e8e14a5e53ff128fe4673fa388de1e3d49bb659f Mon Sep 17 00:00:00 2001 From: Sonia Aguilar <33540275+soniaAguilarPeiron@users.noreply.github.com> Date: Thu, 23 May 2024 17:23:50 +0200 Subject: [PATCH] Gops: Fix wrong endpoint for incidents check (#88238) Fix wrong endpoint for incidents check --- public/app/features/alerting/unified/api/incidentsApi.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/app/features/alerting/unified/api/incidentsApi.ts b/public/app/features/alerting/unified/api/incidentsApi.ts index e237390f639..28d37ac5b48 100644 --- a/public/app/features/alerting/unified/api/incidentsApi.ts +++ b/public/app/features/alerting/unified/api/incidentsApi.ts @@ -14,7 +14,8 @@ export const incidentsApi = alertingApi.injectEndpoints({ endpoints: (build) => ({ getIncidentsPluginConfig: build.query({ query: (integration) => ({ - url: getProxyApiUrl('/api/internal/v1/organization/config-checks/'), + url: getProxyApiUrl('/api/ConfigurationTrackerService.GetConfigurationTracker'), + data: integration, method: 'POST', showErrorAlert: false, }),