IMarkPhaseStats Interface
Packages > @fluidframework/container-runtime > IMarkPhaseStats
The statistics of the system state after a garbage collection mark 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 IMarkPhaseStats
Properties
Property | Alerts | Type | Description |
---|---|---|---|
attachmentBlobCount | Alpha |
number | The number of attachment blobs in the container. |
dataStoreCount | Alpha |
number | The number of data stores in the container. |
nodeCount | Alpha |
number | The number of nodes in the container. |
unrefAttachmentBlobCount | Alpha |
number | The number of unreferenced attachment blobs in the container. |
unrefDataStoreCount | Alpha |
number | The number of unreferenced data stores in the container. |
unrefNodeCount | Alpha |
number | The number of unreferenced nodes in the container. |
updatedAttachmentBlobCount | Alpha |
number | The number of attachment blobs whose reference state updated since last GC run. |
updatedDataStoreCount | Alpha |
number | The number of data stores whose reference state updated since last GC run. |
updatedNodeCount | Alpha |
number | The number of nodes whose reference state updated since last GC run. |
Property Details
attachmentBlobCount
The number of 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
attachmentBlobCount: number;
Type: number
dataStoreCount
The number of 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
dataStoreCount: number;
Type: number
nodeCount
The number of 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
nodeCount: number;
Type: number
unrefAttachmentBlobCount
The number of unreferenced 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
unrefAttachmentBlobCount: number;
Type: number
unrefDataStoreCount
The number of unreferenced 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
unrefDataStoreCount: number;
Type: number
unrefNodeCount
The number of unreferenced 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
unrefNodeCount: number;
Type: number
updatedAttachmentBlobCount
The number of attachment blobs whose reference state updated since last GC run.
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
updatedAttachmentBlobCount: number;
Type: number
updatedDataStoreCount
The number of data stores whose reference state updated since last GC run.
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
updatedDataStoreCount: number;
Type: number
updatedNodeCount
The number of nodes whose reference state updated since last GC run.
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
updatedNodeCount: number;
Type: number