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

EdgeStatistics

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

Response statistics for an edge.

interface EdgeStatistics {
ErrorStatistics?: ErrorStatistics | null;
FaultStatistics?: FaultStatistics | null;
OkCount?: number | null;
TotalCount?: number | null;
TotalResponseTime?: number | null;
}

§Properties

§
ErrorStatistics?: ErrorStatistics | null
[src]

Information about requests that failed with a 4xx Client Error status code.

§
FaultStatistics?: FaultStatistics | null
[src]

Information about requests that failed with a 5xx Server Error status code.

§
OkCount?: number | null
[src]

The number of requests that completed with a 2xx Success status code.

§
TotalCount?: number | null
[src]

The total number of completed requests.

§
TotalResponseTime?: number | null
[src]

The aggregate response time of completed requests.