Skip to main content
function createTracing
createTracing(options: CreateTracingOptions): Tracing
Deprecated

Deno compatibility

This symbol is a non-functional stub.

Creates and returns a Tracing object for the given set of categories.

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

Parameters

Return Type

Back to top