Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions client/v2/common/models/node_status_response.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ type NodeStatusResponse struct {
// that have been processed so far as part of the catchup
CatchpointProcessedAccounts uint64 `json:"catchpoint-processed-accounts,omitempty"`

// CatchpointProcessedKvs the number of key-values (KVs) from the current
// catchpoint that have been processed so far as part of the catchup
CatchpointProcessedKvs uint64 `json:"catchpoint-processed-kvs,omitempty"`

// CatchpointTotalAccounts the total number of accounts included in the current
// catchpoint
CatchpointTotalAccounts uint64 `json:"catchpoint-total-accounts,omitempty"`
Expand All @@ -21,10 +25,18 @@ type NodeStatusResponse struct {
// the current catchpoint catchup
CatchpointTotalBlocks uint64 `json:"catchpoint-total-blocks,omitempty"`

// CatchpointTotalKvs the total number of key-values (KVs) included in the current
// catchpoint
CatchpointTotalKvs uint64 `json:"catchpoint-total-kvs,omitempty"`

// CatchpointVerifiedAccounts the number of accounts from the current catchpoint
// that have been verified so far as part of the catchup
CatchpointVerifiedAccounts uint64 `json:"catchpoint-verified-accounts,omitempty"`

// CatchpointVerifiedKvs the number of key-values (KVs) from the current catchpoint
// that have been verified so far as part of the catchup
CatchpointVerifiedKvs uint64 `json:"catchpoint-verified-kvs,omitempty"`

// CatchupTime catchupTime in nanoseconds
CatchupTime uint64 `json:"catchup-time"`

Expand Down