Package version:

Health metrics for a storage pool

interface HealthDetails {
    bandwidthUsage: BandwidthUsage;
    dataReductionRatio: number;
    estimatedMaxCapacity: number;
    iopsUsage: IopsUsage;
    space: Space;
    usedCapacityPercentage: number;
}

Properties

bandwidthUsage: BandwidthUsage

Bandwidth usage metrics

dataReductionRatio: number

Data reduction ratio achieved on this pool

estimatedMaxCapacity: number

Estimated maximum capacity of the pool, in bytes, based on current usage and data reduction ratio

iopsUsage: IopsUsage

IOPS usage metrics

space: Space

Storage space usage

usedCapacityPercentage: number

How full the pool is right now, in %, compared to the maximum size it can grow to; estimated based on current usage and data reduction ratio