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

Latency

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

Represents the average latency for the slowest X percent of requests over the last 10 seconds.

interface Latency {
P10?: number | null;
P50?: number | null;
P75?: number | null;
P85?: number | null;
P90?: number | null;
P95?: number | null;
P99?: number | null;
P999?: number | null;
}

§Properties

§
P10?: number | null
[src]

The average latency for the slowest 90 percent of requests over the last 10 seconds.

§
P50?: number | null
[src]

The average latency for the slowest 50 percent of requests over the last 10 seconds.

§
P75?: number | null
[src]

The average latency for the slowest 25 percent of requests over the last 10 seconds.

§
P85?: number | null
[src]

The average latency for the slowest 15 percent of requests over the last 10 seconds.

§
P90?: number | null
[src]

The average latency for the slowest 10 percent of requests over the last 10 seconds.

§
P95?: number | null
[src]

The average latency for the slowest 5 percent of requests over the last 10 seconds.

§
P99?: number | null
[src]

The average latency for the slowest 1 percent of requests over the last 10 seconds.

§
P999?: number | null
[src]

The average latency for the slowest 0.1 percent of requests over the last 10 seconds.