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

Trace

import type { Trace } from "https://aws-api.deno.dev/v0.4/services/xray.ts?docs=full";

A collection of segment documents with matching trace IDs.

interface Trace {
Duration?: number | null;
Id?: string | null;
LimitExceeded?: boolean | null;
Segments?: Segment[] | null;
}

§Properties

§
Duration?: number | null
[src]

The length of time in seconds between the start time of the root segment and the end time of the last segment that completed.

§
Id?: string | null
[src]

The unique identifier for the request that generated the trace's segments and subsegments.

§
LimitExceeded?: boolean | null
[src]

LimitExceeded is set to true when the trace has exceeded the Trace document size limit. For more information about this limit and other X-Ray limits and quotas, see Amazon Web Services X-Ray endpoints and quotas.

§
Segments?: Segment[] | null
[src]

Segment documents for the segments and subsegments that comprise the trace.