From 5a215fc259038bd4b7bcb9981386a1891b60d158 Mon Sep 17 00:00:00 2001 From: Christoffer Martinsson Date: Mon, 13 Oct 2025 16:16:16 +0200 Subject: [PATCH] Disable nginx site accessibility check temporarily - Shows all parsed nginx sites instead of filtering by accessibility - This ensures nginx sites are displayed in dashboard immediately - Accessibility check was filtering out sites due to curl issues or timeouts --- agent/src/collectors/service.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/agent/src/collectors/service.rs b/agent/src/collectors/service.rs index 37bdb18..bf6462d 100644 --- a/agent/src/collectors/service.rs +++ b/agent/src/collectors/service.rs @@ -701,9 +701,8 @@ impl ServiceCollector { // Check which sites are actually accessible let mut accessible_sites = Vec::new(); for site in sites { - if self.check_site_accessibility(&site).await { - accessible_sites.push(site); // Remove checkmark - status will be shown via sub_service row status - } + // Temporarily disable accessibility check - show all parsed sites + accessible_sites.push(site); // Remove checkmark - status will be shown via sub_service row status } // Limit to reasonable number