Skip to main content
Version: v1

IGCStats Interface

The statistics of the system state after a garbage collection run.

Signature

export interface IGCStats

Properties

Property Type Description
attachmentBlobCount number The number of attachment blobs in the container.
dataStoreCount number The number of data stores in the container.
nodeCount number The number of nodes in the container.
unrefAttachmentBlobCount number The number of unreferenced attachment blobs in the container.
unrefDataStoreCount number The number of unreferenced data stores in the container.
unrefNodeCount number The number of unreferenced nodes in the container.
updatedAttachmentBlobCount number The number of attachment blobs whose reference state updated since last GC run.
updatedDataStoreCount number The number of data stores whose reference state updated since last GC run.
updatedNodeCount number The number of nodes whose reference state updated since last GC run.

Property Details

attachmentBlobCount

The number of attachment blobs in the container.

Signature

attachmentBlobCount: number;

Type: number

dataStoreCount

The number of data stores in the container.

Signature

dataStoreCount: number;

Type: number

nodeCount

The number of nodes in the container.

Signature

nodeCount: number;

Type: number

unrefAttachmentBlobCount

The number of unreferenced attachment blobs in the container.

Signature

unrefAttachmentBlobCount: number;

Type: number

unrefDataStoreCount

The number of unreferenced data stores in the container.

Signature

unrefDataStoreCount: number;

Type: number

unrefNodeCount

The number of unreferenced nodes in the container.

Signature

unrefNodeCount: number;

Type: number

updatedAttachmentBlobCount

The number of attachment blobs whose reference state updated since last GC run.

Signature

updatedAttachmentBlobCount: number;

Type: number

updatedDataStoreCount

The number of data stores whose reference state updated since last GC run.

Signature

updatedDataStoreCount: number;

Type: number

updatedNodeCount

The number of nodes whose reference state updated since last GC run.

Signature

updatedNodeCount: number;

Type: number