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

Stack

import type { Stack } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

A structuredstacktrace for a process running on the worker.

interface Stack {
stackContent?: string;
threadCount?: number;
threadName?: string;
threadState?: string;
timestamp?: Date;
}

§Properties

§
stackContent?: string
[src]

The raw stack trace.

§
threadCount?: number
[src]

With java thread dumps we may get collapsed stacks e.g., N threads in stack "". Instead of having to copy over the same stack trace N times, this int field captures this.

§
threadName?: string
[src]

Thread name. For example, "CommitThread-0,10,main"

§
threadState?: string
[src]

The state of the thread. For example, "WAITING".

§
timestamp?: Date
[src]

Timestamp at which the stack was captured.