當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。