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

Service

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

Information about an application that processed requests, users that made requests, or downstream services, resources, and applications that an application used.

interface Service {
AccountId?: string | null;
DurationHistogram?: HistogramEntry[] | null;
Edges?: Edge[] | null;
EndTime?: Date | number | null;
Name?: string | null;
Names?: string[] | null;
ReferenceId?: number | null;
ResponseTimeHistogram?: HistogramEntry[] | null;
Root?: boolean | null;
StartTime?: Date | number | null;
State?: string | null;
SummaryStatistics?: ServiceStatistics | null;
Type?: string | null;
}

§Properties

§
AccountId?: string | null
[src]

Identifier of the Amazon Web Services account in which the service runs.

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

A histogram that maps the spread of service durations.

§
Edges?: Edge[] | null
[src]

Connections to downstream services.

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

The end time of the last segment that the service generated.

§
Name?: string | null
[src]

The canonical name of the service.

§
Names?: string[] | null
[src]

A list of names for the service, including the canonical name.

§
ReferenceId?: number | null
[src]

Identifier for the service. Unique within the service map.

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

A histogram that maps the spread of service response times.

§
Root?: boolean | null
[src]

Indicates that the service was the first service to process a request.

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

The start time of the first segment that the service generated.

§
State?: string | null
[src]

The service's state.

§
SummaryStatistics?: ServiceStatistics | null
[src]

Aggregated statistics for the service.

§
Type?: string | null
[src]

The type of service.

  • Amazon Web Services Resource - The type of an Amazon Web Services resource. For example, AWS::EC2::Instance for an application running on Amazon EC2 or AWS::DynamoDB::Table for an Amazon DynamoDB table that the application used.
  • Amazon Web Services Service - The type of an Amazon Web Services service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table.
  • client - Represents the clients that sent requests to a root service.
  • remote - A downstream service of indeterminate type.