Add backup history charts

This commit is contained in:
Mikei386
2026-06-14 12:37:51 +02:00
parent acad073f09
commit 92564a1620
12 changed files with 71 additions and 27 deletions
+6 -4
View File
@@ -26,10 +26,12 @@ type Runner struct {
}
type Summary struct {
MessageType string `json:"message_type"`
SnapshotID string `json:"snapshot_id"`
DataAdded int64 `json:"data_added"`
FilesNew int64 `json:"files_new"`
MessageType string `json:"message_type"`
SnapshotID string `json:"snapshot_id"`
DataAdded int64 `json:"data_added"`
FilesNew int64 `json:"files_new"`
TotalBytesProcessed int64 `json:"total_bytes_processed"`
TotalFilesProcessed int64 `json:"total_files_processed"`
}
func (r *Runner) Init(ctx context.Context, repo model.Repository) error {