Skip to main content
Version: v1

IGCStats Interface

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

Signature

export interface IGCStats

Properties

PropertyTypeDescription
attachmentBlobCountnumberThe number of attachment blobs in the container.
dataStoreCountnumberThe number of data stores in the container.
nodeCountnumberThe number of nodes in the container.
unrefAttachmentBlobCountnumberThe number of unreferenced attachment blobs in the container.
unrefDataStoreCountnumberThe number of unreferenced data stores in the container.
unrefNodeCountnumberThe number of unreferenced nodes in the container.
updatedAttachmentBlobCountnumberThe number of attachment blobs whose reference state updated since last GC run.
updatedDataStoreCountnumberThe number of data stores whose reference state updated since last GC run.
updatedNodeCountnumberThe 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