当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js trace_events.createTracing(options)用法及代码示例


trace_events.createTracing(options)

添加于:v10.0.0

参数
  • options <Object>
    • categories <string[]> 跟踪类别名称数组。尽可能将数组中包含的值强制转换为字符串。如果无法强制该值,则会引发错误。
  • 返回: <Tracing>

为给定的 categories 集创建并返回 Tracing 对象。

const trace_events = require('node:trace_events');
const categories = ['node.perf', 'node.async_hooks'];
const tracing = trace_events.createTracing({ categories });
tracing.enable();
// do stuff
tracing.disable();

相关用法


注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 trace_events.createTracing(options)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。