IGeneratedSummaryStats Interface
In addition to the normal summary tree + stats, this contains additional stats only relevant at the root of the tree.
Signature
export interface IGeneratedSummaryStats extends ISummaryStats
Extends: ISummaryStats
Properties
| Property | Modifiers | Type | Description |
|---|---|---|---|
| dataStoreCount | number | The total number of data stores in the container. | |
| gcBlobNodeCount | optional |
number | The number of gc blobs in this summary. |
| gcStateUpdatedDataStoreCount | optional |
number | The number of data stores whose GC reference state was updated in this summary. |
| gcTotalBlobsSize | optional |
number | The size of the gc blobs in this summary. |
| nonSystemOpsSinceLastSummary | number | Number of non-system ops since the last summary. See @fluidframework/protocol-base#isSystemMessage | |
| opsSizesSinceLastSummary | number | Sum of the sizes of all op contents since the last summary | |
| summarizedDataStoreCount | number | The number of data stores that were summarized in this summary. | |
| summaryNumber | number | The summary number for a container's summary. Incremented on summaries throughout its lifetime. |
Property Details
dataStoreCount
The total number of data stores in the container.
Signature
readonly dataStoreCount: number;
Type: number
gcBlobNodeCount
The number of gc blobs in this summary.
Signature
readonly gcBlobNodeCount?: number;
Type: number
gcStateUpdatedDataStoreCount
The number of data stores whose GC reference state was updated in this summary.
Signature
readonly gcStateUpdatedDataStoreCount?: number;
Type: number
gcTotalBlobsSize
The size of the gc blobs in this summary.
Signature
readonly gcTotalBlobsSize?: number;
Type: number
nonSystemOpsSinceLastSummary
Number of non-system ops since the last summary. See @fluidframework/protocol-base#isSystemMessage
Signature
readonly nonSystemOpsSinceLastSummary: number;
Type: number
opsSizesSinceLastSummary
Sum of the sizes of all op contents since the last summary
Signature
readonly opsSizesSinceLastSummary: number;
Type: number
summarizedDataStoreCount
The number of data stores that were summarized in this summary.
Signature
readonly summarizedDataStoreCount: number;
Type: number
summaryNumber
The summary number for a container's summary. Incremented on summaries throughout its lifetime.
Signature
readonly summaryNumber: number;
Type: number