Fix the previous analysis result missing in the ALS `k8s-mesh` analyzer (#12611)

This commit is contained in:
mrproliu 2024-09-12 12:41:01 +08:00 committed by GitHub
parent a71d7ef1f8
commit 0f79e35283
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View File

@ -62,6 +62,7 @@
* Add self-observability metrics for OpenTelemetry receiver.
* Support service level metrics aggregate when missing pod context in eBPF Access Log Receiver.
* Fix query `getGlobalTopology` throw exception when didn't find any services by the given Layer.
* Fix the previous analysis result missing in the ALS `k8s-mesh` analyzer.
#### UI

View File

@ -79,6 +79,10 @@ public class K8sALSServiceMeshHTTPAnalysis extends AbstractALSAnalyzer {
return result;
}
return analyzeSideCar(result, entry);
case NONE:
// For the Ambient Istio with waypoint mode, the role is NONE.
// The analysis should keep the result from other roles.
return result;
}
return Result.builder().build();