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

Edge

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

Information about a connection between two services. An edge can be a synchronous connection, such as typical call between client and service, or an asynchronous link, such as a Lambda function which retrieves an event from an SNS queue.

interface Edge {
Aliases?: Alias[] | null;
EdgeType?: string | null;
EndTime?: Date | number | null;
ReceivedEventAgeHistogram?: HistogramEntry[] | null;
ReferenceId?: number | null;
ResponseTimeHistogram?: HistogramEntry[] | null;
StartTime?: Date | number | null;
SummaryStatistics?: EdgeStatistics | null;
}

§Properties

§
Aliases?: Alias[] | null
[src]

Aliases for the edge.

§
EdgeType?: string | null
[src]

Describes an asynchronous connection, with a value of link.

§
EndTime?: Date | number | null
[src]

The end time of the last segment on the edge.

§
ReceivedEventAgeHistogram?: HistogramEntry[] | null
[src]

A histogram that maps the spread of event age when received by consumers. Age is calculated each time an event is received. Only populated when EdgeType is link.

§
ReferenceId?: number | null
[src]

Identifier of the edge. Unique within a service map.

§
ResponseTimeHistogram?: HistogramEntry[] | null
[src]

A histogram that maps the spread of client response times on an edge. Only populated for synchronous edges.

§
StartTime?: Date | number | null
[src]

The start time of the first segment on the edge.

§
SummaryStatistics?: EdgeStatistics | null
[src]

Response statistics for segments on the edge.