From 527495d0abf5e23d0edf7c820108b5331deed32f Mon Sep 17 00:00:00 2001 From: youjie23 Date: Sat, 11 Oct 2025 00:15:42 +0800 Subject: [PATCH 1/2] enhance the alarm kernel with recovered status notification capability #13492 --- alarm.graphqls | 1 + 1 file changed, 1 insertion(+) diff --git a/alarm.graphqls b/alarm.graphqls index cc77128..b533868 100644 --- a/alarm.graphqls +++ b/alarm.graphqls @@ -28,6 +28,7 @@ type AlarmSnapshot { type AlarmMessage { startTime: Long! + recoveryTime: Long! scope: Scope id: ID! # The entity name of the alarm triggered. From 97056c9f4128f9549cac75462341f28765043a26 Mon Sep 17 00:00:00 2001 From: youjie23 Date: Sat, 11 Oct 2025 09:59:38 +0800 Subject: [PATCH 2/2] make recoveryTime nullable for compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: 吴晟 Wu Sheng --- alarm.graphqls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alarm.graphqls b/alarm.graphqls index b533868..bc6ded6 100644 --- a/alarm.graphqls +++ b/alarm.graphqls @@ -28,7 +28,7 @@ type AlarmSnapshot { type AlarmMessage { startTime: Long! - recoveryTime: Long! + recoveryTime: Long scope: Scope id: ID! # The entity name of the alarm triggered.