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

ForecastStatistics

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

The predicted high and low fault count. This is used to determine if a service has become anomalous and if an insight should be created.

interface ForecastStatistics {
FaultCountHigh?: number | null;
FaultCountLow?: number | null;
}

§Properties

§
FaultCountHigh?: number | null
[src]

The upper limit of fault counts for a service.

§
FaultCountLow?: number | null
[src]

The lower limit of fault counts for a service.