A (short) network interruption may get undetected but when a job is started during the interruption, you may get this message in AWI (read bottom up):
The interruption is detected on the AE and Agent side with the following messages:
CP log:
20260226/125046.098 - 57 U00029416 Agent Challenge authorization successful : 'WIN-AE24-JAVA'
20260226/125159.302 - 65 U00045545 Web Socket error: 'ClosedChannel'
20260226/125159.302 - 65 U00003407 Client connection 'CP008#00000006' from '<IP>.23818' has logged off from the Server.
Agent log:
20260226/125138.584 - U00045437 Memory usage: Heap '83.81' MB, Non-Heap '36.90' MB.
20260226/125142.233 - U02000385 FT '&02': Web socket error: 'Connection reset'.
20260226/125142.233 - U00045014 Exception 'java.net.SocketException: "Connection reset"' at 'sun.nio.ch.SocketChannelImpl.throwConnectionReset()'.
20260226/125142.274 - U02000196 Next attempt to create a CP connection in '10' seconds.
Such a network interruption can be simulated by temporarily switching off the network card on the remote Agent side using this Powershell command:
Disable-NetAdapter -Name "Ethernet" -Confirm:$false; Start-Sleep -Seconds 60; Enable-NetAdapter -Name "Ethernet"
Or this Linux command:
sudo ip link set eth0 down && sleep 60 && sudo ip link set eth0 up
The root cause is network interruptions
Check with your network team to investigate and improve the network.
Note that 2 related message are incorrectly formatted; these will be fixed in a future version of the product under the reference DE183660:
U00000008 Unexpected response to message type '&01'.
and
U02000385 FT '&02': Web socket error: 'Connection reset'.