From 202a09993c07e8cde98aeaa1ffe645f696de34a2 Mon Sep 17 00:00:00 2001 From: Tola Leng Date: Thu, 26 Jun 2025 14:17:09 +0700 Subject: [PATCH] feat: Implement "All Monitoring" option Update the service detail page to display all monitoring data (default and regional) in separate lines on the graph when "All Monitoring" is selected. Preserve the original functionality of other monitoring source options. --- application/src/types/service.types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application/src/types/service.types.ts b/application/src/types/service.types.ts index 240732c..e2dbc9a 100644 --- a/application/src/types/service.types.ts +++ b/application/src/types/service.types.ts @@ -70,6 +70,8 @@ export interface UptimeData { // Regional monitoring fields region_name?: string; agent_id?: string | number; + // Source identifier for multi-source display + source?: string; } export interface PingData {