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

ReportSummaryAssetAggregateStats

import type { ReportSummaryAssetAggregateStats } from "https://googleapis.deno.dev/v1/migrationcenter:v1.ts";

Aggregate statistics for a collection of assets.

interface ReportSummaryAssetAggregateStats {
coreCountHistogram?: ReportSummaryHistogramChartData;
memoryBytesHistogram?: ReportSummaryHistogramChartData;
memoryUtilizationChart?: ReportSummaryUtilizationChartData;
operatingSystem?: ReportSummaryChartData;
storageBytesHistogram?: ReportSummaryHistogramChartData;
storageUtilizationChart?: ReportSummaryUtilizationChartData;
totalAssets?: bigint;
totalCores?: bigint;
totalMemoryBytes?: bigint;
totalStorageBytes?: bigint;
}

§Properties

§

Histogram showing a distribution of CPU core counts.

§

Histogram showing a distribution of memory sizes.

§

Total memory split into Used/Free buckets.

§
operatingSystem?: ReportSummaryChartData
[src]

Count of assets grouped by Operating System families.

§
storageBytesHistogram?: ReportSummaryHistogramChartData
[src]

Histogram showing a distribution of storage sizes.

§
storageUtilizationChart?: ReportSummaryUtilizationChartData
[src]

Total memory split into Used/Free buckets.

§
totalAssets?: bigint
[src]

Count of the number of unique assets in this collection.

§
totalCores?: bigint
[src]

Sum of the CPU core count of all the assets in this collection.

§
totalMemoryBytes?: bigint
[src]

Sum of the memory in bytes of all the assets in this collection.

§
totalStorageBytes?: bigint
[src]

Sum of persistent storage in bytes of all the assets in this collection.