()
| 183 | } |
| 184 | |
| 185 | func (s *StatsEntry) MemUsage() string { |
| 186 | if s.IsInvalid { |
| 187 | return "-- / --" |
| 188 | } |
| 189 | return fmt.Sprintf("%s / %s", units.BytesSize(s.Memory), units.BytesSize(s.MemoryLimit)) |
| 190 | } |
| 191 | |
| 192 | func (s *StatsEntry) MemPerc() string { |
| 193 | if s.IsInvalid { |