()
| 204 | } |
| 205 | |
| 206 | func (s *StatsEntry) BlockIO() string { |
| 207 | if s.IsInvalid { |
| 208 | return "--" |
| 209 | } |
| 210 | return fmt.Sprintf("%s / %s", units.HumanSizeWithPrecision(s.BlockRead, 3), units.HumanSizeWithPrecision(s.BlockWrite, 3)) |
| 211 | } |
| 212 | |
| 213 | func (s *StatsEntry) PIDs() string { |
| 214 | if s.IsInvalid { |