diff --git a/info/v1/container.go b/info/v1/container.go index cd8ebff26b..4eceb78275 100644 --- a/info/v1/container.go +++ b/info/v1/container.go @@ -951,6 +951,15 @@ func (a *ContainerStats) StatsEq(b *ContainerStats) bool { if !reflect.DeepEqual(a.Filesystem, b.Filesystem) { return false } + if !reflect.DeepEqual(a.TaskStats, b.TaskStats) { + return false + } + if !reflect.DeepEqual(a.Accelerators, b.Accelerators) { + return false + } + if !reflect.DeepEqual(a.CustomMetrics, b.CustomMetrics) { + return false + } return true }