Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

StackTrace

import type { StackTrace } from "https://googleapis.deno.dev/v1/cloudtrace:v2.ts";

A call stack appearing in a trace.

interface StackTrace {
stackFrames?: StackFrames;
stackTraceHashId?: bigint;
}

§Properties

§
stackFrames?: StackFrames
[src]

Stack frames in this stack trace. A maximum of 128 frames are allowed.

§
stackTraceHashId?: bigint
[src]

The hash ID is used to conserve network bandwidth for duplicate stack traces within a single trace. Often multiple spans will have identical stack traces. The first occurrence of a stack trace should contain both the stackFrame content and a value in stackTraceHashId. Subsequent spans within the same request can refer to that stack trace by only setting stackTraceHashId.