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

ECSServiceProjectedMetric

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

Describes the projected metrics of an Amazon ECS service recommendation option.

To determine the performance difference between your current Amazon ECS service and the recommended option, compare the metric data of your service against its projected metric data.

interface ECSServiceProjectedMetric {
lowerBoundValues?: number[] | null;
name?: ECSServiceMetricName | null;
timestamps?: (Date | number)[] | null;
upperBoundValues?: number[] | null;
}

§Properties

§
lowerBoundValues?: number[] | null
[src]

The lower bound values for the projected metric.

§

The name of the projected metric.

The following metrics are available:

  • Cpu — The percentage of allocated compute units that are currently in use on the service tasks.
  • Memory — The percentage of memory that's currently in use on the service tasks.
§
timestamps?: (Date | number)[] | null
[src]

The timestamps of the projected metric.

§
upperBoundValues?: number[] | null
[src]

The upper bound values for the projected metric.