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

ApplicationMetrics

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

Application request metrics for an AWS Elastic Beanstalk environment.

interface ApplicationMetrics {
Duration?: number | null;
Latency?: Latency | null;
RequestCount?: number | null;
StatusCodes?: StatusCodes | null;
}

§Properties

§
Duration?: number | null
[src]

The amount of time that the metrics cover (usually 10 seconds). For example, you might have 5 requests (request_count) within the most recent time slice of 10 seconds (duration).

§
Latency?: Latency | null
[src]

Represents the average latency for the slowest X percent of requests over the last 10 seconds. Latencies are in seconds with one millisecond resolution.

§
RequestCount?: number | null
[src]

Average number of requests handled by the web server per second over the last 10 seconds.

§
StatusCodes?: StatusCodes | null
[src]

Represents the percentage of requests over the last 10 seconds that resulted in each type of status code response.