From 30d5dbfa98cb2e1b78f5e358a8a161e26e0e798c Mon Sep 17 00:00:00 2001 From: Jongmin Kim Date: Tue, 7 Jan 2025 11:48:49 +0900 Subject: [PATCH] feat: add duration fields to alert info Signed-off-by: Jongmin Kim --- proto/spaceone/api/alert_manager/v1/alert.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/proto/spaceone/api/alert_manager/v1/alert.proto b/proto/spaceone/api/alert_manager/v1/alert.proto index d9a7ad8e6..6adecec97 100644 --- a/proto/spaceone/api/alert_manager/v1/alert.proto +++ b/proto/spaceone/api/alert_manager/v1/alert.proto @@ -225,6 +225,8 @@ message AlertInfo { string updated_at = 32; string acknowledged_at = 33; string resolved_at = 34; + int64 acknowledged_duration = 35; + int64 resolved_duration = 36; } message AlertsInfo {