Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TLSSocket not destroyed on TCP socket timeout #50884

Open
mantysalo opened this issue Nov 23, 2023 · 4 comments
Open

TLSSocket not destroyed on TCP socket timeout #50884

mantysalo opened this issue Nov 23, 2023 · 4 comments

Comments

@mantysalo
Copy link

mantysalo commented Nov 23, 2023

Version

v21.2.0

Platform

Linux aba9cc30a963 5.15.49-linuxkit #1 SMP PREEMPT Tue Sep 13 07:51:32 UTC 2022 aarch64 GNU/Linux

Subsystem

net, tls, http2

What steps will reproduce the bug?

Reproduction repo with instructions can be found here:

https://github.com/mantysalo/http2-issue

I have not found a way to reproduce this locally using just node, as it seems to require a network disconnect, which is difficult to simulate. Also, docker provides a "standard" environment so this should be easily reproduced on any machine.

How often does it reproduce? Is there a required condition?

Reproduces 100% of the time.

Required conditions:

  • Send queue of the TCP socket must be full
  • Socket times out and is terminated by the OS

If the Send queue of the TCP socket is not full, a -110 error code is received here

https://github.com/nodejs/node/blob/4e713a3930b0758231ebaf6debbf30bb18eec920/lib/internal/stream_base_commons.js#L214C3-L219C4

and the socket is destroyed properly. (see logs from: #50884 (comment))

What is the expected behavior? Why is that the expected behavior?

The destroy method should be called on the socket once the socket has been terminated by the operating system.

What do you see instead?

The destroy method is not called, and no errors are being thrown or logged when using the socket that the operating system has destroyed.

Additional information

I found a similar issue from 2015: #4417 could be related?

@mantysalo
Copy link
Author

mantysalo commented Nov 23, 2023

Logs from a reproduction:

Node logs

Notice how the curl requests start coming through again but no node http2 body: Hello, World! logs are seen.

Logs from node & curl
2023-11-23T17:46:39.045838129Z Hello, World! (From curl)
2023-11-23T17:46:39.048897379Z Debugger listening on ws://0.0.0.0:9228/8efd54e0-7b3c-4a50-8c3c-cc48e27a3a91
2023-11-23T17:46:39.048905671Z For help, see: https://nodejs.org/en/docs/inspector
2023-11-23T17:46:39.098282171Z TLS 8: client _init handle? true
2023-11-23T17:46:39.098491212Z NET 8: pipe false undefined
2023-11-23T17:46:39.101926212Z NET 8: connect: find host http2-server
2023-11-23T17:46:39.102413004Z NET 8: connect: dns options { family: undefined, hints: 32 }
2023-11-23T17:46:39.102419337Z NET 8: connect: autodetecting
2023-11-23T17:46:39.104154087Z HTTP2 8: Http2Session client: created
2023-11-23T17:46:39.104257046Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:39.104613921Z TLS 8: client initRead handle? true buffered? false
2023-11-23T17:46:39.104618671Z NET 8: _read - n 16384 isConnecting? true hasHandle? true
2023-11-23T17:46:39.104807962Z NET 8: _read wait for connection
2023-11-23T17:46:39.105168712Z (node:8) Warning: Setting the NODE_DEBUG environment variable to 'http2' can expose sensitive data (such as passwords, tokens and authentication headers) in the resulting log.
2023-11-23T17:46:39.105173754Z (Use `node --trace-warnings ...` to show where the warning was created)
2023-11-23T17:46:39.105781546Z NET 8: connect/multiple: only one address found, switching back to single connection
2023-11-23T17:46:39.105785587Z NET 8: connect: attempting to connect to 192.168.32.2:3001 (addressType: 4)
2023-11-23T17:46:39.105985337Z NET 8: afterConnect
2023-11-23T17:46:39.105996629Z TLS 8: client _start handle? true connecting? false requestOCSP? false
2023-11-23T17:46:39.106118879Z NET 8: _read - n 16384 isConnecting? false hasHandle? true
2023-11-23T17:46:39.106125171Z NET 8: Socket._handle.readStart
2023-11-23T17:46:39.107441212Z TLS 8: client onhandshakedone
2023-11-23T17:46:39.107446171Z TLS 8: client _finishInit handle? true alpn h2 servername http2-server
2023-11-23T17:46:39.107460296Z TLS 8: client emit secureConnect. rejectUnauthorized: false, authorizationError: DEPTH_ZERO_SELF_SIGNED_CERT
2023-11-23T17:46:39.107496962Z HTTP2 8: Http2Session client: setting up session handle
2023-11-23T17:46:39.107594712Z HTTP2 8: Http2Session client: sending settings
2023-11-23T17:46:39.107600046Z HTTP2 8: Http2Session client: submitting settings
2023-11-23T17:46:39.107612837Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:39.107747379Z HTTP2 8: Http2Stream 1 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:39.108618546Z HTTP2 8: Http2Session client: settings received
2023-11-23T17:46:39.108633837Z HTTP2 8: Http2Stream 1 [Http2Session client]: headers received
2023-11-23T17:46:39.108636421Z HTTP2 8: Http2Stream 1 [Http2Session client]: emitting stream 'response' event
2023-11-23T17:46:39.109055504Z node http2 body: Hello, World!
2023-11-23T17:46:39.109077504Z HTTP2 8: Http2Stream 1 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T17:46:39.109229629Z HTTP2 8: Http2Stream 1 [Http2Session client]: destroying stream
2023-11-23T17:46:40.074883338Z Hello, World! (From curl)
2023-11-23T17:46:40.213024671Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:40.214193255Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:40.214378838Z HTTP2 8: Http2Stream 3 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:40.218124880Z HTTP2 8: Http2Stream 3 [Http2Session client]: headers received
2023-11-23T17:46:40.218164755Z HTTP2 8: Http2Stream 3 [Http2Session client]: emitting stream 'response' event
2023-11-23T17:46:40.219403588Z node http2 body: Hello, World!
2023-11-23T17:46:40.219469671Z HTTP2 8: Http2Stream 3 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T17:46:40.219570796Z HTTP2 8: Http2Stream 3 [Http2Session client]: destroying stream
2023-11-23T17:46:41.099672755Z Hello, World! (From curl)
2023-11-23T17:46:41.318302172Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:41.318858755Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:41.319228213Z HTTP2 8: Http2Stream 5 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:41.324290088Z HTTP2 8: Http2Stream 5 [Http2Session client]: headers received
2023-11-23T17:46:41.325644630Z HTTP2 8: Http2Stream 5 [Http2Session client]: emitting stream 'response' event
2023-11-23T17:46:41.326244047Z HTTP2 8: Http2Stream 5 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T17:46:41.326270922Z HTTP2 8: Http2Stream 5 [Http2Session client]: destroying stream
2023-11-23T17:46:41.326273130Z node http2 body: Hello, World!
2023-11-23T17:46:42.128892130Z Hello, World! (From curl)
2023-11-23T17:46:42.425473506Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:42.425881964Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:42.426175131Z HTTP2 8: Http2Stream 7 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:42.429652089Z HTTP2 8: Http2Stream 7 [Http2Session client]: headers received
2023-11-23T17:46:42.429715881Z HTTP2 8: Http2Stream 7 [Http2Session client]: emitting stream 'response' event
2023-11-23T17:46:42.430447172Z HTTP2 8: Http2Stream 7 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T17:46:42.430674464Z node http2 body: Hello, World!
2023-11-23T17:46:42.430942131Z HTTP2 8: Http2Stream 7 [Http2Session client]: destroying stream
2023-11-23T17:46:43.161784548Z Hello, World! (From curl)
2023-11-23T17:46:43.528557964Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:43.529206089Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:43.529402506Z HTTP2 8: Http2Stream 9 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:43.531700256Z HTTP2 8: Http2Stream 9 [Http2Session client]: headers received
2023-11-23T17:46:43.531748881Z HTTP2 8: Http2Stream 9 [Http2Session client]: emitting stream 'response' event
2023-11-23T17:46:43.532302089Z node http2 body: Hello, World!
2023-11-23T17:46:43.532328964Z HTTP2 8: Http2Stream 9 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T17:46:43.532340714Z HTTP2 8: Http2Stream 9 [Http2Session client]: destroying stream
2023-11-23T17:46:44.193420131Z Hello, World! (From curl)
2023-11-23T17:46:44.634035965Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:44.635204882Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:44.635250257Z HTTP2 8: Http2Stream 11 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:44.637997757Z HTTP2 8: Http2Stream 11 [Http2Session client]: headers received
2023-11-23T17:46:44.638036007Z HTTP2 8: Http2Stream 11 [Http2Session client]: emitting stream 'response' event
2023-11-23T17:46:44.638596215Z HTTP2 8: Http2Stream 11 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T17:46:44.638607048Z node http2 body: Hello, World!
2023-11-23T17:46:44.639092965Z HTTP2 8: Http2Stream 11 [Http2Session client]: destroying stream
2023-11-23T17:46:45.233599257Z Hello, World! (From curl)
2023-11-23T17:46:45.737311257Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:45.738577424Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:45.739040757Z HTTP2 8: Http2Stream 13 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:45.742204882Z HTTP2 8: Http2Stream 13 [Http2Session client]: headers received
2023-11-23T17:46:45.742238174Z HTTP2 8: Http2Stream 13 [Http2Session client]: emitting stream 'response' event
2023-11-23T17:46:45.742630549Z node http2 body: Hello, World!
2023-11-23T17:46:45.742695840Z HTTP2 8: Http2Stream 13 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T17:46:45.742703632Z HTTP2 8: Http2Stream 13 [Http2Session client]: destroying stream
2023-11-23T17:46:46.267639382Z Hello, World! (From curl)
2023-11-23T17:46:46.841249883Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:46.842882383Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:46.843141966Z HTTP2 8: Http2Stream 15 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:46.845242758Z HTTP2 8: Http2Stream 15 [Http2Session client]: headers received
2023-11-23T17:46:46.845276716Z HTTP2 8: Http2Stream 15 [Http2Session client]: emitting stream 'response' event
2023-11-23T17:46:46.845680591Z node http2 body: Hello, World!
2023-11-23T17:46:46.846110674Z HTTP2 8: Http2Stream 15 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T17:46:46.846128758Z HTTP2 8: Http2Stream 15 [Http2Session client]: destroying stream
2023-11-23T17:46:47.302789300Z Hello, World! (From curl)
2023-11-23T17:46:47.945153758Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:47.948308842Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:47.948370800Z HTTP2 8: Http2Stream 17 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:47.952065342Z HTTP2 8: Http2Stream 17 [Http2Session client]: headers received
2023-11-23T17:46:47.952115883Z HTTP2 8: Http2Stream 17 [Http2Session client]: emitting stream 'response' event
2023-11-23T17:46:47.952556050Z node http2 body: Hello, World!
2023-11-23T17:46:47.952948550Z HTTP2 8: Http2Stream 17 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T17:46:47.953077425Z HTTP2 8: Http2Stream 17 [Http2Session client]: destroying stream
2023-11-23T17:46:48.343557717Z Hello, World! (From curl)
2023-11-23T17:46:49.048824550Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:49.049349384Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:49.050462759Z HTTP2 8: Http2Stream 19 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:49.052103009Z HTTP2 8: Http2Stream 19 [Http2Session client]: headers received
2023-11-23T17:46:49.052139092Z HTTP2 8: Http2Stream 19 [Http2Session client]: emitting stream 'response' event
2023-11-23T17:46:49.052624425Z HTTP2 8: Http2Stream 19 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T17:46:49.052665342Z node http2 body: Hello, World!
2023-11-23T17:46:49.052684134Z HTTP2 8: Http2Stream 19 [Http2Session client]: destroying stream
2023-11-23T17:46:49.368868092Z Hello, World! (From curl)
2023-11-23T17:46:50.151787634Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:50.151885801Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:50.151939468Z HTTP2 8: Http2Stream 21 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:51.253475301Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:51.253543801Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:51.253612926Z HTTP2 8: Http2Stream 23 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:51.397207385Z  (From curl)
2023-11-23T17:46:52.355256927Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:52.355387677Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:52.355499135Z HTTP2 8: Http2Stream 25 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:53.411115469Z  (From curl)
2023-11-23T17:46:53.457160886Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:53.457221719Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:53.457318594Z HTTP2 8: Http2Stream 27 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:54.560242511Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:54.560266178Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:54.560416261Z HTTP2 8: Http2Stream 29 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:55.444511928Z  (From curl)
2023-11-23T17:46:55.667028095Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:55.667245304Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:55.667267720Z HTTP2 8: Http2Stream 31 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:56.771481679Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:56.771533887Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:56.771683304Z HTTP2 8: Http2Stream 33 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:57.478644221Z  (From curl)
2023-11-23T17:46:57.875487388Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:57.875770221Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:57.875965471Z HTTP2 8: Http2Stream 35 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:58.978881763Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:46:58.979239430Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:46:58.979550180Z HTTP2 8: Http2Stream 37 [Http2Session client]: shutting down writable on _final
2023-11-23T17:46:59.517870972Z  (From curl)
2023-11-23T17:47:00.082086666Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:00.082438541Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:00.082839125Z HTTP2 8: Http2Stream 39 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:01.187876250Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:01.188129209Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:01.188349084Z HTTP2 8: Http2Stream 41 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:01.553414584Z  (From curl)
2023-11-23T17:47:02.294868584Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:02.295065042Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:02.295248667Z HTTP2 8: Http2Stream 43 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:03.397263043Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:03.397813835Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:03.397847960Z HTTP2 8: Http2Stream 45 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:03.588841585Z  (From curl)
2023-11-23T17:47:04.503696002Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:04.503992043Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:04.504016377Z HTTP2 8: Http2Stream 47 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:05.606672002Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:05.606875002Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:05.607037294Z HTTP2 8: Http2Stream 49 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:05.615946419Z  (From curl)
2023-11-23T17:47:06.710267086Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:06.710703836Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:06.711128128Z HTTP2 8: Http2Stream 51 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:07.651904420Z  (From curl)
2023-11-23T17:47:07.813959253Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:07.814156878Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:07.814469337Z HTTP2 8: Http2Stream 53 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:08.917920421Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:08.918266754Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:08.919021921Z HTTP2 8: Http2Stream 55 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:09.673369171Z  (From curl)
2023-11-23T17:47:10.024389129Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:10.024796338Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:10.024822504Z HTTP2 8: Http2Stream 57 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:11.131576630Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:11.131833088Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:11.131907755Z HTTP2 8: Http2Stream 59 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:11.691359172Z  (From curl)
2023-11-23T17:47:12.237541672Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:12.238165339Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:12.238764089Z HTTP2 8: Http2Stream 61 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:13.345189006Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:13.345792881Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:13.346303423Z HTTP2 8: Http2Stream 63 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:13.722285506Z  (From curl)
2023-11-23T17:47:14.450923632Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:14.451065465Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:14.451360673Z HTTP2 8: Http2Stream 65 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:15.554291965Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:15.554677299Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:15.555168799Z HTTP2 8: Http2Stream 67 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:15.756862924Z  (From curl)
2023-11-23T17:47:16.656976799Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:16.657227674Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:16.657709799Z HTTP2 8: Http2Stream 69 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:17.760410175Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:17.760812550Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:17.760843216Z HTTP2 8: Http2Stream 71 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:17.788936466Z  (From curl)
2023-11-23T17:47:18.867845134Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:18.868036425Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:18.868248425Z HTTP2 8: Http2Stream 73 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:19.817607134Z  (From curl)
2023-11-23T17:47:19.969601551Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:19.969783134Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:19.969787801Z HTTP2 8: Http2Stream 75 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:21.074323051Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:21.074586218Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:21.074910343Z HTTP2 8: Http2Stream 77 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:21.853029552Z  (From curl)
2023-11-23T17:47:22.182152052Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:22.182656510Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:22.182687010Z HTTP2 8: Http2Stream 79 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:23.287169302Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:23.287464094Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:23.287483886Z HTTP2 8: Http2Stream 81 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:23.888586136Z  (From curl)
2023-11-23T17:47:24.391412220Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:24.391839261Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:24.391873136Z HTTP2 8: Http2Stream 83 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:25.498004262Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:25.498206553Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:25.498565928Z HTTP2 8: Http2Stream 85 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:25.912761220Z  (From curl)
2023-11-23T17:47:26.601934596Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:26.602188512Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:26.602291762Z HTTP2 8: Http2Stream 87 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:27.705070180Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:27.705468638Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:27.705496680Z HTTP2 8: Http2Stream 89 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:27.929797388Z  (From curl)
2023-11-23T17:47:28.808413638Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:28.808884888Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:28.809269013Z HTTP2 8: Http2Stream 91 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:28.961390388Z Hello, World! (From curl)
2023-11-23T17:47:29.916432375Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:29.916910291Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:29.916948958Z HTTP2 8: Http2Stream 93 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:29.989693708Z Hello, World! (From curl)
2023-11-23T17:47:31.017817333Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:31.018028917Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:31.018044000Z HTTP2 8: Http2Stream 95 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:31.021692583Z Hello, World! (From curl)
2023-11-23T17:47:32.052194584Z Hello, World! (From curl)
2023-11-23T17:47:32.122434334Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:32.122769209Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:32.123107834Z HTTP2 8: Http2Stream 97 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:33.087559543Z Hello, World! (From curl)
2023-11-23T17:47:33.226333668Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:33.226469710Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:33.226729751Z HTTP2 8: Http2Stream 99 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:34.117501502Z Hello, World! (From curl)
2023-11-23T17:47:34.330218002Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:34.330697710Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:34.331018377Z HTTP2 8: Http2Stream 101 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:35.154571877Z Hello, World! (From curl)
2023-11-23T17:47:35.434753294Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:35.434959836Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:35.435095044Z HTTP2 8: Http2Stream 103 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:36.188956711Z Hello, World! (From curl)
2023-11-23T17:47:36.539411003Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:36.539841628Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:36.539885961Z HTTP2 8: Http2Stream 105 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:37.226744170Z Hello, World! (From curl)
2023-11-23T17:47:37.643084212Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:37.643579295Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:37.643657878Z HTTP2 8: Http2Stream 107 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:38.264215670Z Hello, World! (From curl)
2023-11-23T17:47:38.746018629Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:38.746133629Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:38.746145920Z HTTP2 8: Http2Stream 109 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:39.301199254Z Hello, World! (From curl)
2023-11-23T17:47:39.846891754Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:39.847150754Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:39.847351546Z HTTP2 8: Http2Stream 111 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:40.338276296Z Hello, World! (From curl)
2023-11-23T17:47:40.948797588Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:40.948850755Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:40.949130588Z HTTP2 8: Http2Stream 113 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:41.373494672Z Hello, World! (From curl)
2023-11-23T17:47:42.049693422Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:42.049931422Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:42.050696630Z HTTP2 8: Http2Stream 115 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:42.409005339Z Hello, World! (From curl)
2023-11-23T17:47:43.150758423Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:43.150932881Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:43.150949673Z HTTP2 8: Http2Stream 117 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:43.448969214Z Hello, World! (From curl)
2023-11-23T17:47:44.255446340Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:44.255568215Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:44.255595965Z HTTP2 8: Http2Stream 119 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:44.483135965Z Hello, World! (From curl)
2023-11-23T17:47:45.357125590Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:45.357180007Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:45.357362632Z HTTP2 8: Http2Stream 121 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:45.512832299Z Hello, World! (From curl)
2023-11-23T17:47:46.463882757Z HTTP2 8: Http2Session client: initiating request
2023-11-23T17:47:46.464063341Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T17:47:46.464093049Z HTTP2 8: Http2Stream 123 [Http2Session client]: shutting down writable on _final
2023-11-23T17:47:46.547120049Z Hello, World! (From curl)

Netstat logs

Notice here how the Send-Q does not increment after it reaches 130572 even though requests are still coming from the application. Also notice that the socket disappears from the list at the timestamp of Thu Nov 23 17:47:16 UTC 2023. Indicating that the socket was terminated by the OS, as there are no debug logs of the termination in the node logs.

netstat logs
Thu Nov 23 17:46:39 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:40 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:41 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:42 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:43 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:44 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:45 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:46 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:47 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:48 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:49 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:50 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  14114 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (0.15/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:51 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      1 192.168.48.2:52506      143.244.220.150:3001    SYN_SENT    95/curl              on (0.31/0/0)
tcp        0  14114 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (0.35/0/2)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:52 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  28228 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (1.00/0/3)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:53 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      1 192.168.48.2:52518      143.244.220.150:3001    SYN_SENT    104/curl             on (0.16/0/0)
tcp        0  42342 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (0.00/0/3)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:54 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  56456 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (2.24/0/4)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:55 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  70570 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (1.23/0/4)
tcp        0      1 192.168.48.2:54750      143.244.220.150:3001    SYN_SENT    113/curl             on (0.17/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:56 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  84684 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (0.21/0/4)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:57 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      1 192.168.48.2:54766      143.244.220.150:3001    SYN_SENT    122/curl             on (0.17/0/0)
tcp        0  98798 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (5.68/0/5)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:58 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0 112912 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (4.67/0/5)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:46:59 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      1 192.168.48.2:54782      143.244.220.150:3001    SYN_SENT    131/curl             on (0.17/0/0)
tcp        0 127026 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (3.65/0/5)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:00 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0 130572 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (2.63/0/5)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:01 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      1 192.168.48.2:54798      143.244.220.150:3001    SYN_SENT    140/curl             on (0.18/0/0)
tcp        0 130572 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (1.62/0/5)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:02 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0 130572 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (0.60/0/5)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:03 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0 130572 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (12.54/0/6)
tcp        0      1 192.168.48.2:54812      143.244.220.150:3001    SYN_SENT    149/curl             on (0.19/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:04 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0 130572 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (11.53/0/6)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:05 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0 130572 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (10.53/0/6)
tcp        0      1 192.168.48.2:32918      143.244.220.150:3001    SYN_SENT    158/curl             on (0.19/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:06 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0 130572 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (9.52/0/6)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:07 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0 130572 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (8.51/0/6)
tcp        0      1 192.168.48.2:32922      143.244.220.150:3001    SYN_SENT    167/curl             on (0.22/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:08 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0 130572 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (7.50/0/6)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:09 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      1 192.168.48.2:32932      143.244.220.150:3001    SYN_SENT    176/curl             on (0.20/0/0)
tcp        0 130572 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (6.48/0/6)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:10 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0 130572 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (5.46/0/6)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:11 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0 130572 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (4.45/0/6)
tcp        0      1 192.168.48.2:32938      143.244.220.150:3001    SYN_SENT    185/curl             on (0.20/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:12 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0 130572 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (3.43/0/6)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:13 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0 130572 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (2.41/0/6)
tcp        0      1 192.168.48.2:32950      143.244.220.150:3001    SYN_SENT    194/curl             on (0.19/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:14 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0 130572 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (1.40/0/6)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:15 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0 130572 192.168.32.3:48344      192.168.32.2:3001       ESTABLISHED 8/node               probe (0.38/0/6)
tcp        0      1 192.168.48.2:42322      143.244.220.150:3001    SYN_SENT    203/curl             on (0.19/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:16 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:17 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      1 192.168.48.2:42336      143.244.220.150:3001    SYN_SENT    212/curl             on (0.20/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:18 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:19 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      1 192.168.48.2:42348      143.244.220.150:3001    SYN_SENT    221/curl             on (0.20/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:20 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:21 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      1 192.168.48.2:42358      143.244.220.150:3001    SYN_SENT    230/curl             on (0.21/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:22 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:23 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      1 192.168.48.2:42364      143.244.220.150:3001    SYN_SENT    239/curl             on (0.23/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:24 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:25 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      1 192.168.48.2:51498      143.244.220.150:3001    SYN_SENT    248/curl             on (0.23/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:26 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:27 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      1 192.168.48.2:51508      143.244.220.150:3001    SYN_SENT    257/curl             on (0.22/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:28 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:29 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:30 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:31 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:32 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:33 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:34 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:35 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:36 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:37 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:38 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:39 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:40 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:41 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:42 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:43 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:44 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:45 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 17:47:46 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:36115        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:54196        0.0.0.0:*                           -                    off (0.00/0/0)

@mantysalo
Copy link
Author

Logs from a reproduction where send queue of the socket was not full

Node logs

Notice that the socket gets correctly destroyed at the timestamp of 2023-11-23T18:08:02.140838751Z.

Logs from node & curl
2023-11-23T18:07:26.837366221Z Hello, World! (From curl)
2023-11-23T18:07:26.840706179Z Debugger listening on ws://0.0.0.0:9228/35e4048f-c588-4037-a66a-c97fc5b2fc61
2023-11-23T18:07:26.840716054Z For help, see: https://nodejs.org/en/docs/inspector
2023-11-23T18:07:26.889397262Z TLS 8: client _init handle? true
2023-11-23T18:07:26.889555471Z NET 8: pipe false undefined
2023-11-23T18:07:26.892917721Z NET 8: connect: find host http2-server
2023-11-23T18:07:26.893456346Z NET 8: connect: dns options { family: undefined, hints: 32 }
2023-11-23T18:07:26.893461596Z NET 8: connect: autodetecting
2023-11-23T18:07:26.895255512Z HTTP2 8: Http2Session client: created
2023-11-23T18:07:26.895439221Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:26.895822887Z TLS 8: client initRead handle? true buffered? false
2023-11-23T18:07:26.895833137Z NET 8: _read - n 16384 isConnecting? true hasHandle? true
2023-11-23T18:07:26.896010471Z NET 8: _read wait for connection
2023-11-23T18:07:26.896325637Z (node:8) Warning: Setting the NODE_DEBUG environment variable to 'http2' can expose sensitive data (such as passwords, tokens and authentication headers) in the resulting log.
2023-11-23T18:07:26.896330429Z (Use `node --trace-warnings ...` to show where the warning was created)
2023-11-23T18:07:26.896958554Z NET 8: connect/multiple: only one address found, switching back to single connection
2023-11-23T18:07:26.896962304Z NET 8: connect: attempting to connect to 192.168.32.2:3001 (addressType: 4)
2023-11-23T18:07:26.897134096Z NET 8: afterConnect
2023-11-23T18:07:26.897139971Z TLS 8: client _start handle? true connecting? false requestOCSP? false
2023-11-23T18:07:26.897313804Z NET 8: _read - n 16384 isConnecting? false hasHandle? true
2023-11-23T18:07:26.897321971Z NET 8: Socket._handle.readStart
2023-11-23T18:07:26.898559054Z TLS 8: client onhandshakedone
2023-11-23T18:07:26.898562721Z TLS 8: client _finishInit handle? true alpn h2 servername http2-server
2023-11-23T18:07:26.898620804Z TLS 8: client emit secureConnect. rejectUnauthorized: false, authorizationError: DEPTH_ZERO_SELF_SIGNED_CERT
2023-11-23T18:07:26.898625304Z HTTP2 8: Http2Session client: setting up session handle
2023-11-23T18:07:26.898749637Z HTTP2 8: Http2Session client: sending settings
2023-11-23T18:07:26.898753054Z HTTP2 8: Http2Session client: submitting settings
2023-11-23T18:07:26.898754721Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:26.898809262Z HTTP2 8: Http2Stream 1 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:26.899473054Z HTTP2 8: Http2Session client: settings received
2023-11-23T18:07:26.899494971Z HTTP2 8: Http2Stream 1 [Http2Session client]: headers received
2023-11-23T18:07:26.899497929Z HTTP2 8: Http2Stream 1 [Http2Session client]: emitting stream 'response' event
2023-11-23T18:07:26.899926929Z node http2 body: Hello, World!
2023-11-23T18:07:26.899947054Z HTTP2 8: Http2Stream 1 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T18:07:26.900096887Z HTTP2 8: Http2Stream 1 [Http2Session client]: destroying stream
2023-11-23T18:07:27.866397804Z Hello, World! (From curl)
2023-11-23T18:07:28.004680221Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:28.005639971Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:28.005723138Z HTTP2 8: Http2Stream 3 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:28.010171721Z HTTP2 8: Http2Stream 3 [Http2Session client]: headers received
2023-11-23T18:07:28.010241888Z HTTP2 8: Http2Stream 3 [Http2Session client]: emitting stream 'response' event
2023-11-23T18:07:28.011314721Z node http2 body: Hello, World!
2023-11-23T18:07:28.011385930Z HTTP2 8: Http2Stream 3 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T18:07:28.011819221Z HTTP2 8: Http2Stream 3 [Http2Session client]: destroying stream
2023-11-23T18:07:28.899477638Z Hello, World! (From curl)
2023-11-23T18:07:29.113776472Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:29.114073138Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:29.114481055Z HTTP2 8: Http2Stream 5 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:29.117874472Z HTTP2 8: Http2Stream 5 [Http2Session client]: headers received
2023-11-23T18:07:29.117918680Z HTTP2 8: Http2Stream 5 [Http2Session client]: emitting stream 'response' event
2023-11-23T18:07:29.118388513Z node http2 body: Hello, World!
2023-11-23T18:07:29.118641680Z HTTP2 8: Http2Stream 5 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T18:07:29.118655347Z HTTP2 8: Http2Stream 5 [Http2Session client]: destroying stream
2023-11-23T18:07:29.934658958Z Hello, World! (From curl)
2023-11-23T18:07:30.219729041Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:30.220240583Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:30.220330541Z HTTP2 8: Http2Stream 7 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:30.222863375Z HTTP2 8: Http2Stream 7 [Http2Session client]: headers received
2023-11-23T18:07:30.222913833Z HTTP2 8: Http2Stream 7 [Http2Session client]: emitting stream 'response' event
2023-11-23T18:07:30.223578083Z node http2 body: Hello, World!
2023-11-23T18:07:30.223666333Z HTTP2 8: Http2Stream 7 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T18:07:30.223681083Z HTTP2 8: Http2Stream 7 [Http2Session client]: destroying stream
2023-11-23T18:07:30.975878750Z Hello, World! (From curl)
2023-11-23T18:07:31.324076584Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:31.325121375Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:31.325770042Z HTTP2 8: Http2Stream 9 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:31.328600625Z HTTP2 8: Http2Stream 9 [Http2Session client]: headers received
2023-11-23T18:07:31.328654417Z HTTP2 8: Http2Stream 9 [Http2Session client]: emitting stream 'response' event
2023-11-23T18:07:31.329779375Z node http2 body: Hello, World!
2023-11-23T18:07:31.329871875Z HTTP2 8: Http2Stream 9 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T18:07:31.330559000Z HTTP2 8: Http2Stream 9 [Http2Session client]: destroying stream
2023-11-23T18:07:32.013918417Z Hello, World! (From curl)
2023-11-23T18:07:32.430509126Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:32.431165001Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:32.431235876Z HTTP2 8: Http2Stream 11 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:32.432267542Z HTTP2 8: Http2Stream 11 [Http2Session client]: headers received
2023-11-23T18:07:32.432288917Z HTTP2 8: Http2Stream 11 [Http2Session client]: emitting stream 'response' event
2023-11-23T18:07:32.432743001Z HTTP2 8: Http2Stream 11 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T18:07:32.432751917Z node http2 body: Hello, World!
2023-11-23T18:07:32.433025917Z HTTP2 8: Http2Stream 11 [Http2Session client]: destroying stream
2023-11-23T18:07:33.046298751Z Hello, World! (From curl)
2023-11-23T18:07:33.534427210Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:33.534868710Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:33.535102668Z HTTP2 8: Http2Stream 13 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:33.537768043Z HTTP2 8: Http2Stream 13 [Http2Session client]: headers received
2023-11-23T18:07:33.537802918Z HTTP2 8: Http2Stream 13 [Http2Session client]: emitting stream 'response' event
2023-11-23T18:07:33.538155001Z node http2 body: Hello, World!
2023-11-23T18:07:33.538209418Z HTTP2 8: Http2Stream 13 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T18:07:33.538223501Z HTTP2 8: Http2Stream 13 [Http2Session client]: destroying stream
2023-11-23T18:07:34.083541210Z Hello, World! (From curl)
2023-11-23T18:07:34.639654627Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:34.641680710Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:34.641790752Z HTTP2 8: Http2Stream 15 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:34.644831502Z HTTP2 8: Http2Stream 15 [Http2Session client]: headers received
2023-11-23T18:07:34.644885918Z HTTP2 8: Http2Stream 15 [Http2Session client]: emitting stream 'response' event
2023-11-23T18:07:34.645646085Z node http2 body: Hello, World!
2023-11-23T18:07:34.645665627Z HTTP2 8: Http2Stream 15 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-23T18:07:34.645757793Z HTTP2 8: Http2Stream 15 [Http2Session client]: destroying stream
2023-11-23T18:07:35.107823044Z Hello, World! (From curl)
2023-11-23T18:07:35.743402627Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:35.744168419Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:35.744451419Z HTTP2 8: Http2Stream 17 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:36.848163378Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:36.848580128Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:36.848804586Z HTTP2 8: Http2Stream 19 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:37.138726670Z  (From curl)
2023-11-23T18:07:37.950274795Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:37.950366837Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:37.950372878Z HTTP2 8: Http2Stream 21 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:39.051564879Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:39.051648837Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:39.051655296Z HTTP2 8: Http2Stream 23 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:39.169964837Z  (From curl)
2023-11-23T18:07:40.153625254Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:40.153743963Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:40.153750796Z HTTP2 8: Http2Stream 25 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:41.181430255Z  (From curl)
2023-11-23T18:07:41.255232838Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:41.255445755Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:41.255458838Z HTTP2 8: Http2Stream 27 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:42.358052089Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:42.358108380Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:42.358210547Z HTTP2 8: Http2Stream 29 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:43.207290048Z  (From curl)
2023-11-23T18:07:43.463723214Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:43.463906464Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:43.463925048Z HTTP2 8: Http2Stream 31 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:44.566861173Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:44.567033423Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:44.567051798Z HTTP2 8: Http2Stream 33 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:45.242572340Z  (From curl)
2023-11-23T18:07:45.672287715Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:45.672461507Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:45.672485424Z HTTP2 8: Http2Stream 35 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:46.777589758Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:46.777824924Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:46.777841716Z HTTP2 8: Http2Stream 37 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:47.279335258Z  (From curl)
2023-11-23T18:07:47.880384591Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:47.880540008Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:47.880699883Z HTTP2 8: Http2Stream 39 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:48.984390925Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:48.984709509Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:48.984737050Z HTTP2 8: Http2Stream 41 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:49.315895884Z  (From curl)
2023-11-23T18:07:50.086495926Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:50.086880467Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:50.086914884Z HTTP2 8: Http2Stream 43 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:51.191627635Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:51.191773010Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:51.192108260Z HTTP2 8: Http2Stream 45 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:51.354721176Z  (From curl)
2023-11-23T18:07:52.295074094Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:52.296408802Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:52.296455552Z HTTP2 8: Http2Stream 47 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:53.389363761Z  (From curl)
2023-11-23T18:07:53.398608469Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:53.398679052Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:53.398690469Z HTTP2 8: Http2Stream 49 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:54.500223970Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:54.500368261Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:54.500549136Z HTTP2 8: Http2Stream 51 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:55.422339095Z  (From curl)
2023-11-23T18:07:55.607964762Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:55.608343720Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:55.608377220Z HTTP2 8: Http2Stream 53 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:56.712954971Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:56.713143554Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:56.713477137Z HTTP2 8: Http2Stream 55 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:57.433565679Z  (From curl)
2023-11-23T18:07:57.818956763Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:57.819538888Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:57.819581346Z HTTP2 8: Http2Stream 57 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:58.924864472Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:07:58.925061972Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:07:58.925242222Z HTTP2 8: Http2Stream 59 [Http2Session client]: shutting down writable on _final
2023-11-23T18:07:59.461915430Z  (From curl)
2023-11-23T18:08:00.030003541Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:08:00.030146625Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:08:00.030671875Z HTTP2 8: Http2Stream 61 [Http2Session client]: shutting down writable on _final
2023-11-23T18:08:01.134945042Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:08:01.135168125Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-23T18:08:01.135190417Z HTTP2 8: Http2Stream 63 [Http2Session client]: shutting down writable on _final
2023-11-23T18:08:01.491773292Z  (From curl)
2023-11-23T18:08:02.140838751Z NET 8: destroy
2023-11-23T18:08:02.140925876Z NET 8: close
2023-11-23T18:08:02.140931792Z NET 8: close handle
2023-11-23T18:08:02.141684084Z HTTP2 8: Http2Session <invalid>: socket error [read ETIMEDOUT]
2023-11-23T18:08:02.141707667Z HTTP2 8: Http2Session client: destroying
2023-11-23T18:08:02.144188667Z HTTP2 8: Http2Session client: start closing/destroying Error: read ETIMEDOUT
2023-11-23T18:08:02.144242667Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.144289709Z   errno: -110,
2023-11-23T18:08:02.144293834Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.144305584Z   syscall: 'read'
2023-11-23T18:08:02.144342917Z }
2023-11-23T18:08:02.144346792Z HTTP2 8: Http2Stream 17 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144355876Z HTTP2 8: Http2Stream 19 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144359667Z HTTP2 8: Http2Stream 21 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144362917Z HTTP2 8: Http2Stream 23 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144366251Z HTTP2 8: Http2Stream 25 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144370292Z HTTP2 8: Http2Stream 27 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144373792Z HTTP2 8: Http2Stream 29 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144376959Z HTTP2 8: Http2Stream 31 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144380417Z HTTP2 8: Http2Stream 33 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144573626Z HTTP2 8: Http2Stream 35 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144583501Z HTTP2 8: Http2Stream 37 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144587001Z HTTP2 8: Http2Stream 39 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144590584Z HTTP2 8: Http2Stream 41 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144593834Z HTTP2 8: Http2Stream 43 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144597001Z HTTP2 8: Http2Stream 45 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144629667Z HTTP2 8: Http2Stream 47 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144634084Z HTTP2 8: Http2Stream 49 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144678167Z HTTP2 8: Http2Stream 51 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144683042Z HTTP2 8: Http2Stream 53 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144686709Z HTTP2 8: Http2Stream 55 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144907001Z HTTP2 8: Http2Stream 57 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144915584Z HTTP2 8: Http2Stream 59 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144918834Z HTTP2 8: Http2Stream 61 [Http2Session client]: destroying stream
2023-11-23T18:08:02.144922084Z HTTP2 8: Http2Stream 63 [Http2Session client]: destroying stream
2023-11-23T18:08:02.146026667Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.146050959Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.146055126Z   errno: -110,
2023-11-23T18:08:02.146058542Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.146061542Z   syscall: 'read'
2023-11-23T18:08:02.146065917Z }
2023-11-23T18:08:02.146199292Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.146309792Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.146332542Z   errno: -110,
2023-11-23T18:08:02.146336501Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.146339626Z   syscall: 'read'
2023-11-23T18:08:02.146342542Z }
2023-11-23T18:08:02.146346167Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.146349501Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.146352501Z   errno: -110,
2023-11-23T18:08:02.146355376Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.146358501Z   syscall: 'read'
2023-11-23T18:08:02.146361292Z }
2023-11-23T18:08:02.146529167Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.146542834Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.146546167Z   errno: -110,
2023-11-23T18:08:02.146549167Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.146552126Z   syscall: 'read'
2023-11-23T18:08:02.146555209Z }
2023-11-23T18:08:02.146558084Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.146561001Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.146564042Z   errno: -110,
2023-11-23T18:08:02.146566917Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.146569751Z   syscall: 'read'
2023-11-23T18:08:02.146572584Z }
2023-11-23T18:08:02.146988084Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.147007084Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.147012917Z   errno: -110,
2023-11-23T18:08:02.147016209Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.147019334Z   syscall: 'read'
2023-11-23T18:08:02.147022584Z }
2023-11-23T18:08:02.147185542Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.147198959Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.147202376Z   errno: -110,
2023-11-23T18:08:02.147205626Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.147208584Z   syscall: 'read'
2023-11-23T18:08:02.147211459Z }
2023-11-23T18:08:02.147862834Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.147892084Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.147896209Z   errno: -110,
2023-11-23T18:08:02.147933126Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.147938042Z   syscall: 'read'
2023-11-23T18:08:02.147941376Z }
2023-11-23T18:08:02.147944376Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.147947376Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.147972001Z   errno: -110,
2023-11-23T18:08:02.147975792Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.147978709Z   syscall: 'read'
2023-11-23T18:08:02.147981626Z }
2023-11-23T18:08:02.147984792Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.147987792Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.147990792Z   errno: -110,
2023-11-23T18:08:02.147993626Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.147996834Z   syscall: 'read'
2023-11-23T18:08:02.147999709Z }
2023-11-23T18:08:02.148002584Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.148005501Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.148008792Z   errno: -110,
2023-11-23T18:08:02.148011626Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.148014501Z   syscall: 'read'
2023-11-23T18:08:02.148017751Z }
2023-11-23T18:08:02.148490792Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.148510709Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.148514292Z   errno: -110,
2023-11-23T18:08:02.148517334Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.148520334Z   syscall: 'read'
2023-11-23T18:08:02.148523334Z }
2023-11-23T18:08:02.148526209Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.148529251Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.148532334Z   errno: -110,
2023-11-23T18:08:02.148535542Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.148538542Z   syscall: 'read'
2023-11-23T18:08:02.148541459Z }
2023-11-23T18:08:02.148544376Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.148547334Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.148550459Z   errno: -110,
2023-11-23T18:08:02.148553376Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.148556334Z   syscall: 'read'
2023-11-23T18:08:02.148559292Z }
2023-11-23T18:08:02.148562751Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.148565709Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.148568751Z   errno: -110,
2023-11-23T18:08:02.148571626Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.148574542Z   syscall: 'read'
2023-11-23T18:08:02.148577459Z }
2023-11-23T18:08:02.148624959Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.148634959Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.148670167Z   errno: -110,
2023-11-23T18:08:02.148674126Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.148677417Z   syscall: 'read'
2023-11-23T18:08:02.148680376Z }
2023-11-23T18:08:02.148683292Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.148686417Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.148689792Z   errno: -110,
2023-11-23T18:08:02.148692667Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.148695792Z   syscall: 'read'
2023-11-23T18:08:02.148698667Z }
2023-11-23T18:08:02.148703459Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.148706542Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.148709501Z   errno: -110,
2023-11-23T18:08:02.148712376Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.148715209Z   syscall: 'read'
2023-11-23T18:08:02.148718042Z }
2023-11-23T18:08:02.148721709Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.148724667Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.148727667Z   errno: -110,
2023-11-23T18:08:02.148730542Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.148733334Z   syscall: 'read'
2023-11-23T18:08:02.148736251Z }
2023-11-23T18:08:02.148739084Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.148742084Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.148745042Z   errno: -110,
2023-11-23T18:08:02.148747917Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.148750792Z   syscall: 'read'
2023-11-23T18:08:02.148753584Z }
2023-11-23T18:08:02.148756417Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.148759376Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.148762417Z   errno: -110,
2023-11-23T18:08:02.148765292Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.148768167Z   syscall: 'read'
2023-11-23T18:08:02.148771042Z }
2023-11-23T18:08:02.148773876Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.148776792Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.148779834Z   errno: -110,
2023-11-23T18:08:02.148782709Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.148785584Z   syscall: 'read'
2023-11-23T18:08:02.148788417Z }
2023-11-23T18:08:02.148791709Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.148993751Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.149000417Z   errno: -110,
2023-11-23T18:08:02.149003792Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.149006751Z   syscall: 'read'
2023-11-23T18:08:02.149009792Z }
2023-11-23T18:08:02.149014084Z node http2 error: Error: read ETIMEDOUT
2023-11-23T18:08:02.149017251Z     at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20) {
2023-11-23T18:08:02.149020292Z   errno: -110,
2023-11-23T18:08:02.149023209Z   code: 'ETIMEDOUT',
2023-11-23T18:08:02.149026126Z   syscall: 'read'
2023-11-23T18:08:02.149029167Z }
2023-11-23T18:08:02.150022042Z NET 8: emit close
2023-11-23T18:08:02.150054792Z HTTP2 8: Http2Session client: socket closed
2023-11-23T18:08:02.238341709Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:08:02.240982751Z node http2 error: Error [ERR_HTTP2_INVALID_SESSION]: The session has been destroyed
2023-11-23T18:08:02.241029709Z     at ClientHttp2Session.request (node:internal/http2/core:1734:13)
2023-11-23T18:08:02.241039751Z     at file:///app/node-http2.js:11:28
2023-11-23T18:08:02.241048626Z     at new Promise (<anonymous>)
2023-11-23T18:08:02.241058042Z     at http2Request (file:///app/node-http2.js:10:10)
2023-11-23T18:08:02.241066042Z     at file:///app/node-http2.js:36:3 {
2023-11-23T18:08:02.241074042Z   code: 'ERR_HTTP2_INVALID_SESSION'
2023-11-23T18:08:02.241081792Z }
2023-11-23T18:08:03.343027126Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:08:03.343922043Z node http2 error: Error [ERR_HTTP2_INVALID_SESSION]: The session has been destroyed
2023-11-23T18:08:03.343959834Z     at ClientHttp2Session.request (node:internal/http2/core:1734:13)
2023-11-23T18:08:03.343970418Z     at file:///app/node-http2.js:11:28
2023-11-23T18:08:03.343979251Z     at new Promise (<anonymous>)
2023-11-23T18:08:03.343988751Z     at http2Request (file:///app/node-http2.js:10:10)
2023-11-23T18:08:03.343996751Z     at file:///app/node-http2.js:36:3 {
2023-11-23T18:08:03.344004543Z   code: 'ERR_HTTP2_INVALID_SESSION'
2023-11-23T18:08:03.344012251Z }
2023-11-23T18:08:03.524394585Z  (From curl)
2023-11-23T18:08:04.449544168Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:08:04.450182377Z node http2 error: Error [ERR_HTTP2_INVALID_SESSION]: The session has been destroyed
2023-11-23T18:08:04.450210627Z     at ClientHttp2Session.request (node:internal/http2/core:1734:13)
2023-11-23T18:08:04.450218710Z     at file:///app/node-http2.js:11:28
2023-11-23T18:08:04.450225002Z     at new Promise (<anonymous>)
2023-11-23T18:08:04.450307210Z     at http2Request (file:///app/node-http2.js:10:10)
2023-11-23T18:08:04.450317585Z     at file:///app/node-http2.js:36:3 {
2023-11-23T18:08:04.450323335Z   code: 'ERR_HTTP2_INVALID_SESSION'
2023-11-23T18:08:04.450328835Z }
2023-11-23T18:08:05.554722044Z  (From curl)
2023-11-23T18:08:05.554817211Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:08:05.555741711Z node http2 error: Error [ERR_HTTP2_INVALID_SESSION]: The session has been destroyed
2023-11-23T18:08:05.555778377Z     at ClientHttp2Session.request (node:internal/http2/core:1734:13)
2023-11-23T18:08:05.555788336Z     at file:///app/node-http2.js:11:28
2023-11-23T18:08:05.555796752Z     at new Promise (<anonymous>)
2023-11-23T18:08:05.555805586Z     at http2Request (file:///app/node-http2.js:10:10)
2023-11-23T18:08:05.555815169Z     at file:///app/node-http2.js:36:3 {
2023-11-23T18:08:05.555823127Z   code: 'ERR_HTTP2_INVALID_SESSION'
2023-11-23T18:08:05.555830919Z }
2023-11-23T18:08:06.659679128Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:08:06.660415128Z node http2 error: Error [ERR_HTTP2_INVALID_SESSION]: The session has been destroyed
2023-11-23T18:08:06.660440836Z     at ClientHttp2Session.request (node:internal/http2/core:1734:13)
2023-11-23T18:08:06.660445211Z     at file:///app/node-http2.js:11:28
2023-11-23T18:08:06.660449044Z     at new Promise (<anonymous>)
2023-11-23T18:08:06.660453461Z     at http2Request (file:///app/node-http2.js:10:10)
2023-11-23T18:08:06.660457044Z     at file:///app/node-http2.js:36:3 {
2023-11-23T18:08:06.660460544Z   code: 'ERR_HTTP2_INVALID_SESSION'
2023-11-23T18:08:06.660466503Z }
2023-11-23T18:08:07.592154545Z  (From curl)
2023-11-23T18:08:07.761758878Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:08:07.762401253Z node http2 error: Error [ERR_HTTP2_INVALID_SESSION]: The session has been destroyed
2023-11-23T18:08:07.762427212Z     at ClientHttp2Session.request (node:internal/http2/core:1734:13)
2023-11-23T18:08:07.762431920Z     at file:///app/node-http2.js:11:28
2023-11-23T18:08:07.762435420Z     at new Promise (<anonymous>)
2023-11-23T18:08:07.762439753Z     at http2Request (file:///app/node-http2.js:10:10)
2023-11-23T18:08:07.762443045Z     at file:///app/node-http2.js:36:3 {
2023-11-23T18:08:07.762446212Z   code: 'ERR_HTTP2_INVALID_SESSION'
2023-11-23T18:08:07.762449337Z }
2023-11-23T18:08:08.868189962Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:08:08.868851045Z node http2 error: Error [ERR_HTTP2_INVALID_SESSION]: The session has been destroyed
2023-11-23T18:08:08.868875420Z     at ClientHttp2Session.request (node:internal/http2/core:1734:13)
2023-11-23T18:08:08.868908087Z     at file:///app/node-http2.js:11:28
2023-11-23T18:08:08.868912254Z     at new Promise (<anonymous>)
2023-11-23T18:08:08.868915837Z     at http2Request (file:///app/node-http2.js:10:10)
2023-11-23T18:08:08.868918837Z     at file:///app/node-http2.js:36:3 {
2023-11-23T18:08:08.868921962Z   code: 'ERR_HTTP2_INVALID_SESSION'
2023-11-23T18:08:08.868926379Z }
2023-11-23T18:08:09.621234504Z  (From curl)
2023-11-23T18:08:09.974098629Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:08:09.975492338Z node http2 error: Error [ERR_HTTP2_INVALID_SESSION]: The session has been destroyed
2023-11-23T18:08:09.975536504Z     at ClientHttp2Session.request (node:internal/http2/core:1734:13)
2023-11-23T18:08:09.975547379Z     at file:///app/node-http2.js:11:28
2023-11-23T18:08:09.975556171Z     at new Promise (<anonymous>)
2023-11-23T18:08:09.975565463Z     at http2Request (file:///app/node-http2.js:10:10)
2023-11-23T18:08:09.975573963Z     at file:///app/node-http2.js:36:3 {
2023-11-23T18:08:09.975581879Z   code: 'ERR_HTTP2_INVALID_SESSION'
2023-11-23T18:08:09.975589671Z }
2023-11-23T18:08:11.076163630Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:08:11.077213213Z node http2 error: Error [ERR_HTTP2_INVALID_SESSION]: The session has been destroyed
2023-11-23T18:08:11.077292546Z     at ClientHttp2Session.request (node:internal/http2/core:1734:13)
2023-11-23T18:08:11.077308505Z     at file:///app/node-http2.js:11:28
2023-11-23T18:08:11.077321380Z     at new Promise (<anonymous>)
2023-11-23T18:08:11.077331546Z     at http2Request (file:///app/node-http2.js:10:10)
2023-11-23T18:08:11.077339630Z     at file:///app/node-http2.js:36:3 {
2023-11-23T18:08:11.077347546Z   code: 'ERR_HTTP2_INVALID_SESSION'
2023-11-23T18:08:11.077356921Z }
2023-11-23T18:08:11.650070172Z  (From curl)
2023-11-23T18:08:12.184155464Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:08:12.185044464Z node http2 error: Error [ERR_HTTP2_INVALID_SESSION]: The session has been destroyed
2023-11-23T18:08:12.185072422Z     at ClientHttp2Session.request (node:internal/http2/core:1734:13)
2023-11-23T18:08:12.185078339Z     at file:///app/node-http2.js:11:28
2023-11-23T18:08:12.185082755Z     at new Promise (<anonymous>)
2023-11-23T18:08:12.185088130Z     at http2Request (file:///app/node-http2.js:10:10)
2023-11-23T18:08:12.185092339Z     at file:///app/node-http2.js:36:3 {
2023-11-23T18:08:12.185096672Z   code: 'ERR_HTTP2_INVALID_SESSION'
2023-11-23T18:08:12.185100630Z }
2023-11-23T18:08:13.287493214Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:08:13.288104798Z node http2 error: Error [ERR_HTTP2_INVALID_SESSION]: The session has been destroyed
2023-11-23T18:08:13.288197173Z     at ClientHttp2Session.request (node:internal/http2/core:1734:13)
2023-11-23T18:08:13.288208256Z     at file:///app/node-http2.js:11:28
2023-11-23T18:08:13.288217173Z     at new Promise (<anonymous>)
2023-11-23T18:08:13.288226464Z     at http2Request (file:///app/node-http2.js:10:10)
2023-11-23T18:08:13.288234631Z     at file:///app/node-http2.js:36:3 {
2023-11-23T18:08:13.288242631Z   code: 'ERR_HTTP2_INVALID_SESSION'
2023-11-23T18:08:13.288287089Z }
2023-11-23T18:08:13.662412798Z  (From curl)
2023-11-23T18:08:14.391281381Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:08:14.392055756Z node http2 error: Error [ERR_HTTP2_INVALID_SESSION]: The session has been destroyed
2023-11-23T18:08:14.392093173Z     at ClientHttp2Session.request (node:internal/http2/core:1734:13)
2023-11-23T18:08:14.392105090Z     at file:///app/node-http2.js:11:28
2023-11-23T18:08:14.392114215Z     at new Promise (<anonymous>)
2023-11-23T18:08:14.392124381Z     at http2Request (file:///app/node-http2.js:10:10)
2023-11-23T18:08:14.392132923Z     at file:///app/node-http2.js:36:3 {
2023-11-23T18:08:14.392147298Z   code: 'ERR_HTTP2_INVALID_SESSION'
2023-11-23T18:08:14.392155381Z }
2023-11-23T18:08:15.492347007Z HTTP2 8: Http2Session client: initiating request
2023-11-23T18:08:15.493091132Z node http2 error: Error [ERR_HTTP2_INVALID_SESSION]: The session has been destroyed
2023-11-23T18:08:15.493104299Z     at ClientHttp2Session.request (node:internal/http2/core:1734:13)
2023-11-23T18:08:15.493109257Z     at file:///app/node-http2.js:11:28
2023-11-23T18:08:15.493113965Z     at new Promise (<anonymous>)
2023-11-23T18:08:15.493119007Z     at http2Request (file:///app/node-http2.js:10:10)
2023-11-23T18:08:15.493123340Z     at file:///app/node-http2.js:36:3 {
2023-11-23T18:08:15.493127799Z   code: 'ERR_HTTP2_INVALID_SESSION'
2023-11-23T18:08:15.493132590Z }
2023-11-23T18:08:15.688475757Z  (From curl)

Netstat logs

Send-Q keeps incrementing until the timeout is reached at Thu Nov 23 18:08:02 UTC 2023 and the socket is closed. This timestamp matches closely with the timestamp of logs above where the socket is destroyed.

netstat logs
Thu Nov 23 18:07:26 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:27 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:28 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:29 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:30 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:31 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:32 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:33 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:34 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:35 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0     35 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:36 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      1 192.168.48.2:41456      143.244.220.150:3001    SYN_SENT    83/curl              on (0.26/0/0)
tcp        0     70 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (0.21/0/2)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:37 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    105 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (0.82/0/3)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:38 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    105 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (3.08/0/4)
tcp        0      1 192.168.48.2:41468      143.244.220.150:3001    SYN_SENT    92/curl              on (0.19/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:39 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    140 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (2.07/0/4)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:40 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    175 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (1.06/0/4)
tcp        0      1 192.168.48.2:41476      143.244.220.150:3001    SYN_SENT    101/curl             on (0.18/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:42 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    210 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (0.05/0/4)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:43 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    245 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (5.51/0/5)
tcp        0      1 192.168.48.2:41480      143.244.220.150:3001    SYN_SENT    110/curl             on (0.18/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:44 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    280 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (4.50/0/5)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:45 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    315 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (3.48/0/5)
tcp        0      1 192.168.48.2:35998      143.244.220.150:3001    SYN_SENT    119/curl             on (0.19/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:46 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    350 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (2.47/0/5)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:47 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    385 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (1.45/0/5)
tcp        0      1 192.168.48.2:36000      143.244.220.150:3001    SYN_SENT    128/curl             on (0.19/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:48 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    420 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (0.43/0/5)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:49 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      1 192.168.48.2:36012      143.244.220.150:3001    SYN_SENT    137/curl             on (0.19/0/0)
tcp        0    455 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (12.57/0/6)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:50 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    490 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (11.55/0/6)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:51 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      1 192.168.48.2:36026      143.244.220.150:3001    SYN_SENT    146/curl             on (0.20/0/0)
tcp        0    490 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (10.54/0/6)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:52 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    525 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (9.53/0/6)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:53 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    560 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (8.52/0/6)
tcp        0      1 192.168.48.2:36032      143.244.220.150:3001    SYN_SENT    155/curl             on (0.22/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:54 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    595 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (7.51/0/6)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:55 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      1 192.168.48.2:51632      143.244.220.150:3001    SYN_SENT    164/curl             on (0.23/0/0)
tcp        0    630 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (6.50/0/6)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:56 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    665 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (5.49/0/6)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:57 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    700 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (4.47/0/6)
tcp        0      1 192.168.48.2:51640      143.244.220.150:3001    SYN_SENT    173/curl             on (0.22/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:58 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    735 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (3.46/0/6)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:07:59 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      1 192.168.48.2:51648      143.244.220.150:3001    SYN_SENT    182/curl             on (0.22/0/0)
tcp        0    770 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (2.44/0/6)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:08:00 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0    805 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (1.42/0/6)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:08:01 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      1 192.168.48.2:51658      143.244.220.150:3001    SYN_SENT    191/curl             on (0.20/0/0)
tcp        0    840 192.168.32.3:42278      192.168.32.2:3001       ESTABLISHED 8/node               probe (0.40/0/6)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:08:02 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:08:03 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      1 192.168.48.2:51666      143.244.220.150:3001    SYN_SENT    200/curl             on (0.21/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:08:04 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:08:05 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      1 192.168.48.2:40650      143.244.220.150:3001    SYN_SENT    209/curl             on (0.20/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:08:06 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:08:07 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      1 192.168.48.2:40658      143.244.220.150:3001    SYN_SENT    218/curl             on (0.21/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:08:08 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:08:09 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      1 192.168.48.2:40674      143.244.220.150:3001    SYN_SENT    227/curl             on (0.23/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:08:10 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:08:11 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      1 192.168.48.2:40680      143.244.220.150:3001    SYN_SENT    236/curl             on (0.24/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:08:12 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:08:13 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      1 192.168.48.2:40684      143.244.220.150:3001    SYN_SENT    245/curl             on (0.21/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:08:14 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)
Thu Nov 23 18:08:15 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46673        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      1 192.168.48.2:48088      143.244.220.150:3001    SYN_SENT    254/curl             on (0.21/0/0)
udp        0      0 127.0.0.11:43635        0.0.0.0:*                           -                    off (0.00/0/0)

@mantysalo
Copy link
Author

mantysalo commented Nov 24, 2023

Additional logs with NODE_NATIVE_DEBUG=tls,http2

Node logs

At timestamp 2023-11-24T22:11:02.373268554Z line

TLSWrap client (9) OnStreamAfterWrite(status = -110)

is logged, indicating that an error code was received from the socket. For some reason it seems that this error is not handled properly if the send queue of the socket is full.

Node logs
2023-11-24T22:10:30.275910553Z Debugger listening on ws://0.0.0.0:9228/f4e14f00-2e13-456d-a18d-502c257b6ab7
2023-11-24T22:10:30.275925969Z For help, see: https://nodejs.org/en/docs/inspector
2023-11-24T22:10:30.322880969Z TLSWrap client (9) Created new TLSWrap
2023-11-24T22:10:30.323406094Z TLS 8: client _init handle? true
2023-11-24T22:10:30.323618969Z NET 8: pipe false undefined
2023-11-24T22:10:30.326955678Z NET 8: connect: find host http2-server
2023-11-24T22:10:30.327485428Z NET 8: connect: dns options { family: undefined, hints: 32 }
2023-11-24T22:10:30.327491053Z NET 8: connect: autodetecting
2023-11-24T22:10:30.329042886Z HTTP2 8: Http2Session client: created
2023-11-24T22:10:30.329188678Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:30.329553469Z TLS 8: client initRead handle? true buffered? false
2023-11-24T22:10:30.329558553Z NET 8: _read - n 16384 isConnecting? true hasHandle? true
2023-11-24T22:10:30.329711553Z NET 8: _read wait for connection
2023-11-24T22:10:30.330023344Z (node:8) Warning: Setting the NODE_DEBUG environment variable to 'http2' can expose sensitive data (such as passwords, tokens and authentication headers) in the resulting log.
2023-11-24T22:10:30.330028469Z (Use `node --trace-warnings ...` to show where the warning was created)
2023-11-24T22:10:30.330650636Z NET 8: connect/multiple: only one address found, switching back to single connection
2023-11-24T22:10:30.330655344Z NET 8: connect: attempting to connect to 172.22.0.2:3001 (addressType: 4)
2023-11-24T22:10:30.330881678Z NET 8: afterConnect
2023-11-24T22:10:30.330894094Z TLS 8: client _start handle? true connecting? false requestOCSP? false
2023-11-24T22:10:30.330896219Z TLSWrap client (9) Trying to read cleartext output
2023-11-24T22:10:30.330897886Z TLSWrap client (9) SSLInfoCallback(SSL_CB_HANDSHAKE_START);
2023-11-24T22:10:30.331031386Z TLSWrap client (9) Read -1 bytes of cleartext output
2023-11-24T22:10:30.331036178Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:30.331037886Z TLSWrap client (9) Writing 1 buffers to the underlying stream
2023-11-24T22:10:30.331039553Z TLSWrap client (9) Write finished synchronously
2023-11-24T22:10:30.331054761Z NET 8: _read - n 16384 isConnecting? false hasHandle? true
2023-11-24T22:10:30.331057386Z NET 8: Socket._handle.readStart
2023-11-24T22:10:30.331058928Z TLSWrap client (9) ReadStart()
2023-11-24T22:10:30.331094469Z TLSWrap client (9) OnStreamAfterWrite(status = 0)
2023-11-24T22:10:30.331097261Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:30.331098886Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:30.331100469Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:30.331102011Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:30.331112803Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:30.331114553Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:30.332009844Z TLSWrap client (9) Read 1520 bytes from underlying stream
2023-11-24T22:10:30.332014928Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:30.332016928Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:30.332018928Z TLSWrap client (9) Trying to read cleartext output
2023-11-24T22:10:30.332362053Z TLSWrap client (9) SSLInfoCallback(SSL_CB_HANDSHAKE_DONE);
2023-11-24T22:10:30.332365719Z TLS 8: client onhandshakedone
2023-11-24T22:10:30.332389136Z TLS 8: client _finishInit handle? true alpn h2 servername http2-server
2023-11-24T22:10:30.332449886Z TLS 8: client emit secureConnect. rejectUnauthorized: false, authorizationError: DEPTH_ZERO_SELF_SIGNED_CERT
2023-11-24T22:10:30.332461344Z HTTP2 8: Http2Session client: setting up session handle
2023-11-24T22:10:30.332664219Z Http2Session client (20) session created
2023-11-24T22:10:30.332671428Z Http2Session client (20) i/o stream consumed
2023-11-24T22:10:30.332673469Z HTTP2 8: Http2Session client: sending settings
2023-11-24T22:10:30.332675053Z HTTP2 8: Http2Session client: submitting settings
2023-11-24T22:10:30.332676844Z Http2Session client (20) scheduling write
2023-11-24T22:10:30.332678261Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:30.332679844Z Http2Session client (20) request submitted
2023-11-24T22:10:30.332681386Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:30.332683261Z Http2Session client (20) submitting request
2023-11-24T22:10:30.332684761Z HttpStream 1 (23) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:30.332686386Z Http2Session client (20) request submitted, new stream id 1
2023-11-24T22:10:30.332828344Z HTTP2 8: Http2Stream 1 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:30.332833011Z HttpStream 1 (23) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:30.332834719Z HttpStream 1 (23) [Http2Session client (20)] reading starting
2023-11-24T22:10:30.332836344Z TLSWrap client (9) Read -1 bytes of cleartext output
2023-11-24T22:10:30.332837928Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:30.332839469Z TLSWrap client (9) Writing 1 buffers to the underlying stream
2023-11-24T22:10:30.332841011Z TLSWrap client (9) Write finished synchronously
2023-11-24T22:10:30.332842386Z Http2Session client (20) sending pending data
2023-11-24T22:10:30.332843886Z Http2Session client (20) nghttp2 has 24 bytes to send
2023-11-24T22:10:30.332845719Z Http2Session client (20) nghttp2 has 9 bytes to send
2023-11-24T22:10:30.332886969Z Http2Session client (20) nghttp2 has 14090 bytes to send
2023-11-24T22:10:30.332896719Z TLSWrap client (9) DoWrite()
2023-11-24T22:10:30.332898511Z TLSWrap client (9) Writing 14123 bytes, written = 14123
2023-11-24T22:10:30.332900136Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:30.332901636Z TLSWrap client (9) Returning from EncOut(), write currently in progress
2023-11-24T22:10:30.332903178Z Http2Session client (20) wants read? 1
2023-11-24T22:10:30.332904553Z TLSWrap client (9) ReadStop()
2023-11-24T22:10:30.332906011Z TLSWrap client (9) OnStreamAfterWrite(status = 0)
2023-11-24T22:10:30.332907511Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:30.332908969Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:30.332910469Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:30.332912386Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:30.332913886Z TLSWrap client (9) Writing 2 buffers to the underlying stream
2023-11-24T22:10:30.332969719Z TLSWrap client (9) Write finished synchronously
2023-11-24T22:10:30.332978178Z TLSWrap client (9) OnStreamAfterWrite(status = 0)
2023-11-24T22:10:30.332980219Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:30.332982053Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:30.332983553Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:30.332984928Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:30.332986386Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:30.332987886Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:30.332989428Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:30.332990928Z Http2Session client (20) write finished with status 0
2023-11-24T22:10:30.332992469Z TLSWrap client (9) ReadStart()
2023-11-24T22:10:30.333114178Z TLSWrap client (9) Read 605 bytes from underlying stream
2023-11-24T22:10:30.333118761Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:30.333120636Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:30.333122344Z TLSWrap client (9) Trying to read cleartext output
2023-11-24T22:10:30.333123886Z TLSWrap client (9) Read 9 bytes of cleartext output
2023-11-24T22:10:30.333125386Z Http2Session client (20) receiving 9 bytes, offset 0
2023-11-24T22:10:30.333126969Z Http2Session client (20) receiving 9 bytes [wants data? 1]
2023-11-24T22:10:30.333128511Z Http2Session client (20) complete frame received: type: 4
2023-11-24T22:10:30.333130053Z Http2Session client (20) sending pending data
2023-11-24T22:10:30.333131511Z Http2Session client (20) nghttp2 has 9 bytes to send
2023-11-24T22:10:30.333138594Z TLSWrap client (9) DoWrite()
2023-11-24T22:10:30.333140178Z TLSWrap client (9) Writing 9 bytes, written = 9
2023-11-24T22:10:30.333141678Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:30.333143136Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:30.333144511Z TLSWrap client (9) Writing 1 buffers to the underlying stream
2023-11-24T22:10:30.333153803Z TLSWrap client (9) Write finished synchronously
2023-11-24T22:10:30.333156011Z Http2Session client (20) wants read? 1
2023-11-24T22:10:30.333157511Z TLSWrap client (9) ReadStop()
2023-11-24T22:10:30.333158969Z TLSWrap client (9) Read -1 bytes of cleartext output
2023-11-24T22:10:30.333160344Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:30.333161844Z TLSWrap client (9) Returning from EncOut(), write currently in progress
2023-11-24T22:10:30.333206053Z TLSWrap client (9) OnStreamAfterWrite(status = 0)
2023-11-24T22:10:30.333208553Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:30.333209969Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:30.333211511Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:30.333213053Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:30.333214553Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:30.333216011Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:30.333247594Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:30.333250178Z Http2Session client (20) write finished with status 0
2023-11-24T22:10:30.333251678Z TLSWrap client (9) ReadStart()
2023-11-24T22:10:30.333529886Z TLSWrap client (9) Read 96 bytes from underlying stream
2023-11-24T22:10:30.333536053Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:30.333537969Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:30.333539803Z TLSWrap client (9) Trying to read cleartext output
2023-11-24T22:10:30.333541594Z TLSWrap client (9) Read 74 bytes of cleartext output
2023-11-24T22:10:30.333543511Z Http2Session client (20) receiving 74 bytes, offset 0
2023-11-24T22:10:30.333545719Z Http2Session client (20) receiving 74 bytes [wants data? 1]
2023-11-24T22:10:30.333547678Z Http2Session client (20) complete frame received: type: 4
2023-11-24T22:10:30.333549678Z HTTP2 8: Http2Session client: settings received
2023-11-24T22:10:30.333551219Z Http2Session client (20) settings refreshed for session
2023-11-24T22:10:30.333557803Z Http2Session client (20) beginning headers for stream 1
2023-11-24T22:10:30.333560136Z HttpStream 1 (23) [Http2Session client (20)] starting headers, category: true
2023-11-24T22:10:30.333562011Z Http2Session client (20) complete frame received: type: 1
2023-11-24T22:10:30.333569344Z Http2Session client (20) handle headers frame for stream 1
2023-11-24T22:10:30.333643136Z HTTP2 8: Http2Stream 1 [Http2Session client]: headers received
2023-11-24T22:10:30.333647719Z HTTP2 8: Http2Stream 1 [Http2Session client]: emitting stream 'response' event
2023-11-24T22:10:30.333705469Z Http2Session client (20) buffering data chunk for stream 1, size: 13, flags: 1
2023-11-24T22:10:30.333896803Z HttpStream 1 (23) [Http2Session client (20)] reading starting
2023-11-24T22:10:30.333904636Z Http2Session client (20) complete frame received: type: 0
2023-11-24T22:10:30.333906636Z Http2Session client (20) handling data frame for stream 1
2023-11-24T22:10:30.334106719Z node http2 body: Hello, World!
2023-11-24T22:10:30.334189969Z Http2Session client (20) stream 1 closed with code: 0
2023-11-24T22:10:30.334193594Z HttpStream 1 (23) [Http2Session client (20)] closed with code 0
2023-11-24T22:10:30.334195261Z HTTP2 8: Http2Stream 1 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-24T22:10:30.334242136Z HTTP2 8: Http2Stream 1 [Http2Session client]: destroying stream
2023-11-24T22:10:30.334244844Z HttpStream 1 (23) [Http2Session client (20)] destroying stream
2023-11-24T22:10:30.334246511Z HttpStream 1 (23) [Http2Session client (20)] destroying stream
2023-11-24T22:10:30.334328719Z Http2Session client (20) sending pending data
2023-11-24T22:10:30.334368553Z Http2Session client (20) wants read? 1
2023-11-24T22:10:30.334373553Z TLSWrap client (9) Read -1 bytes of cleartext output
2023-11-24T22:10:30.334375511Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:30.334400844Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:30.334402928Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:30.334404719Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:30.334406344Z HttpStream 1 (23) [Http2Session client (20)] tearing down stream
2023-11-24T22:10:31.433520136Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:31.434741720Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:31.434789095Z Http2Session client (20) request submitted
2023-11-24T22:10:31.434804386Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:31.434813845Z Http2Session client (20) submitting request
2023-11-24T22:10:31.434824095Z HttpStream 3 (35) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:31.434832595Z Http2Session client (20) scheduling write
2023-11-24T22:10:31.434840428Z Http2Session client (20) request submitted, new stream id 3
2023-11-24T22:10:31.435343511Z HTTP2 8: Http2Stream 3 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:31.435374636Z HttpStream 3 (35) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:31.435472428Z HttpStream 3 (35) [Http2Session client (20)] reading starting
2023-11-24T22:10:31.435690095Z Http2Session client (20) sending pending data
2023-11-24T22:10:31.435721261Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:10:31.435732511Z TLSWrap client (9) DoWrite()
2023-11-24T22:10:31.435741553Z TLSWrap client (9) Writing 14077 bytes, written = 14077
2023-11-24T22:10:31.435749928Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:31.435758220Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:31.435766511Z TLSWrap client (9) Writing 1 buffers to the underlying stream
2023-11-24T22:10:31.436359511Z TLSWrap client (9) Write finished synchronously
2023-11-24T22:10:31.436424678Z Http2Session client (20) wants read? 1
2023-11-24T22:10:31.436437636Z TLSWrap client (9) ReadStop()
2023-11-24T22:10:31.436445928Z TLSWrap client (9) OnStreamAfterWrite(status = 0)
2023-11-24T22:10:31.436453803Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:31.436462053Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:31.436469970Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:31.436477886Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:31.436485553Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:31.436497136Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:31.436505220Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:31.436513136Z Http2Session client (20) write finished with status 0
2023-11-24T22:10:31.436520886Z TLSWrap client (9) ReadStart()
2023-11-24T22:10:31.438681261Z TLSWrap client (9) Read 79 bytes from underlying stream
2023-11-24T22:10:31.438720345Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:31.438729261Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:31.438737636Z TLSWrap client (9) Trying to read cleartext output
2023-11-24T22:10:31.438746011Z TLSWrap client (9) Read 57 bytes of cleartext output
2023-11-24T22:10:31.438754303Z Http2Session client (20) receiving 57 bytes, offset 0
2023-11-24T22:10:31.438762261Z Http2Session client (20) receiving 57 bytes [wants data? 1]
2023-11-24T22:10:31.438770595Z Http2Session client (20) beginning headers for stream 3
2023-11-24T22:10:31.438778636Z HttpStream 3 (35) [Http2Session client (20)] starting headers, category: true
2023-11-24T22:10:31.438787511Z Http2Session client (20) complete frame received: type: 1
2023-11-24T22:10:31.438795553Z Http2Session client (20) handle headers frame for stream 3
2023-11-24T22:10:31.439147720Z HTTP2 8: Http2Stream 3 [Http2Session client]: headers received
2023-11-24T22:10:31.439230636Z HTTP2 8: Http2Stream 3 [Http2Session client]: emitting stream 'response' event
2023-11-24T22:10:31.439241553Z Http2Session client (20) buffering data chunk for stream 3, size: 13, flags: 1
2023-11-24T22:10:31.439275053Z HttpStream 3 (35) [Http2Session client (20)] reading starting
2023-11-24T22:10:31.443750386Z Http2Session client (20) complete frame received: type: 0
2023-11-24T22:10:31.443799928Z Http2Session client (20) handling data frame for stream 3
2023-11-24T22:10:31.443803761Z node http2 body: Hello, World!
2023-11-24T22:10:31.443806136Z Http2Session client (20) stream 3 closed with code: 0
2023-11-24T22:10:31.443835428Z HttpStream 3 (35) [Http2Session client (20)] closed with code 0
2023-11-24T22:10:31.443840428Z HTTP2 8: Http2Stream 3 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-24T22:10:31.443845053Z HTTP2 8: Http2Stream 3 [Http2Session client]: destroying stream
2023-11-24T22:10:31.443851803Z HttpStream 3 (35) [Http2Session client (20)] destroying stream
2023-11-24T22:10:31.443856095Z HttpStream 3 (35) [Http2Session client (20)] destroying stream
2023-11-24T22:10:31.443860470Z Http2Session client (20) sending pending data
2023-11-24T22:10:31.443864928Z Http2Session client (20) wants read? 1
2023-11-24T22:10:31.443869136Z TLSWrap client (9) Read -1 bytes of cleartext output
2023-11-24T22:10:31.443873303Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:31.443877428Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:31.443881678Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:31.443885886Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:31.443889970Z HttpStream 3 (35) [Http2Session client (20)] tearing down stream
2023-11-24T22:10:32.541569679Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:32.542157429Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:32.542195845Z Http2Session client (20) request submitted
2023-11-24T22:10:32.542205845Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:32.542214720Z Http2Session client (20) submitting request
2023-11-24T22:10:32.542586554Z HttpStream 5 (47) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:32.542623929Z Http2Session client (20) scheduling write
2023-11-24T22:10:32.542634762Z Http2Session client (20) request submitted, new stream id 5
2023-11-24T22:10:32.542644012Z HTTP2 8: Http2Stream 5 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:32.542652762Z HttpStream 5 (47) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:32.543030720Z HttpStream 5 (47) [Http2Session client (20)] reading starting
2023-11-24T22:10:32.543052887Z Http2Session client (20) sending pending data
2023-11-24T22:10:32.543195179Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:10:32.543207679Z TLSWrap client (9) DoWrite()
2023-11-24T22:10:32.543216012Z TLSWrap client (9) Writing 14077 bytes, written = 14077
2023-11-24T22:10:32.543224512Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:32.543232304Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:32.543240137Z TLSWrap client (9) Writing 1 buffers to the underlying stream
2023-11-24T22:10:32.543729679Z TLSWrap client (9) Write finished synchronously
2023-11-24T22:10:32.543752970Z Http2Session client (20) wants read? 1
2023-11-24T22:10:32.543761762Z TLSWrap client (9) ReadStop()
2023-11-24T22:10:32.543769804Z TLSWrap client (9) OnStreamAfterWrite(status = 0)
2023-11-24T22:10:32.543777720Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:32.543785345Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:32.543793429Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:32.543801054Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:32.543808720Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:32.543816345Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:32.543824304Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:32.543832012Z Http2Session client (20) write finished with status 0
2023-11-24T22:10:32.543844220Z TLSWrap client (9) ReadStart()
2023-11-24T22:10:32.546568595Z TLSWrap client (9) Read 79 bytes from underlying stream
2023-11-24T22:10:32.546603345Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:32.546609595Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:32.546615762Z TLSWrap client (9) Trying to read cleartext output
2023-11-24T22:10:32.546621304Z TLSWrap client (9) Read 57 bytes of cleartext output
2023-11-24T22:10:32.546626929Z Http2Session client (20) receiving 57 bytes, offset 0
2023-11-24T22:10:32.546632554Z Http2Session client (20) receiving 57 bytes [wants data? 1]
2023-11-24T22:10:32.546638137Z Http2Session client (20) beginning headers for stream 5
2023-11-24T22:10:32.546643762Z HttpStream 5 (47) [Http2Session client (20)] starting headers, category: true
2023-11-24T22:10:32.546649387Z Http2Session client (20) complete frame received: type: 1
2023-11-24T22:10:32.546654929Z Http2Session client (20) handle headers frame for stream 5
2023-11-24T22:10:32.547184429Z HTTP2 8: Http2Stream 5 [Http2Session client]: headers received
2023-11-24T22:10:32.547201262Z HTTP2 8: Http2Stream 5 [Http2Session client]: emitting stream 'response' event
2023-11-24T22:10:32.547207554Z Http2Session client (20) buffering data chunk for stream 5, size: 13, flags: 1
2023-11-24T22:10:32.547733095Z HttpStream 5 (47) [Http2Session client (20)] reading starting
2023-11-24T22:10:32.547762095Z Http2Session client (20) complete frame received: type: 0
2023-11-24T22:10:32.547769595Z Http2Session client (20) handling data frame for stream 5
2023-11-24T22:10:32.548143179Z node http2 body: Hello, World!
2023-11-24T22:10:32.548598679Z Http2Session client (20) stream 5 closed with code: 0
2023-11-24T22:10:32.548621012Z HttpStream 5 (47) [Http2Session client (20)] closed with code 0
2023-11-24T22:10:32.548627345Z HTTP2 8: Http2Stream 5 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-24T22:10:32.548672345Z HTTP2 8: Http2Stream 5 [Http2Session client]: destroying stream
2023-11-24T22:10:32.548678679Z HttpStream 5 (47) [Http2Session client (20)] destroying stream
2023-11-24T22:10:32.548684345Z HttpStream 5 (47) [Http2Session client (20)] destroying stream
2023-11-24T22:10:32.548689970Z Http2Session client (20) sending pending data
2023-11-24T22:10:32.548695512Z Http2Session client (20) wants read? 1
2023-11-24T22:10:32.548701012Z TLSWrap client (9) Read -1 bytes of cleartext output
2023-11-24T22:10:32.548706595Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:32.548712179Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:32.548717720Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:32.548723387Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:32.548729012Z HttpStream 5 (47) [Http2Session client (20)] tearing down stream
2023-11-24T22:10:33.645604596Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:33.646194054Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:33.646234471Z Http2Session client (20) request submitted
2023-11-24T22:10:33.646245804Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:33.646254596Z Http2Session client (20) submitting request
2023-11-24T22:10:33.646262804Z HttpStream 7 (59) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:33.646271304Z Http2Session client (20) scheduling write
2023-11-24T22:10:33.646279221Z Http2Session client (20) request submitted, new stream id 7
2023-11-24T22:10:33.646841096Z HTTP2 8: Http2Stream 7 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:33.646872929Z HttpStream 7 (59) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:33.646882971Z HttpStream 7 (59) [Http2Session client (20)] reading starting
2023-11-24T22:10:33.646891471Z Http2Session client (20) sending pending data
2023-11-24T22:10:33.647284013Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:10:33.647305096Z TLSWrap client (9) DoWrite()
2023-11-24T22:10:33.647366554Z TLSWrap client (9) Writing 14077 bytes, written = 14077
2023-11-24T22:10:33.647376013Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:33.647419721Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:33.647427888Z TLSWrap client (9) Writing 1 buffers to the underlying stream
2023-11-24T22:10:33.647720388Z TLSWrap client (9) Write finished synchronously
2023-11-24T22:10:33.647753804Z Http2Session client (20) wants read? 1
2023-11-24T22:10:33.647764721Z TLSWrap client (9) ReadStop()
2023-11-24T22:10:33.647773638Z TLSWrap client (9) OnStreamAfterWrite(status = 0)
2023-11-24T22:10:33.647781679Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:33.647789721Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:33.647797721Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:33.647805638Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:33.647813471Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:33.647821346Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:33.647829263Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:33.647837138Z Http2Session client (20) write finished with status 0
2023-11-24T22:10:33.647844846Z TLSWrap client (9) ReadStart()
2023-11-24T22:10:33.650803888Z TLSWrap client (9) Read 79 bytes from underlying stream
2023-11-24T22:10:33.650856596Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:33.650867638Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:33.650876763Z TLSWrap client (9) Trying to read cleartext output
2023-11-24T22:10:33.650885138Z TLSWrap client (9) Read 57 bytes of cleartext output
2023-11-24T22:10:33.650893096Z Http2Session client (20) receiving 57 bytes, offset 0
2023-11-24T22:10:33.650900888Z Http2Session client (20) receiving 57 bytes [wants data? 1]
2023-11-24T22:10:33.650908929Z Http2Session client (20) beginning headers for stream 7
2023-11-24T22:10:33.650916721Z HttpStream 7 (59) [Http2Session client (20)] starting headers, category: true
2023-11-24T22:10:33.650924721Z Http2Session client (20) complete frame received: type: 1
2023-11-24T22:10:33.650932471Z Http2Session client (20) handle headers frame for stream 7
2023-11-24T22:10:33.651215513Z HTTP2 8: Http2Stream 7 [Http2Session client]: headers received
2023-11-24T22:10:33.651242596Z HTTP2 8: Http2Stream 7 [Http2Session client]: emitting stream 'response' event
2023-11-24T22:10:33.651252763Z Http2Session client (20) buffering data chunk for stream 7, size: 13, flags: 1
2023-11-24T22:10:33.651308429Z HttpStream 7 (59) [Http2Session client (20)] reading starting
2023-11-24T22:10:33.651320138Z Http2Session client (20) complete frame received: type: 0
2023-11-24T22:10:33.651358679Z Http2Session client (20) handling data frame for stream 7
2023-11-24T22:10:33.651709096Z node http2 body: Hello, World!
2023-11-24T22:10:33.652173971Z Http2Session client (20) stream 7 closed with code: 0
2023-11-24T22:10:33.652199179Z HttpStream 7 (59) [Http2Session client (20)] closed with code 0
2023-11-24T22:10:33.652208346Z HTTP2 8: Http2Stream 7 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-24T22:10:33.652216888Z HTTP2 8: Http2Stream 7 [Http2Session client]: destroying stream
2023-11-24T22:10:33.652224846Z HttpStream 7 (59) [Http2Session client (20)] destroying stream
2023-11-24T22:10:33.652232846Z HttpStream 7 (59) [Http2Session client (20)] destroying stream
2023-11-24T22:10:33.652240721Z Http2Session client (20) sending pending data
2023-11-24T22:10:33.652248679Z Http2Session client (20) wants read? 1
2023-11-24T22:10:33.652256429Z TLSWrap client (9) Read -1 bytes of cleartext output
2023-11-24T22:10:33.652264221Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:33.652271971Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:33.652279888Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:33.652287888Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:33.652295763Z HttpStream 7 (59) [Http2Session client (20)] tearing down stream
2023-11-24T22:10:34.751309471Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:34.752271763Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:34.752304555Z Http2Session client (20) request submitted
2023-11-24T22:10:34.752314305Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:34.752322846Z Http2Session client (20) submitting request
2023-11-24T22:10:34.752330805Z HttpStream 9 (71) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:34.752339013Z Http2Session client (20) scheduling write
2023-11-24T22:10:34.752346846Z Http2Session client (20) request submitted, new stream id 9
2023-11-24T22:10:34.752483263Z HTTP2 8: Http2Stream 9 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:34.752517971Z HttpStream 9 (71) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:34.752830055Z HttpStream 9 (71) [Http2Session client (20)] reading starting
2023-11-24T22:10:34.753182805Z Http2Session client (20) sending pending data
2023-11-24T22:10:34.753882638Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:10:34.753909680Z TLSWrap client (9) DoWrite()
2023-11-24T22:10:34.753921096Z TLSWrap client (9) Writing 14077 bytes, written = 14077
2023-11-24T22:10:34.753929971Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:34.753972138Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:34.753981305Z TLSWrap client (9) Writing 1 buffers to the underlying stream
2023-11-24T22:10:34.753989346Z TLSWrap client (9) Write finished synchronously
2023-11-24T22:10:34.753997221Z Http2Session client (20) wants read? 1
2023-11-24T22:10:34.754004971Z TLSWrap client (9) ReadStop()
2023-11-24T22:10:34.754012596Z TLSWrap client (9) OnStreamAfterWrite(status = 0)
2023-11-24T22:10:34.754020180Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:34.754028013Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:34.754035846Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:34.754043430Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:34.754051221Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:34.754058888Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:34.754066680Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:34.754074471Z Http2Session client (20) write finished with status 0
2023-11-24T22:10:34.754082180Z TLSWrap client (9) ReadStart()
2023-11-24T22:10:34.755906888Z TLSWrap client (9) Read 79 bytes from underlying stream
2023-11-24T22:10:34.755942888Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:34.755953888Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:34.755962721Z TLSWrap client (9) Trying to read cleartext output
2023-11-24T22:10:34.755970930Z TLSWrap client (9) Read 57 bytes of cleartext output
2023-11-24T22:10:34.755978971Z Http2Session client (20) receiving 57 bytes, offset 0
2023-11-24T22:10:34.755986763Z Http2Session client (20) receiving 57 bytes [wants data? 1]
2023-11-24T22:10:34.755994763Z Http2Session client (20) beginning headers for stream 9
2023-11-24T22:10:34.756002596Z HttpStream 9 (71) [Http2Session client (20)] starting headers, category: true
2023-11-24T22:10:34.756010638Z Http2Session client (20) complete frame received: type: 1
2023-11-24T22:10:34.756018346Z Http2Session client (20) handle headers frame for stream 9
2023-11-24T22:10:34.756088221Z HTTP2 8: Http2Stream 9 [Http2Session client]: headers received
2023-11-24T22:10:34.756116346Z HTTP2 8: Http2Stream 9 [Http2Session client]: emitting stream 'response' event
2023-11-24T22:10:34.756126305Z Http2Session client (20) buffering data chunk for stream 9, size: 13, flags: 1
2023-11-24T22:10:34.756481930Z HttpStream 9 (71) [Http2Session client (20)] reading starting
2023-11-24T22:10:34.756503846Z Http2Session client (20) complete frame received: type: 0
2023-11-24T22:10:34.756513721Z Http2Session client (20) handling data frame for stream 9
2023-11-24T22:10:34.757164471Z node http2 body: Hello, World!
2023-11-24T22:10:34.757240221Z Http2Session client (20) stream 9 closed with code: 0
2023-11-24T22:10:34.757249180Z HttpStream 9 (71) [Http2Session client (20)] closed with code 0
2023-11-24T22:10:34.757255346Z HTTP2 8: Http2Stream 9 [Http2Session client]: closed with code 0, closed false, readable false
2023-11-24T22:10:34.757261471Z HTTP2 8: Http2Stream 9 [Http2Session client]: destroying stream
2023-11-24T22:10:34.757267138Z HttpStream 9 (71) [Http2Session client (20)] destroying stream
2023-11-24T22:10:34.757272638Z HttpStream 9 (71) [Http2Session client (20)] destroying stream
2023-11-24T22:10:34.757444430Z Http2Session client (20) sending pending data
2023-11-24T22:10:34.757461346Z Http2Session client (20) wants read? 1
2023-11-24T22:10:34.757467513Z TLSWrap client (9) Read -1 bytes of cleartext output
2023-11-24T22:10:34.757473263Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:34.757479138Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:34.757484805Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:34.757490513Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:34.757496096Z HttpStream 9 (71) [Http2Session client (20)] tearing down stream
2023-11-24T22:10:35.857723764Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:35.859645389Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:35.859709639Z Http2Session client (20) request submitted
2023-11-24T22:10:35.859715014Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:35.859718389Z Http2Session client (20) submitting request
2023-11-24T22:10:35.859721347Z HttpStream 11 (83) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:35.859724680Z Http2Session client (20) scheduling write
2023-11-24T22:10:35.859727680Z Http2Session client (20) request submitted, new stream id 11
2023-11-24T22:10:35.859730930Z HTTP2 8: Http2Stream 11 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:35.859734097Z HttpStream 11 (83) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:35.859890597Z HttpStream 11 (83) [Http2Session client (20)] reading starting
2023-11-24T22:10:35.859903764Z Http2Session client (20) sending pending data
2023-11-24T22:10:35.860033805Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:10:35.860043597Z TLSWrap client (9) DoWrite()
2023-11-24T22:10:35.860079597Z TLSWrap client (9) Writing 14077 bytes, written = 14077
2023-11-24T22:10:35.860085014Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:35.860088430Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:35.860091597Z TLSWrap client (9) Writing 1 buffers to the underlying stream
2023-11-24T22:10:35.860261930Z TLSWrap client (9) Write finished synchronously
2023-11-24T22:10:35.860273472Z Http2Session client (20) wants read? 1
2023-11-24T22:10:35.860277847Z TLSWrap client (9) ReadStop()
2023-11-24T22:10:35.860281014Z TLSWrap client (9) OnStreamAfterWrite(status = 0)
2023-11-24T22:10:35.860284722Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:35.860287805Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:35.860291222Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:35.860294139Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:35.860297097Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:35.860299930Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:35.860302930Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:35.860305847Z Http2Session client (20) write finished with status 0
2023-11-24T22:10:35.860308805Z TLSWrap client (9) ReadStart()
2023-11-24T22:10:36.967835416Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:36.969080125Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:36.969123416Z Http2Session client (20) request submitted
2023-11-24T22:10:36.969133750Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:36.969142291Z Http2Session client (20) submitting request
2023-11-24T22:10:36.969150625Z HttpStream 13 (88) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:36.969159000Z Http2Session client (20) scheduling write
2023-11-24T22:10:36.969167000Z Http2Session client (20) request submitted, new stream id 13
2023-11-24T22:10:36.969370291Z HTTP2 8: Http2Stream 13 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:36.969400208Z HttpStream 13 (88) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:36.969728208Z HttpStream 13 (88) [Http2Session client (20)] reading starting
2023-11-24T22:10:36.969760291Z Http2Session client (20) sending pending data
2023-11-24T22:10:36.969770958Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:10:36.969779875Z TLSWrap client (9) DoWrite()
2023-11-24T22:10:36.969787916Z TLSWrap client (9) Writing 14077 bytes, written = 14077
2023-11-24T22:10:36.969795750Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:36.969803583Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:36.969861208Z TLSWrap client (9) Writing 1 buffers to the underlying stream
2023-11-24T22:10:36.969986875Z TLSWrap client (9) Write finished synchronously
2023-11-24T22:10:36.970001416Z Http2Session client (20) wants read? 1
2023-11-24T22:10:36.970009500Z TLSWrap client (9) ReadStop()
2023-11-24T22:10:36.970066833Z TLSWrap client (9) OnStreamAfterWrite(status = 0)
2023-11-24T22:10:36.970075875Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:36.970083916Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:36.970091625Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:36.970099500Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:36.970107250Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:36.970114833Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:36.970123125Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:36.970131625Z Http2Session client (20) write finished with status 0
2023-11-24T22:10:36.970139166Z TLSWrap client (9) ReadStart()
2023-11-24T22:10:38.071271084Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:38.071877875Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:38.071922042Z Http2Session client (20) request submitted
2023-11-24T22:10:38.071933167Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:38.071942292Z Http2Session client (20) submitting request
2023-11-24T22:10:38.073191500Z HttpStream 15 (93) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:38.073247500Z Http2Session client (20) scheduling write
2023-11-24T22:10:38.073422167Z Http2Session client (20) request submitted, new stream id 15
2023-11-24T22:10:38.073562667Z HTTP2 8: Http2Stream 15 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:38.073579209Z HttpStream 15 (93) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:38.073587792Z HttpStream 15 (93) [Http2Session client (20)] reading starting
2023-11-24T22:10:38.073623875Z Http2Session client (20) sending pending data
2023-11-24T22:10:38.073773917Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:10:38.073791459Z TLSWrap client (9) DoWrite()
2023-11-24T22:10:38.073800959Z TLSWrap client (9) Writing 14077 bytes, written = 14077
2023-11-24T22:10:38.073809667Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:38.073817959Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:38.073830167Z TLSWrap client (9) Writing 1 buffers to the underlying stream
2023-11-24T22:10:38.073838792Z TLSWrap client (9) Write finished synchronously
2023-11-24T22:10:38.073846959Z Http2Session client (20) wants read? 1
2023-11-24T22:10:38.073854750Z TLSWrap client (9) ReadStop()
2023-11-24T22:10:38.073862750Z TLSWrap client (9) OnStreamAfterWrite(status = 0)
2023-11-24T22:10:38.073870709Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:38.073878542Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:38.073946292Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:38.073955459Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:38.073963459Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:38.073971042Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:38.073978959Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:38.073986709Z Http2Session client (20) write finished with status 0
2023-11-24T22:10:38.073994417Z TLSWrap client (9) ReadStart()
2023-11-24T22:10:39.173828293Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:39.174719084Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:39.174753668Z Http2Session client (20) request submitted
2023-11-24T22:10:39.174758334Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:39.174762459Z Http2Session client (20) submitting request
2023-11-24T22:10:39.174767043Z HttpStream 17 (98) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:39.174770584Z Http2Session client (20) scheduling write
2023-11-24T22:10:39.174774459Z Http2Session client (20) request submitted, new stream id 17
2023-11-24T22:10:39.174900584Z HTTP2 8: Http2Stream 17 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:39.174911084Z HttpStream 17 (98) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:39.175629793Z HttpStream 17 (98) [Http2Session client (20)] reading starting
2023-11-24T22:10:39.175647668Z Http2Session client (20) sending pending data
2023-11-24T22:10:39.175915876Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:10:39.175927793Z TLSWrap client (9) DoWrite()
2023-11-24T22:10:39.175931668Z TLSWrap client (9) Writing 14077 bytes, written = 14077
2023-11-24T22:10:39.175934793Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:39.175977959Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:39.175989959Z TLSWrap client (9) Writing 1 buffers to the underlying stream
2023-11-24T22:10:39.176097251Z TLSWrap client (9) Write finished synchronously
2023-11-24T22:10:39.176106043Z Http2Session client (20) wants read? 1
2023-11-24T22:10:39.176109251Z TLSWrap client (9) ReadStop()
2023-11-24T22:10:39.176112209Z TLSWrap client (9) OnStreamAfterWrite(status = 0)
2023-11-24T22:10:39.176115459Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:39.176118334Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:39.176121501Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:39.176124584Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:39.176154251Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:39.176157793Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:39.176160751Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:39.176163876Z Http2Session client (20) write finished with status 0
2023-11-24T22:10:39.176166751Z TLSWrap client (9) ReadStart()
2023-11-24T22:10:40.281101001Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:40.281482751Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:40.281559918Z Http2Session client (20) request submitted
2023-11-24T22:10:40.281570251Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:40.281705001Z Http2Session client (20) submitting request
2023-11-24T22:10:40.281727126Z HttpStream 19 (103) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:40.281734085Z Http2Session client (20) scheduling write
2023-11-24T22:10:40.281740251Z Http2Session client (20) request submitted, new stream id 19
2023-11-24T22:10:40.282092085Z HTTP2 8: Http2Stream 19 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:40.282107585Z HttpStream 19 (103) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:40.282248960Z HttpStream 19 (103) [Http2Session client (20)] reading starting
2023-11-24T22:10:40.282260626Z Http2Session client (20) sending pending data
2023-11-24T22:10:40.282279335Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:10:40.282287376Z TLSWrap client (9) DoWrite()
2023-11-24T22:10:40.282495543Z TLSWrap client (9) Writing 14077 bytes, written = 14077
2023-11-24T22:10:40.282509876Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:40.282515376Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:40.282520126Z TLSWrap client (9) Writing 1 buffers to the underlying stream
2023-11-24T22:10:40.282579835Z TLSWrap client (9) Write finished synchronously
2023-11-24T22:10:40.282586710Z Http2Session client (20) wants read? 1
2023-11-24T22:10:40.282591210Z TLSWrap client (9) ReadStop()
2023-11-24T22:10:40.282595543Z TLSWrap client (9) OnStreamAfterWrite(status = 0)
2023-11-24T22:10:40.282599918Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:40.282604251Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:40.282608918Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:40.282613085Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:40.282617168Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:40.282621210Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:40.282663210Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:40.282667876Z Http2Session client (20) write finished with status 0
2023-11-24T22:10:40.282672126Z TLSWrap client (9) ReadStart()
2023-11-24T22:10:41.386191710Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:41.386866085Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:41.386902502Z Http2Session client (20) request submitted
2023-11-24T22:10:41.386912252Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:41.386920835Z Http2Session client (20) submitting request
2023-11-24T22:10:41.386929169Z HttpStream 21 (108) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:41.386937460Z Http2Session client (20) scheduling write
2023-11-24T22:10:41.386946835Z Http2Session client (20) request submitted, new stream id 21
2023-11-24T22:10:41.388810794Z HTTP2 8: Http2Stream 21 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:41.388857002Z HttpStream 21 (108) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:41.388927127Z HttpStream 21 (108) [Http2Session client (20)] reading starting
2023-11-24T22:10:41.388940585Z Http2Session client (20) sending pending data
2023-11-24T22:10:41.389149335Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:10:41.389179919Z TLSWrap client (9) DoWrite()
2023-11-24T22:10:41.389322085Z TLSWrap client (9) Writing 14077 bytes, written = 14077
2023-11-24T22:10:41.389335460Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:41.389344669Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:41.389352710Z TLSWrap client (9) Writing 1 buffers to the underlying stream
2023-11-24T22:10:41.389361169Z TLSWrap client (9) Write finished synchronously
2023-11-24T22:10:41.389369002Z Http2Session client (20) wants read? 1
2023-11-24T22:10:41.389376835Z TLSWrap client (9) ReadStop()
2023-11-24T22:10:41.389384794Z TLSWrap client (9) OnStreamAfterWrite(status = 0)
2023-11-24T22:10:41.389392669Z TLSWrap client (9) Trying to write cleartext input
2023-11-24T22:10:41.389400502Z TLSWrap client (9) Returning from ClearIn(), no pending data
2023-11-24T22:10:41.389409669Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:41.389417960Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:41.389425752Z TLSWrap client (9) No pending encrypted output
2023-11-24T22:10:41.389433502Z TLSWrap client (9) No pending cleartext input, not inside DoWrite()
2023-11-24T22:10:41.389441669Z TLSWrap client (9) Invoking queued write callbacks (0, (null))
2023-11-24T22:10:41.389482627Z Http2Session client (20) write finished with status 0
2023-11-24T22:10:41.389491502Z TLSWrap client (9) ReadStart()
2023-11-24T22:10:42.491184169Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:42.491485002Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:42.491504669Z Http2Session client (20) request submitted
2023-11-24T22:10:42.491509419Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:42.491593419Z Http2Session client (20) submitting request
2023-11-24T22:10:42.491602086Z HttpStream 23 (113) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:42.491606669Z Http2Session client (20) scheduling write
2023-11-24T22:10:42.491610336Z Http2Session client (20) request submitted, new stream id 23
2023-11-24T22:10:42.491614294Z HTTP2 8: Http2Stream 23 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:42.491618002Z HttpStream 23 (113) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:42.492210877Z HttpStream 23 (113) [Http2Session client (20)] reading starting
2023-11-24T22:10:42.492230961Z Http2Session client (20) sending pending data
2023-11-24T22:10:42.492237544Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:10:42.492241586Z TLSWrap client (9) DoWrite()
2023-11-24T22:10:42.492245544Z TLSWrap client (9) Writing 14077 bytes, written = 14077
2023-11-24T22:10:42.492249211Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:10:42.492252794Z TLSWrap client (9) EncOut() write is scheduled
2023-11-24T22:10:42.492256377Z TLSWrap client (9) Writing 1 buffers to the underlying stream
2023-11-24T22:10:42.492260002Z Http2Session client (20) wants read? 1
2023-11-24T22:10:42.492263586Z TLSWrap client (9) ReadStop()
2023-11-24T22:10:43.595041336Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:43.595097170Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:43.595101836Z Http2Session client (20) request submitted
2023-11-24T22:10:43.595105878Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:43.595317878Z Http2Session client (20) submitting request
2023-11-24T22:10:43.595357878Z HttpStream 25 (119) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:43.595362253Z Http2Session client (20) scheduling write
2023-11-24T22:10:43.595365628Z Http2Session client (20) request submitted, new stream id 25
2023-11-24T22:10:43.595369836Z HTTP2 8: Http2Stream 25 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:43.595374128Z HttpStream 25 (119) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:43.595378545Z HttpStream 25 (119) [Http2Session client (20)] reading starting
2023-11-24T22:10:43.595382378Z Http2Session client (20) sending pending data
2023-11-24T22:10:44.696197753Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:44.696261587Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:44.696265378Z Http2Session client (20) request submitted
2023-11-24T22:10:44.696267795Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:44.696271128Z Http2Session client (20) submitting request
2023-11-24T22:10:44.696278628Z HttpStream 27 (123) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:44.696291170Z Http2Session client (20) scheduling write
2023-11-24T22:10:44.696294420Z Http2Session client (20) request submitted, new stream id 27
2023-11-24T22:10:44.696297670Z HTTP2 8: Http2Stream 27 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:44.696300337Z HttpStream 27 (123) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:44.696429753Z HttpStream 27 (123) [Http2Session client (20)] reading starting
2023-11-24T22:10:44.696441212Z Http2Session client (20) sending pending data
2023-11-24T22:10:45.797614879Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:45.797689587Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:45.797695171Z Http2Session client (20) request submitted
2023-11-24T22:10:45.797697421Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:45.797710837Z Http2Session client (20) submitting request
2023-11-24T22:10:45.797713712Z HttpStream 29 (127) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:45.797715879Z Http2Session client (20) scheduling write
2023-11-24T22:10:45.797717837Z Http2Session client (20) request submitted, new stream id 29
2023-11-24T22:10:45.797725462Z HTTP2 8: Http2Stream 29 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:45.797727754Z HttpStream 29 (127) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:45.797835754Z HttpStream 29 (127) [Http2Session client (20)] reading starting
2023-11-24T22:10:45.797843796Z Http2Session client (20) sending pending data
2023-11-24T22:10:46.900559796Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:46.900675046Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:46.900690338Z Http2Session client (20) request submitted
2023-11-24T22:10:46.900694046Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:46.900696838Z Http2Session client (20) submitting request
2023-11-24T22:10:46.900699671Z HttpStream 31 (131) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:46.900702421Z Http2Session client (20) scheduling write
2023-11-24T22:10:46.900705005Z Http2Session client (20) request submitted, new stream id 31
2023-11-24T22:10:46.900722088Z HTTP2 8: Http2Stream 31 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:46.900735838Z HttpStream 31 (131) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:46.900762338Z HttpStream 31 (131) [Http2Session client (20)] reading starting
2023-11-24T22:10:46.900767963Z Http2Session client (20) sending pending data
2023-11-24T22:10:48.003367172Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:48.003567047Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:48.003588422Z Http2Session client (20) request submitted
2023-11-24T22:10:48.003591922Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:48.003594797Z Http2Session client (20) submitting request
2023-11-24T22:10:48.003597547Z HttpStream 33 (135) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:48.003600380Z Http2Session client (20) scheduling write
2023-11-24T22:10:48.003602963Z Http2Session client (20) request submitted, new stream id 33
2023-11-24T22:10:48.003605547Z HTTP2 8: Http2Stream 33 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:48.003608172Z HttpStream 33 (135) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:48.003743422Z HttpStream 33 (135) [Http2Session client (20)] reading starting
2023-11-24T22:10:48.003756505Z Http2Session client (20) sending pending data
2023-11-24T22:10:49.108531756Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:49.108624506Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:49.108636006Z Http2Session client (20) request submitted
2023-11-24T22:10:49.108639797Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:49.108642964Z Http2Session client (20) submitting request
2023-11-24T22:10:49.108645797Z HttpStream 35 (139) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:49.108648922Z Http2Session client (20) scheduling write
2023-11-24T22:10:49.108651839Z Http2Session client (20) request submitted, new stream id 35
2023-11-24T22:10:49.108708547Z HTTP2 8: Http2Stream 35 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:49.108714714Z HttpStream 35 (139) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:49.108839797Z HttpStream 35 (139) [Http2Session client (20)] reading starting
2023-11-24T22:10:49.108859672Z Http2Session client (20) sending pending data
2023-11-24T22:10:50.210615131Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:50.210734173Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:50.210758381Z Http2Session client (20) request submitted
2023-11-24T22:10:50.210763714Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:50.210768048Z Http2Session client (20) submitting request
2023-11-24T22:10:50.210772673Z HttpStream 37 (143) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:50.210788631Z Http2Session client (20) scheduling write
2023-11-24T22:10:50.210792923Z Http2Session client (20) request submitted, new stream id 37
2023-11-24T22:10:50.210817964Z HTTP2 8: Http2Stream 37 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:50.210829131Z HttpStream 37 (143) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:50.210960089Z HttpStream 37 (143) [Http2Session client (20)] reading starting
2023-11-24T22:10:50.210970923Z Http2Session client (20) sending pending data
2023-11-24T22:10:51.313222840Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:51.313433007Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:51.313493798Z Http2Session client (20) request submitted
2023-11-24T22:10:51.313507632Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:51.313847632Z Http2Session client (20) submitting request
2023-11-24T22:10:51.313884007Z HttpStream 39 (147) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:51.313894715Z Http2Session client (20) scheduling write
2023-11-24T22:10:51.313903257Z Http2Session client (20) request submitted, new stream id 39
2023-11-24T22:10:51.313913298Z HTTP2 8: Http2Stream 39 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:51.313921757Z HttpStream 39 (147) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:51.314023173Z HttpStream 39 (147) [Http2Session client (20)] reading starting
2023-11-24T22:10:51.314052798Z Http2Session client (20) sending pending data
2023-11-24T22:10:52.420615799Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:52.420995299Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:52.421015091Z Http2Session client (20) request submitted
2023-11-24T22:10:52.421019674Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:52.421022882Z Http2Session client (20) submitting request
2023-11-24T22:10:52.421026007Z HttpStream 41 (151) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:52.421029424Z Http2Session client (20) scheduling write
2023-11-24T22:10:52.421032466Z Http2Session client (20) request submitted, new stream id 41
2023-11-24T22:10:52.421102049Z HTTP2 8: Http2Stream 41 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:52.421114257Z HttpStream 41 (151) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:52.421118132Z HttpStream 41 (151) [Http2Session client (20)] reading starting
2023-11-24T22:10:52.421121507Z Http2Session client (20) sending pending data
2023-11-24T22:10:53.526694341Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:53.527132883Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:53.527205799Z Http2Session client (20) request submitted
2023-11-24T22:10:53.527217633Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:53.527226341Z Http2Session client (20) submitting request
2023-11-24T22:10:53.527234341Z HttpStream 43 (155) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:53.527242633Z Http2Session client (20) scheduling write
2023-11-24T22:10:53.527251008Z Http2Session client (20) request submitted, new stream id 43
2023-11-24T22:10:53.527540674Z HTTP2 8: Http2Stream 43 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:53.527573174Z HttpStream 43 (155) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:53.527583758Z HttpStream 43 (155) [Http2Session client (20)] reading starting
2023-11-24T22:10:53.527640758Z Http2Session client (20) sending pending data
2023-11-24T22:10:54.634546258Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:54.634939092Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:54.634960633Z Http2Session client (20) request submitted
2023-11-24T22:10:54.634969842Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:54.634978800Z Http2Session client (20) submitting request
2023-11-24T22:10:54.634987300Z HttpStream 45 (159) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:54.634995717Z Http2Session client (20) scheduling write
2023-11-24T22:10:54.635003925Z Http2Session client (20) request submitted, new stream id 45
2023-11-24T22:10:54.635062342Z HTTP2 8: Http2Stream 45 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:54.635074925Z HttpStream 45 (159) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:54.635733550Z HttpStream 45 (159) [Http2Session client (20)] reading starting
2023-11-24T22:10:54.635771383Z Http2Session client (20) sending pending data
2023-11-24T22:10:55.742651467Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:55.742847717Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:55.742887009Z Http2Session client (20) request submitted
2023-11-24T22:10:55.742897550Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:55.742931134Z Http2Session client (20) submitting request
2023-11-24T22:10:55.743205050Z HttpStream 47 (163) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:55.743228675Z Http2Session client (20) scheduling write
2023-11-24T22:10:55.743238050Z Http2Session client (20) request submitted, new stream id 47
2023-11-24T22:10:55.743246384Z HTTP2 8: Http2Stream 47 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:55.743254759Z HttpStream 47 (163) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:55.743418800Z HttpStream 47 (163) [Http2Session client (20)] reading starting
2023-11-24T22:10:55.743874092Z Http2Session client (20) sending pending data
2023-11-24T22:10:56.850655343Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:56.851260009Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:56.851297468Z Http2Session client (20) request submitted
2023-11-24T22:10:56.851307968Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:56.851316843Z Http2Session client (20) submitting request
2023-11-24T22:10:56.851326634Z HttpStream 49 (167) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:56.851335718Z Http2Session client (20) scheduling write
2023-11-24T22:10:56.851343509Z Http2Session client (20) request submitted, new stream id 49
2023-11-24T22:10:56.851713884Z HTTP2 8: Http2Stream 49 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:56.851749301Z HttpStream 49 (167) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:56.851760176Z HttpStream 49 (167) [Http2Session client (20)] reading starting
2023-11-24T22:10:56.851768843Z Http2Session client (20) sending pending data
2023-11-24T22:10:57.954001010Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:57.954411843Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:57.954494343Z Http2Session client (20) request submitted
2023-11-24T22:10:57.954512135Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:57.954521093Z Http2Session client (20) submitting request
2023-11-24T22:10:57.954617343Z HttpStream 51 (171) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:57.954633801Z Http2Session client (20) scheduling write
2023-11-24T22:10:57.954642301Z Http2Session client (20) request submitted, new stream id 51
2023-11-24T22:10:57.954650593Z HTTP2 8: Http2Stream 51 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:57.954658676Z HttpStream 51 (171) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:57.954956593Z HttpStream 51 (171) [Http2Session client (20)] reading starting
2023-11-24T22:10:57.954983343Z Http2Session client (20) sending pending data
2023-11-24T22:10:59.057842135Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:10:59.058227177Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:10:59.058257510Z Http2Session client (20) request submitted
2023-11-24T22:10:59.058267677Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:10:59.058276510Z Http2Session client (20) submitting request
2023-11-24T22:10:59.058284635Z HttpStream 53 (175) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:59.058293177Z Http2Session client (20) scheduling write
2023-11-24T22:10:59.058352885Z Http2Session client (20) request submitted, new stream id 53
2023-11-24T22:10:59.058408594Z HTTP2 8: Http2Stream 53 [Http2Session client]: shutting down writable on _final
2023-11-24T22:10:59.058477552Z HttpStream 53 (175) [Http2Session client (20)] writable side shutdown
2023-11-24T22:10:59.058765260Z HttpStream 53 (175) [Http2Session client (20)] reading starting
2023-11-24T22:10:59.058797969Z Http2Session client (20) sending pending data
2023-11-24T22:11:00.160634428Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:11:00.160948261Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:11:00.160971761Z Http2Session client (20) request submitted
2023-11-24T22:11:00.160979344Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:11:00.160985719Z Http2Session client (20) submitting request
2023-11-24T22:11:00.161238636Z HttpStream 55 (179) [Http2Session client (20)] writable side shutdown
2023-11-24T22:11:00.161268178Z Http2Session client (20) scheduling write
2023-11-24T22:11:00.161276553Z Http2Session client (20) request submitted, new stream id 55
2023-11-24T22:11:00.161282886Z HTTP2 8: Http2Stream 55 [Http2Session client]: shutting down writable on _final
2023-11-24T22:11:00.161289011Z HttpStream 55 (179) [Http2Session client (20)] writable side shutdown
2023-11-24T22:11:00.161429928Z HttpStream 55 (179) [Http2Session client (20)] reading starting
2023-11-24T22:11:00.161470428Z Http2Session client (20) sending pending data
2023-11-24T22:11:01.264824595Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:11:01.265179470Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:11:01.265212928Z Http2Session client (20) request submitted
2023-11-24T22:11:01.265223720Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:11:01.265232428Z Http2Session client (20) submitting request
2023-11-24T22:11:01.265240970Z HttpStream 57 (183) [Http2Session client (20)] writable side shutdown
2023-11-24T22:11:01.265249386Z Http2Session client (20) scheduling write
2023-11-24T22:11:01.265258011Z Http2Session client (20) request submitted, new stream id 57
2023-11-24T22:11:01.266061720Z HTTP2 8: Http2Stream 57 [Http2Session client]: shutting down writable on _final
2023-11-24T22:11:01.266102303Z HttpStream 57 (183) [Http2Session client (20)] writable side shutdown
2023-11-24T22:11:01.266235095Z HttpStream 57 (183) [Http2Session client (20)] reading starting
2023-11-24T22:11:01.266249720Z Http2Session client (20) sending pending data
2023-11-24T22:11:02.368254095Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:11:02.368515095Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:11:02.368538095Z Http2Session client (20) request submitted
2023-11-24T22:11:02.368587679Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:11:02.368808137Z Http2Session client (20) submitting request
2023-11-24T22:11:02.368830304Z HttpStream 59 (187) [Http2Session client (20)] writable side shutdown
2023-11-24T22:11:02.368835970Z Http2Session client (20) scheduling write
2023-11-24T22:11:02.368840679Z Http2Session client (20) request submitted, new stream id 59
2023-11-24T22:11:02.368882095Z HTTP2 8: Http2Stream 59 [Http2Session client]: shutting down writable on _final
2023-11-24T22:11:02.368894929Z HttpStream 59 (187) [Http2Session client (20)] writable side shutdown
2023-11-24T22:11:02.369084762Z HttpStream 59 (187) [Http2Session client (20)] reading starting
2023-11-24T22:11:02.369100804Z Http2Session client (20) sending pending data
2023-11-24T22:11:02.373268554Z TLSWrap client (9) OnStreamAfterWrite(status = -110)
2023-11-24T22:11:02.373299512Z TLSWrap client (9) Invoking queued write callbacks (-110, (null))
2023-11-24T22:11:02.373306845Z Http2Session client (20) write finished with status -110
2023-11-24T22:11:02.373312845Z TLSWrap client (9) ReadStart()
2023-11-24T22:11:02.373318554Z Http2Session client (20) scheduling write
2023-11-24T22:11:02.373324220Z Http2Session client (20) sending pending data
2023-11-24T22:11:02.373588345Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.373608720Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.373705345Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.373982804Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.374805804Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.374835262Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.374841512Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.375203929Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.375220595Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.375226929Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.376741887Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.376788179Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.376795637Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.376801929Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.376808345Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.376813887Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.376819429Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.377091595Z Http2Session client (20) nghttp2 has 14077 bytes to send
2023-11-24T22:11:02.377290554Z TLSWrap client (9) DoWrite()
2023-11-24T22:11:02.378126595Z TLSWrap client (9) Writing 253386 bytes, written = 253386
2023-11-24T22:11:02.378154887Z TLSWrap client (9) Trying to write encrypted output
2023-11-24T22:11:02.378159929Z TLSWrap client (9) Returning from EncOut(), write currently in progress
2023-11-24T22:11:02.378164595Z Http2Session client (20) wants read? 1
2023-11-24T22:11:02.378169679Z TLSWrap client (9) ReadStop()
2023-11-24T22:11:03.471646637Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:11:03.472173637Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:11:03.472209846Z Http2Session client (20) request submitted
2023-11-24T22:11:03.472219762Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:11:03.472228429Z Http2Session client (20) submitting request
2023-11-24T22:11:03.472236721Z HttpStream 61 (192) [Http2Session client (20)] writable side shutdown
2023-11-24T22:11:03.472245137Z Http2Session client (20) scheduling write
2023-11-24T22:11:03.472252929Z Http2Session client (20) request submitted, new stream id 61
2023-11-24T22:11:03.472261179Z HTTP2 8: Http2Stream 61 [Http2Session client]: shutting down writable on _final
2023-11-24T22:11:03.472269346Z HttpStream 61 (192) [Http2Session client (20)] writable side shutdown
2023-11-24T22:11:03.473254679Z HttpStream 61 (192) [Http2Session client (20)] reading starting
2023-11-24T22:11:03.473292096Z Http2Session client (20) sending pending data
2023-11-24T22:11:04.572913555Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:11:04.573077888Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:11:04.573094346Z Http2Session client (20) request submitted
2023-11-24T22:11:04.573098555Z Http2Priority: parent: 0, weight: 16, exclusive: no
2023-11-24T22:11:04.573102013Z Http2Session client (20) submitting request
2023-11-24T22:11:04.573105180Z HttpStream 63 (196) [Http2Session client (20)] writable side shutdown
2023-11-24T22:11:04.573108430Z Http2Session client (20) scheduling write
2023-11-24T22:11:04.573111471Z Http2Session client (20) request submitted, new stream id 63
2023-11-24T22:11:04.573136846Z HTTP2 8: Http2Stream 63 [Http2Session client]: shutting down writable on _final
2023-11-24T22:11:04.573142555Z HttpStream 63 (196) [Http2Session client (20)] writable side shutdown
2023-11-24T22:11:04.573302430Z HttpStream 63 (196) [Http2Session client (20)] reading starting
2023-11-24T22:11:04.573315430Z Http2Session client (20) sending pending data
2023-11-24T22:11:05.680528805Z HTTP2 8: Http2Session client: initiating request
2023-11-24T22:11:05.680718930Z HTTP2 8: Http2Session client: connected, initializing request
2023-11-24T22:11:05.680776305Z Http2Session client (20) request submitted

Netstat logs

Very similar logs to the two instances above. Socket disappears from the list in between the logs made at Fri Nov 24 22:11:01 UTC 2023 and Fri Nov 24 22:11:02 UTC 2023, matching the timing of the -110 error code logged in the logs above.

netstat logs
Fri Nov 24 22:10:30 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:31 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:32 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:33 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:34 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:35 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0      0 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               off (0.00/0/0)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:36 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  14099 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (0.12/0/1)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:37 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  28198 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (1.52/0/3)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:38 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  42297 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (0.52/0/3)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:39 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  56396 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (2.78/0/4)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:40 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  70495 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (1.77/0/4)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:41 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  84594 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (0.76/0/4)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:42 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  84594 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (6.23/0/5)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:43 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (5.22/0/5)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:44 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (4.20/0/5)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:45 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (3.19/0/5)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:46 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (2.18/0/5)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:47 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (1.16/0/5)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:48 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (0.14/0/5)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:49 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (12.40/0/6)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:50 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (11.39/0/6)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:51 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (10.38/0/6)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:52 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (9.36/0/6)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:53 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (8.35/0/6)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:54 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (7.33/0/6)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:55 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (6.32/0/6)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:56 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (5.32/0/6)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:57 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (4.31/0/6)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:58 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (3.29/0/6)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:10:59 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (2.27/0/6)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:11:00 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (1.25/0/6)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:11:01 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
tcp        0  97920 172.22.0.3:47360        172.22.0.2:3001         ESTABLISHED 8/node               probe (0.23/0/6)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)
Fri Nov 24 22:11:02 UTC 2023
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name     Timer
tcp        0      0 0.0.0.0:9228            0.0.0.0:*               LISTEN      8/node               off (0.00/0/0)
tcp        0      0 127.0.0.11:46451        0.0.0.0:*               LISTEN      -                    off (0.00/0/0)
udp        0      0 127.0.0.11:43466        0.0.0.0:*                           -                    off (0.00/0/0)

@mantysalo
Copy link
Author

mantysalo commented Nov 26, 2023

I attempted to find the reason for why the -110 status is not passed correctly and found this piece of code:

node/src/node_http2.cc

Lines 1675 to 1678 in f11b206

// TODO(addaleax): Pass `status` instead of 0, so that we actually error
// out with the error from the write to the underlying protocol,
// if one occurred.
WriteWrap::FromObject(wrap)->Done(0);

Not sure if it's related, but seems like it could be.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant