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

CPUUtilization

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

CPU utilization metrics for an instance.

interface CPUUtilization {
Idle?: number | null;
IOWait?: number | null;
IRQ?: number | null;
Nice?: number | null;
Privileged?: number | null;
SoftIRQ?: number | null;
System?: number | null;
User?: number | null;
}

§Properties

§
Idle?: number | null
[src]

Percentage of time that the CPU has spent in the Idle state over the last 10 seconds.

§
IOWait?: number | null
[src]

Available on Linux environments only.

Percentage of time that the CPU has spent in the I/O Wait state over the last 10 seconds.

§
IRQ?: number | null
[src]

Available on Linux environments only.

Percentage of time that the CPU has spent in the IRQ state over the last 10 seconds.

§
Nice?: number | null
[src]

Available on Linux environments only.

Percentage of time that the CPU has spent in the Nice state over the last 10 seconds.

§
Privileged?: number | null
[src]

Available on Windows environments only.

Percentage of time that the CPU has spent in the Privileged state over the last 10 seconds.

§
SoftIRQ?: number | null
[src]

Available on Linux environments only.

Percentage of time that the CPU has spent in the SoftIRQ state over the last 10 seconds.

§
System?: number | null
[src]

Available on Linux environments only.

Percentage of time that the CPU has spent in the System state over the last 10 seconds.

§
User?: number | null
[src]

Percentage of time that the CPU has spent in the User state over the last 10 seconds.