A plugin that captures and records the current active Node.js handles.
This plugin relies on the internal Node.js method process._getActiveHandles(), which may change between Node.js versions and is not part of the public API.
process._getActiveHandles()
Captures the current active handles in the Node.js process and records their aggregated counts by object name into the provided MetricsContext.
The MetricsContext instance where the aggregated active handle data will be stored.
A plugin that captures and records the current active Node.js handles.
Remarks
This plugin relies on the internal Node.js method
process._getActiveHandles()
, which may change between Node.js versions and is not part of the public API.