Skip to content

Fix for: #58234 #58274

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

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion doc/api/diagnostics_channel.md
Original file line number Diff line number Diff line change
Expand Up @@ -1103,14 +1103,15 @@ for the sync error and one for the async error.

### Built-in Channels

> Stability: 1 - Experimental

While the diagnostics\_channel API is now considered stable, the built-in
channels currently available are not. Each channel must be declared stable
independently.

#### Console

> Stability: 1 - Experimental

`console.log`

* `args` {any\[]}
Expand Down Expand Up @@ -1148,6 +1149,8 @@ passed to `console.error()`.

#### HTTP

> Stability: 1 - Experimental

`http.client.request.created`

* `request` {http.ClientRequest}
Expand Down Expand Up @@ -1212,6 +1215,8 @@ Emitted when a stream is created on the client.

#### Modules

> Stability: 1 - Experimental

`module.require.start`

* `event` {Object} containing the following properties
Expand Down Expand Up @@ -1264,6 +1269,8 @@ Emitted when a `import()` throws an error. See [`error` event][].

#### NET

> Stability: 1 - Experimental

`net.client.socket`

* `socket` {net.Socket}
Expand Down Expand Up @@ -1298,6 +1305,8 @@ Emitted when [`net.Server.listen()`][] is returning an error.

#### UDP

> Stability: 1 - Experimental

`udp.socket`

* `socket` {dgram.Socket}
Expand All @@ -1306,6 +1315,8 @@ Emitted when a new UDP socket is created.

#### Process

> Stability: 1 - Experimental

<!-- YAML
added: v16.18.0
-->
Expand All @@ -1326,6 +1337,8 @@ Emitted when [`process.execve()`][] is invoked.

#### Worker Thread

> Stability: 1 - Experimental

<!-- YAML
added: v16.18.0
-->
Expand Down