We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2682f2 commit 1422c1dCopy full SHA for 1422c1d
1 file changed
lib/resources/monitoring.go
@@ -19,7 +19,6 @@ type monitoringState struct {
19
}
20
21
type monitoringSnapshot struct {
22
- capturedAt time.Time
23
status FullResourceStatus
24
imageStorageCurrent int64
25
imageStorageMax int64
@@ -96,8 +95,7 @@ func (m *Manager) refreshMonitoringSnapshot(ctx context.Context) error {
96
95
97
98
snapshot := monitoringSnapshot{
99
- capturedAt: time.Now(),
100
- status: *status,
+ status: *status,
101
102
if status.DiskDetail != nil {
103
snapshot.imageStorageCurrent = status.DiskDetail.Images + status.DiskDetail.OCICache
0 commit comments