Fix the previous analysis result missing in the ALS `k8s-mesh` analyzer (#12611)
This commit is contained in:
parent
a71d7ef1f8
commit
0f79e35283
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue