Skip to content

Commit

Permalink
heal: Add skipped entries to the new disk heal summary
Browse files Browse the repository at this point in the history
Add visibilty about the objects that are deleted by ILM during new disk
healing.
  • Loading branch information
Anis Eleuch committed Feb 27, 2024
1 parent b6531d4 commit 76aadb9
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions heal-commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -358,10 +358,12 @@ type HealingDisk struct {
ObjectsTotalCount uint64 `json:"objects_total_count"`
ObjectsTotalSize uint64 `json:"objects_total_size"`

ItemsHealed uint64 `json:"items_healed"`
ItemsFailed uint64 `json:"items_failed"`
BytesDone uint64 `json:"bytes_done"`
BytesFailed uint64 `json:"bytes_failed"`
ItemsHealed uint64 `json:"items_healed"`
ItemsFailed uint64 `json:"items_failed"`
ItemsSkipped uint64 `json:"items_skipped"`
BytesDone uint64 `json:"bytes_done"`
BytesFailed uint64 `json:"bytes_failed"`
BytesSkipped uint64 `json:"bytes_skipped"`

ObjectsHealed uint64 `json:"objects_healed"` // Deprecated July 2021
ObjectsFailed uint64 `json:"objects_failed"` // Deprecated July 2021
Expand Down

0 comments on commit 76aadb9

Please sign in to comment.