From 9218d22954d61296a32c49373ab0f17f0be59cfe Mon Sep 17 00:00:00 2001 From: zwlucas Date: Fri, 29 May 2026 17:41:33 -0300 Subject: feat: add SSL info tracking and server metrics collection Signed-off-by: zwlucas --- backend/internal/model/types.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'backend/internal/model/types.go') diff --git a/backend/internal/model/types.go b/backend/internal/model/types.go index 4e439b8..40dc006 100644 --- a/backend/internal/model/types.go +++ b/backend/internal/model/types.go @@ -50,3 +50,11 @@ type ServiceWithHeartbeat struct { Service LastHeartbeat *Heartbeat `json:"last_heartbeat,omitempty"` } + +type SSLInfo struct { + ServiceID int `json:"service_id"` + Issuer string `json:"issuer"` + ExpiresAt time.Time `json:"expires_at"` + DaysRemaining int `json:"days_remaining"` + CheckedAt time.Time `json:"checked_at"` +} -- cgit v1.2.3