ISweepPhaseStats Interface
Packages > @fluidframework/container-runtime > ISweepPhaseStats
The statistics of the system state after a garbage collection sweep phase run.
This API is provided for existing users, but is not recommended for new users.
To use, import via @fluidframework/container-runtime/legacy
.
For more information about our API support guarantees, see here .
Signature
export interface ISweepPhaseStats
Properties
Property | Alerts | Type | Description |
---|---|---|---|
deletedAttachmentBlobCount | Alpha |
number | The number of deleted attachment blobs in the container. |
deletedDataStoreCount | Alpha |
number | The number of deleted data stores in the container. |
deletedNodeCount | Alpha |
number | The number of deleted nodes in the container. |
lifetimeAttachmentBlobCount | Alpha |
number | The number of attachment blobs in the lifetime of the container. |
lifetimeDataStoreCount | Alpha |
number | The number of data stores in the lifetime of the container. |
lifetimeNodeCount | Alpha |
number | The number of nodes in the lifetime of the container. |
Property Details
deletedAttachmentBlobCount
The number of deleted attachment blobs in the container.
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/container-runtime/alpha
.
For more information about our API support guarantees, see here .
Signature
deletedAttachmentBlobCount: number;
Type: number
deletedDataStoreCount
The number of deleted data stores in the container.
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/container-runtime/alpha
.
For more information about our API support guarantees, see here .
Signature
deletedDataStoreCount: number;
Type: number
deletedNodeCount
The number of deleted nodes in the container.
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/container-runtime/alpha
.
For more information about our API support guarantees, see here .
Signature
deletedNodeCount: number;
Type: number
lifetimeAttachmentBlobCount
The number of attachment blobs in the lifetime of the container.
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/container-runtime/alpha
.
For more information about our API support guarantees, see here .
Signature
lifetimeAttachmentBlobCount: number;
Type: number
lifetimeDataStoreCount
The number of data stores in the lifetime of the container.
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/container-runtime/alpha
.
For more information about our API support guarantees, see here .
Signature
lifetimeDataStoreCount: number;
Type: number
lifetimeNodeCount
The number of nodes in the lifetime of the container.
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/container-runtime/alpha
.
For more information about our API support guarantees, see here .
Signature
lifetimeNodeCount: number;
Type: number