monitorRow displays stats for one container.
| 33 | |
| 34 | // monitorRow displays stats for one container. |
| 35 | type monitorRow struct { |
| 36 | cid string |
| 37 | columns []string |
| 38 | } |
| 39 | |
| 40 | func (r monitorRow) Columns() []string { return r.columns } |
| 41 | func (r monitorRow) ID() string { return r.cid } |
nothing calls this directly
no outgoing calls
no test coverage detected