diff --git a/agent/src/collectors/service.rs b/agent/src/collectors/service.rs index 36fdbe6..d933938 100644 --- a/agent/src/collectors/service.rs +++ b/agent/src/collectors/service.rs @@ -826,14 +826,10 @@ impl ServiceCollector { *start_index = i - 1; - // Build site info string - if !server_names.is_empty() { + // Build site info string - only show sites with meaningful routing + if !server_names.is_empty() && !destinations.is_empty() { let primary_name = &server_names[0]; - if destinations.is_empty() { - Some(primary_name.clone()) - } else { - Some(format!("{} {}", primary_name, destinations[0])) - } + Some(format!("{} {}", primary_name, destinations[0])) } else { None }