From 9ed70ba8212faccc1168a264d26b0d3b13a61ec6 Mon Sep 17 00:00:00 2001 From: Rares Mardare Date: Thu, 27 Jun 2024 12:47:47 +0300 Subject: [PATCH] Changed polling to 10s for alert groups (#4586) # What this PR does As discussed in here https://raintank-corp.slack.com/archives/C0229FD3CE9/p1719242462717459 --- grafana-plugin/src/pages/incidents/Incidents.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grafana-plugin/src/pages/incidents/Incidents.tsx b/grafana-plugin/src/pages/incidents/Incidents.tsx index 4c5d3547..9db18ffb 100644 --- a/grafana-plugin/src/pages/incidents/Incidents.tsx +++ b/grafana-plugin/src/pages/incidents/Incidents.tsx @@ -81,7 +81,7 @@ interface IncidentsPageState { isFirstIncidentsFetchDone: boolean; } -const POLLING_NUM_SECONDS = 15; +const POLLING_NUM_SECONDS = 10; const PAGINATION_OPTIONS = [ { label: '25', value: 25 },