()
| 197 | } |
| 198 | |
| 199 | func (s *StatsEntry) NetIO() string { |
| 200 | if s.IsInvalid { |
| 201 | return "--" |
| 202 | } |
| 203 | return fmt.Sprintf("%s / %s", units.HumanSizeWithPrecision(s.NetworkRx, 3), units.HumanSizeWithPrecision(s.NetworkTx, 3)) |
| 204 | } |
| 205 | |
| 206 | func (s *StatsEntry) BlockIO() string { |
| 207 | if s.IsInvalid { |