histogram[Symbol.dispose]()


处理直方图时禁用更新间隔计时器。

¥Disables the update interval timer when the histogram is disposed.

const { monitorEventLoopDelay } = require('node:perf_hooks');
{
  using hist = monitorEventLoopDelay({ resolution: 20 });
  hist.enable();
  // The histogram will be disabled when the block is exited.
}