mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 16:10:50 +00:00

Notable changes: Adds `util.parseArgs` helper for higher level command-line argument parsing. Contributed by Benjamin Coe, John Gee, Darcy Clarke, Joe Sepi, Kevin Gibbons, Aaron Casanova, Jessica Nahulan, and Jordan Harband. https://github.com/nodejs/node/pull/42675 Node.js ESM Loader hooks now support multiple custom loaders, and composition is achieved via "chaining": `foo-loader` calls `bar-loader` calls `qux-loader` (a custom loader _must_ now signal a short circuit when intentionally not calling the next). See the ESM docs (https://nodejs.org/dist/latest-v16.x/docs/api/esm.html) for details. Contributed by Jacob Smith, Geoffrey Booth, and Bradley Farias. https://github.com/nodejs/node/pull/42623 The `node:test` module, which was initially introduced in Node.js v18.0.0, is now available with all the changes done to it up to Node.js v18.7.0. To better align Node.js' experimental implementation of the Web Crypto API with other runtimes, several changes were made: * Support for CFRG curves was added, with the `'Ed25519'`, `'Ed448'`, `'X25519'`, and `'X448'` algorithms. * The proprietary `'NODE-DSA'`, `'NODE-DH'`, `'NODE-SCRYPT'`, `'NODE-ED25519'`, `'NODE-ED448'`, `'NODE-X25519'`, and `'NODE-X448'` algorithms were removed. * The proprietary `'node.keyObject'` import/export format was removed. Contributed by Filip Skokan. https://github.com/nodejs/node/pull/42507 https://github.com/nodejs/node/pull/43310 Updated Corepack to 0.12.1 - https://github.com/nodejs/node/pull/43965 Updated ICU to 71.1 - https://github.com/nodejs/node/pull/42655 Updated npm to 8.15.0 - https://github.com/nodejs/node/pull/43917 Updated Undici to 5.8.0 - https://github.com/nodejs/node/pull/43886 (SEMVER-MINOR) crypto: make authTagLength optional for CC20P1305 (Tobias Nießen) https://github.com/nodejs/node/pull/42427 (SEMVER-MINOR) crypto: align webcrypto RSA key import/export with other implementations (Filip Skokan) https://github.com/nodejs/node/pull/42816 (SEMVER-MINOR) dns: export error code constants from `dns/promises` (Feng Yu) https://github.com/nodejs/node/pull/43176 doc: deprecate coercion to integer in process.exit (Daeyeon Jeong) https://github.com/nodejs/node/pull/43738 (SEMVER-MINOR) doc: deprecate diagnostics_channel object subscribe method (Stephen Belanger) https://github.com/nodejs/node/pull/42714 (SEMVER-MINOR) errors: add support for cause in aborterror (James M Snell) https://github.com/nodejs/node/pull/41008 (SEMVER-MINOR) events: expose CustomEvent on global with CLI flag (Daeyeon Jeong) https://github.com/nodejs/node/pull/43885 (SEMVER-MINOR) events: add `CustomEvent` (Daeyeon Jeong) https://github.com/nodejs/node/pull/43514 (SEMVER-MINOR) events: propagate abortsignal reason in new AbortError ctor in events (James M Snell) https://github.com/nodejs/node/pull/41008 (SEMVER-MINOR) fs: propagate abortsignal reason in new AbortSignal constructors (James M Snell) https://github.com/nodejs/node/pull/41008 (SEMVER-MINOR) fs: make params in writing methods optional (LiviaMedeiros) https://github.com/nodejs/node/pull/42601 (SEMVER-MINOR) fs: add `read(buffer[, options])` versions (LiviaMedeiros) https://github.com/nodejs/node/pull/42768 (SEMVER-MINOR) http: add drop request event for http server (theanarkh) https://github.com/nodejs/node/pull/43806 (SEMVER-MINOR) http: add diagnostics channel for http client (theanarkh) https://github.com/nodejs/node/pull/43580 (SEMVER-MINOR) http: add perf_hooks detail for http request and client (theanarkh) https://github.com/nodejs/node/pull/43361 (SEMVER-MINOR) http: add uniqueHeaders option to request and createServer (Paolo Insogna) https://github.com/nodejs/node/pull/41397 (SEMVER-MINOR) http2: propagate abortsignal reason in new AbortError constructor (James M Snell) https://github.com/nodejs/node/pull/41008 (SEMVER-MINOR) http2: compat support for array headers (OneNail) https://github.com/nodejs/node/pull/42901 (SEMVER-MINOR) lib: propagate abortsignal reason in new AbortError constructor in blob (James M Snell) https://github.com/nodejs/node/pull/41008 (SEMVER-MINOR) lib: add abortSignal.throwIfAborted() (James M Snell) https://github.com/nodejs/node/pull/40951 (SEMVER-MINOR) lib: improved diagnostics_channel subscribe/unsubscribe (Stephen Belanger) https://github.com/nodejs/node/pull/42714 (SEMVER-MINOR) module: add isBuiltIn method (hemanth.hm) https://github.com/nodejs/node/pull/43396 (SEMVER-MINOR) module,repl: support 'node:'-only core modules (Colin Ihrig) https://github.com/nodejs/node/pull/42325 (SEMVER-MINOR) net: add drop event for net server (theanarkh) https://github.com/nodejs/node/pull/43582 (SEMVER-MINOR) net: add ability to reset a tcp socket (pupilTong) https://github.com/nodejs/node/pull/43112 (SEMVER-MINOR) node-api: emit uncaught-exception on unhandled tsfn callbacks (Chengzhong Wu) https://github.com/nodejs/node/pull/36510 (SEMVER-MINOR) perf_hooks: add PerformanceResourceTiming (RafaelGSS) https://github.com/nodejs/node/pull/42725 (SEMVER-MINOR) report: add more heap infos in process report (theanarkh) https://github.com/nodejs/node/pull/43116 (SEMVER-MINOR) src: add --openssl-legacy-provider option (Daniel Bevenius) https://github.com/nodejs/node/pull/40478 (SEMVER-MINOR) src: define fs.constants.S_IWUSR & S_IRUSR for Win (Liviu Ionescu) https://github.com/nodejs/node/pull/42757 (SEMVER-MINOR) src,doc,test: add --openssl-shared-config option (Daniel Bevenius) https://github.com/nodejs/node/pull/43124 (SEMVER-MINOR) stream: use cause options in AbortError constructors (James M Snell) https://github.com/nodejs/node/pull/41008 (SEMVER-MINOR) stream: add iterator helper find (Nitzan Uziely) https://github.com/nodejs/node/pull/41849 (SEMVER-MINOR) stream: add writableAborted (Robert Nagy) https://github.com/nodejs/node/pull/40802 (SEMVER-MINOR) timers: propagate signal.reason in awaitable timers (James M Snell) https://github.com/nodejs/node/pull/41008 (SEMVER-MINOR) v8: add v8.startupSnapshot utils (Joyee Cheung) https://github.com/nodejs/node/pull/43329 (SEMVER-MINOR) v8: export more fields in getHeapStatistics (theanarkh) https://github.com/nodejs/node/pull/42784 (SEMVER-MINOR) worker: add hasRef() to MessagePort (Darshan Sen) https://github.com/nodejs/node/pull/42849 PR-URL: https://github.com/nodejs/node/pull/44098
460 lines
11 KiB
Markdown
460 lines
11 KiB
Markdown
# Diagnostics Channel
|
|
|
|
<!--introduced_in=v15.1.0-->
|
|
|
|
> Stability: 1 - Experimental
|
|
|
|
<!-- source_link=lib/diagnostics_channel.js -->
|
|
|
|
The `node:diagnostics_channel` module provides an API to create named channels
|
|
to report arbitrary message data for diagnostics purposes.
|
|
|
|
It can be accessed using:
|
|
|
|
```mjs
|
|
import diagnostics_channel from 'node:diagnostics_channel';
|
|
```
|
|
|
|
```cjs
|
|
const diagnostics_channel = require('node:diagnostics_channel');
|
|
```
|
|
|
|
It is intended that a module writer wanting to report diagnostics messages
|
|
will create one or many top-level channels to report messages through.
|
|
Channels may also be acquired at runtime but it is not encouraged
|
|
due to the additional overhead of doing so. Channels may be exported for
|
|
convenience, but as long as the name is known it can be acquired anywhere.
|
|
|
|
If you intend for your module to produce diagnostics data for others to
|
|
consume it is recommended that you include documentation of what named
|
|
channels are used along with the shape of the message data. Channel names
|
|
should generally include the module name to avoid collisions with data from
|
|
other modules.
|
|
|
|
## Public API
|
|
|
|
### Overview
|
|
|
|
Following is a simple overview of the public API.
|
|
|
|
```mjs
|
|
import diagnostics_channel from 'node:diagnostics_channel';
|
|
|
|
// Get a reusable channel object
|
|
const channel = diagnostics_channel.channel('my-channel');
|
|
|
|
function onMessage(message, name) {
|
|
// Received data
|
|
}
|
|
|
|
// Subscribe to the channel
|
|
diagnostics_channel.subscribe('my-channel', onMessage);
|
|
|
|
// Check if the channel has an active subscriber
|
|
if (channel.hasSubscribers) {
|
|
// Publish data to the channel
|
|
channel.publish({
|
|
some: 'data'
|
|
});
|
|
}
|
|
|
|
// Unsubscribe from the channel
|
|
diagnostics_channel.unsubscribe('my-channel', onMessage);
|
|
```
|
|
|
|
```cjs
|
|
const diagnostics_channel = require('node:diagnostics_channel');
|
|
|
|
// Get a reusable channel object
|
|
const channel = diagnostics_channel.channel('my-channel');
|
|
|
|
function onMessage(message, name) {
|
|
// Received data
|
|
}
|
|
|
|
// Subscribe to the channel
|
|
diagnostics_channel.subscribe('my-channel', onMessage);
|
|
|
|
// Check if the channel has an active subscriber
|
|
if (channel.hasSubscribers) {
|
|
// Publish data to the channel
|
|
channel.publish({
|
|
some: 'data'
|
|
});
|
|
}
|
|
|
|
// Unsubscribe from the channel
|
|
diagnostics_channel.unsubscribe('my-channel', onMessage);
|
|
```
|
|
|
|
#### `diagnostics_channel.hasSubscribers(name)`
|
|
|
|
<!-- YAML
|
|
added:
|
|
- v15.1.0
|
|
- v14.17.0
|
|
-->
|
|
|
|
* `name` {string|symbol} The channel name
|
|
* Returns: {boolean} If there are active subscribers
|
|
|
|
Check if there are active subscribers to the named channel. This is helpful if
|
|
the message you want to send might be expensive to prepare.
|
|
|
|
This API is optional but helpful when trying to publish messages from very
|
|
performance-sensitive code.
|
|
|
|
```mjs
|
|
import diagnostics_channel from 'node:diagnostics_channel';
|
|
|
|
if (diagnostics_channel.hasSubscribers('my-channel')) {
|
|
// There are subscribers, prepare and publish message
|
|
}
|
|
```
|
|
|
|
```cjs
|
|
const diagnostics_channel = require('node:diagnostics_channel');
|
|
|
|
if (diagnostics_channel.hasSubscribers('my-channel')) {
|
|
// There are subscribers, prepare and publish message
|
|
}
|
|
```
|
|
|
|
#### `diagnostics_channel.channel(name)`
|
|
|
|
<!-- YAML
|
|
added:
|
|
- v15.1.0
|
|
- v14.17.0
|
|
-->
|
|
|
|
* `name` {string|symbol} The channel name
|
|
* Returns: {Channel} The named channel object
|
|
|
|
This is the primary entry-point for anyone wanting to publish to a named
|
|
channel. It produces a channel object which is optimized to reduce overhead at
|
|
publish time as much as possible.
|
|
|
|
```mjs
|
|
import diagnostics_channel from 'node:diagnostics_channel';
|
|
|
|
const channel = diagnostics_channel.channel('my-channel');
|
|
```
|
|
|
|
```cjs
|
|
const diagnostics_channel = require('node:diagnostics_channel');
|
|
|
|
const channel = diagnostics_channel.channel('my-channel');
|
|
```
|
|
|
|
#### `diagnostics_channel.subscribe(name, onMessage)`
|
|
|
|
<!-- YAML
|
|
added:
|
|
- v18.7.0
|
|
- v16.17.0
|
|
-->
|
|
|
|
* `name` {string|symbol} The channel name
|
|
* `onMessage` {Function} The handler to receive channel messages
|
|
* `message` {any} The message data
|
|
* `name` {string|symbol} The name of the channel
|
|
|
|
Register a message handler to subscribe to this channel. This message handler
|
|
will be run synchronously whenever a message is published to the channel. Any
|
|
errors thrown in the message handler will trigger an [`'uncaughtException'`][].
|
|
|
|
```mjs
|
|
import diagnostics_channel from 'diagnostics_channel';
|
|
|
|
diagnostics_channel.subscribe('my-channel', (message, name) => {
|
|
// Received data
|
|
});
|
|
```
|
|
|
|
```cjs
|
|
const diagnostics_channel = require('diagnostics_channel');
|
|
|
|
diagnostics_channel.subscribe('my-channel', (message, name) => {
|
|
// Received data
|
|
});
|
|
```
|
|
|
|
#### `diagnostics_channel.unsubscribe(name, onMessage)`
|
|
|
|
<!-- YAML
|
|
added:
|
|
- v18.7.0
|
|
- v16.17.0
|
|
-->
|
|
|
|
* `name` {string|symbol} The channel name
|
|
* `onMessage` {Function} The previous subscribed handler to remove
|
|
* Returns: {boolean} `true` if the handler was found, `false` otherwise.
|
|
|
|
Remove a message handler previously registered to this channel with
|
|
[`diagnostics_channel.subscribe(name, onMessage)`][].
|
|
|
|
```mjs
|
|
import diagnostics_channel from 'diagnostics_channel';
|
|
|
|
function onMessage(message, name) {
|
|
// Received data
|
|
}
|
|
|
|
diagnostics_channel.subscribe('my-channel', onMessage);
|
|
|
|
diagnostics_channel.unsubscribe('my-channel', onMessage);
|
|
```
|
|
|
|
```cjs
|
|
const diagnostics_channel = require('diagnostics_channel');
|
|
|
|
function onMessage(message, name) {
|
|
// Received data
|
|
}
|
|
|
|
diagnostics_channel.subscribe('my-channel', onMessage);
|
|
|
|
diagnostics_channel.unsubscribe('my-channel', onMessage);
|
|
```
|
|
|
|
### Class: `Channel`
|
|
|
|
<!-- YAML
|
|
added:
|
|
- v15.1.0
|
|
- v14.17.0
|
|
-->
|
|
|
|
The class `Channel` represents an individual named channel within the data
|
|
pipeline. It is used to track subscribers and to publish messages when there
|
|
are subscribers present. It exists as a separate object to avoid channel
|
|
lookups at publish time, enabling very fast publish speeds and allowing
|
|
for heavy use while incurring very minimal cost. Channels are created with
|
|
[`diagnostics_channel.channel(name)`][], constructing a channel directly
|
|
with `new Channel(name)` is not supported.
|
|
|
|
#### `channel.hasSubscribers`
|
|
|
|
<!-- YAML
|
|
added:
|
|
- v15.1.0
|
|
- v14.17.0
|
|
-->
|
|
|
|
* Returns: {boolean} If there are active subscribers
|
|
|
|
Check if there are active subscribers to this channel. This is helpful if
|
|
the message you want to send might be expensive to prepare.
|
|
|
|
This API is optional but helpful when trying to publish messages from very
|
|
performance-sensitive code.
|
|
|
|
```mjs
|
|
import diagnostics_channel from 'node:diagnostics_channel';
|
|
|
|
const channel = diagnostics_channel.channel('my-channel');
|
|
|
|
if (channel.hasSubscribers) {
|
|
// There are subscribers, prepare and publish message
|
|
}
|
|
```
|
|
|
|
```cjs
|
|
const diagnostics_channel = require('node:diagnostics_channel');
|
|
|
|
const channel = diagnostics_channel.channel('my-channel');
|
|
|
|
if (channel.hasSubscribers) {
|
|
// There are subscribers, prepare and publish message
|
|
}
|
|
```
|
|
|
|
#### `channel.publish(message)`
|
|
|
|
<!-- YAML
|
|
added:
|
|
- v15.1.0
|
|
- v14.17.0
|
|
-->
|
|
|
|
* `message` {any} The message to send to the channel subscribers
|
|
|
|
Publish a message to any subscribers to the channel. This will trigger
|
|
message handlers synchronously so they will execute within the same context.
|
|
|
|
```mjs
|
|
import diagnostics_channel from 'node:diagnostics_channel';
|
|
|
|
const channel = diagnostics_channel.channel('my-channel');
|
|
|
|
channel.publish({
|
|
some: 'message'
|
|
});
|
|
```
|
|
|
|
```cjs
|
|
const diagnostics_channel = require('node:diagnostics_channel');
|
|
|
|
const channel = diagnostics_channel.channel('my-channel');
|
|
|
|
channel.publish({
|
|
some: 'message'
|
|
});
|
|
```
|
|
|
|
#### `channel.subscribe(onMessage)`
|
|
|
|
<!-- YAML
|
|
added:
|
|
- v15.1.0
|
|
- v14.17.0
|
|
deprecated:
|
|
- v18.7.0
|
|
- v16.17.0
|
|
-->
|
|
|
|
> Stability: 0 - Deprecated: Use [`diagnostics_channel.subscribe(name, onMessage)`][]
|
|
|
|
* `onMessage` {Function} The handler to receive channel messages
|
|
* `message` {any} The message data
|
|
* `name` {string|symbol} The name of the channel
|
|
|
|
Register a message handler to subscribe to this channel. This message handler
|
|
will be run synchronously whenever a message is published to the channel. Any
|
|
errors thrown in the message handler will trigger an [`'uncaughtException'`][].
|
|
|
|
```mjs
|
|
import diagnostics_channel from 'node:diagnostics_channel';
|
|
|
|
const channel = diagnostics_channel.channel('my-channel');
|
|
|
|
channel.subscribe((message, name) => {
|
|
// Received data
|
|
});
|
|
```
|
|
|
|
```cjs
|
|
const diagnostics_channel = require('node:diagnostics_channel');
|
|
|
|
const channel = diagnostics_channel.channel('my-channel');
|
|
|
|
channel.subscribe((message, name) => {
|
|
// Received data
|
|
});
|
|
```
|
|
|
|
#### `channel.unsubscribe(onMessage)`
|
|
|
|
<!-- YAML
|
|
added:
|
|
- v15.1.0
|
|
- v14.17.0
|
|
deprecated:
|
|
- v18.7.0
|
|
- v16.17.0
|
|
changes:
|
|
- version:
|
|
- v17.1.0
|
|
- v16.14.0
|
|
- v14.19.0
|
|
pr-url: https://github.com/nodejs/node/pull/40433
|
|
description: Added return value. Added to channels without subscribers.
|
|
-->
|
|
|
|
> Stability: 0 - Deprecated: Use [`diagnostics_channel.unsubscribe(name, onMessage)`][]
|
|
|
|
* `onMessage` {Function} The previous subscribed handler to remove
|
|
* Returns: {boolean} `true` if the handler was found, `false` otherwise.
|
|
|
|
Remove a message handler previously registered to this channel with
|
|
[`channel.subscribe(onMessage)`][].
|
|
|
|
```mjs
|
|
import diagnostics_channel from 'node:diagnostics_channel';
|
|
|
|
const channel = diagnostics_channel.channel('my-channel');
|
|
|
|
function onMessage(message, name) {
|
|
// Received data
|
|
}
|
|
|
|
channel.subscribe(onMessage);
|
|
|
|
channel.unsubscribe(onMessage);
|
|
```
|
|
|
|
```cjs
|
|
const diagnostics_channel = require('node:diagnostics_channel');
|
|
|
|
const channel = diagnostics_channel.channel('my-channel');
|
|
|
|
function onMessage(message, name) {
|
|
// Received data
|
|
}
|
|
|
|
channel.subscribe(onMessage);
|
|
|
|
channel.unsubscribe(onMessage);
|
|
```
|
|
|
|
### Built-in Channels
|
|
|
|
#### HTTP
|
|
|
|
`http.client.request.start`
|
|
|
|
* `request` {http.ClientRequest}
|
|
|
|
Emitted when client starts a request.
|
|
|
|
`http.client.response.finish`
|
|
|
|
* `request` {http.ClientRequest}
|
|
* `response` {http.IncomingMessage}
|
|
|
|
Emitted when client receives a response.
|
|
|
|
`http.server.request.start`
|
|
|
|
* `request` {http.IncomingMessage}
|
|
* `response` {http.ServerResponse}
|
|
* `socket` {net.Socket}
|
|
* `server` {http.Server}
|
|
|
|
Emitted when server receives a request.
|
|
|
|
`http.server.response.finish`
|
|
|
|
* `request` {http.IncomingMessage}
|
|
* `response` {http.ServerResponse}
|
|
* `socket` {net.Socket}
|
|
* `server` {http.Server}
|
|
|
|
Emitted when server sends a response.
|
|
|
|
`net.client.socket`
|
|
|
|
* `socket` {net.Socket}
|
|
|
|
Emitted when a new TCP or pipe client socket is created.
|
|
|
|
`net.server.socket`
|
|
|
|
* `socket` {net.Socket}
|
|
|
|
Emitted when a new TCP or pipe connection is received.
|
|
|
|
`udp.socket`
|
|
|
|
* `socket` {dgram.Socket}
|
|
|
|
Emitted when a new UDP socket is created.
|
|
|
|
[`'uncaughtException'`]: process.md#event-uncaughtexception
|
|
[`channel.subscribe(onMessage)`]: #channelsubscribeonmessage
|
|
[`diagnostics_channel.channel(name)`]: #diagnostics_channelchannelname
|
|
[`diagnostics_channel.subscribe(name, onMessage)`]: #diagnostics_channelsubscribename-onmessage
|
|
[`diagnostics_channel.unsubscribe(name, onMessage)`]: #diagnostics_channelunsubscribename-onmessage
|