Skip to content

Commit

Permalink
Merge 40c3a32 into 980f955
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrpio committed Nov 8, 2022
2 parents 980f955 + 40c3a32 commit a6b8449
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions jsm.go
Expand Up @@ -905,6 +905,13 @@ type StreamState struct {
NumDeleted int `json:"num_deleted"`
NumSubjects uint64 `json:"num_subjects"`
Subjects map[string]uint64 `json:"subjects"`
Lost *LostStreamData `json:"lost,omitempty"`
}

// LostStreamData indicates msgs that have been damaged or unrecoverable.
type LostStreamData struct {
Msgs []uint64 `json:"msgs"`
Bytes uint64 `json:"bytes"`
}

// ClusterInfo shows information about the underlying set of servers
Expand Down

0 comments on commit a6b8449

Please sign in to comment.