2016-07-18 14:30:15 -04:00
|
|
|
package formatter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"sync"
|
|
|
|
|
2016-10-24 18:06:33 -04:00
|
|
|
units "github.com/docker/go-units"
|
2016-07-18 14:30:15 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-09-22 08:54:41 -04:00
|
|
|
winOSType = "windows"
|
|
|
|
defaultStatsTableFormat = "table {{.Container}}\t{{.CPUPerc}}\t{{.MemUsage}}\t{{.MemPerc}}\t{{.NetIO}}\t{{.BlockIO}}\t{{.PIDs}}"
|
2016-10-25 19:19:14 -04:00
|
|
|
winDefaultStatsTableFormat = "table {{.Container}}\t{{.CPUPerc}}\t{{.MemUsage}}\t{{.NetIO}}\t{{.BlockIO}}"
|
|
|
|
|
|
|
|
containerHeader = "CONTAINER"
|
|
|
|
cpuPercHeader = "CPU %"
|
|
|
|
netIOHeader = "NET I/O"
|
|
|
|
blockIOHeader = "BLOCK I/O"
|
|
|
|
memPercHeader = "MEM %" // Used only on Linux
|
|
|
|
winMemUseHeader = "PRIV WORKING SET" // Used only on Windows
|
|
|
|
memUseHeader = "MEM USAGE / LIMIT" // Used only on Linux
|
|
|
|
pidsHeader = "PIDS" // Used only on Linux
|
2016-07-18 14:30:15 -04:00
|
|
|
)
|
|
|
|
|
2016-09-22 08:54:41 -04:00
|
|
|
// StatsEntry represents represents the statistics data collected from a container
|
|
|
|
type StatsEntry struct {
|
2016-11-03 02:20:46 -04:00
|
|
|
Container string
|
2016-07-18 14:30:15 -04:00
|
|
|
Name string
|
2016-11-03 02:20:46 -04:00
|
|
|
ID string
|
2016-07-18 14:30:15 -04:00
|
|
|
CPUPercentage float64
|
|
|
|
Memory float64 // On Windows this is the private working set
|
|
|
|
MemoryLimit float64 // Not used on Windows
|
|
|
|
MemoryPercentage float64 // Not used on Windows
|
|
|
|
NetworkRx float64
|
|
|
|
NetworkTx float64
|
|
|
|
BlockRead float64
|
|
|
|
BlockWrite float64
|
|
|
|
PidsCurrent uint64 // Not used on Windows
|
2016-09-22 08:54:41 -04:00
|
|
|
IsInvalid bool
|
2016-07-18 14:30:15 -04:00
|
|
|
}
|
|
|
|
|
2016-09-22 08:54:41 -04:00
|
|
|
// ContainerStats represents an entity to store containers statistics synchronously
|
2016-07-18 14:30:15 -04:00
|
|
|
type ContainerStats struct {
|
2016-09-22 08:54:41 -04:00
|
|
|
mutex sync.Mutex
|
|
|
|
StatsEntry
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetError returns the container statistics error.
|
|
|
|
// This is used to determine whether the statistics are valid or not
|
|
|
|
func (cs *ContainerStats) GetError() error {
|
|
|
|
cs.mutex.Lock()
|
|
|
|
defer cs.mutex.Unlock()
|
|
|
|
return cs.err
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetErrorAndReset zeroes all the container statistics and store the error.
|
|
|
|
// It is used when receiving time out error during statistics collecting to reduce lock overhead
|
|
|
|
func (cs *ContainerStats) SetErrorAndReset(err error) {
|
|
|
|
cs.mutex.Lock()
|
|
|
|
defer cs.mutex.Unlock()
|
|
|
|
cs.CPUPercentage = 0
|
|
|
|
cs.Memory = 0
|
|
|
|
cs.MemoryPercentage = 0
|
|
|
|
cs.MemoryLimit = 0
|
|
|
|
cs.NetworkRx = 0
|
|
|
|
cs.NetworkTx = 0
|
|
|
|
cs.BlockRead = 0
|
|
|
|
cs.BlockWrite = 0
|
|
|
|
cs.PidsCurrent = 0
|
|
|
|
cs.err = err
|
|
|
|
cs.IsInvalid = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetError sets container statistics error
|
|
|
|
func (cs *ContainerStats) SetError(err error) {
|
|
|
|
cs.mutex.Lock()
|
|
|
|
defer cs.mutex.Unlock()
|
|
|
|
cs.err = err
|
|
|
|
if err != nil {
|
|
|
|
cs.IsInvalid = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetStatistics set the container statistics
|
|
|
|
func (cs *ContainerStats) SetStatistics(s StatsEntry) {
|
|
|
|
cs.mutex.Lock()
|
|
|
|
defer cs.mutex.Unlock()
|
2016-11-03 02:20:46 -04:00
|
|
|
s.Container = cs.Container
|
2016-09-22 08:54:41 -04:00
|
|
|
cs.StatsEntry = s
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetStatistics returns container statistics with other meta data such as the container name
|
|
|
|
func (cs *ContainerStats) GetStatistics() StatsEntry {
|
|
|
|
cs.mutex.Lock()
|
|
|
|
defer cs.mutex.Unlock()
|
|
|
|
return cs.StatsEntry
|
2016-07-18 14:30:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewStatsFormat returns a format for rendering an CStatsContext
|
|
|
|
func NewStatsFormat(source, osType string) Format {
|
|
|
|
if source == TableFormatKey {
|
2016-09-22 08:54:41 -04:00
|
|
|
if osType == winOSType {
|
2016-07-18 14:30:15 -04:00
|
|
|
return Format(winDefaultStatsTableFormat)
|
|
|
|
}
|
|
|
|
return Format(defaultStatsTableFormat)
|
|
|
|
}
|
|
|
|
return Format(source)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewContainerStats returns a new ContainerStats entity and sets in it the given name
|
2016-11-03 02:20:46 -04:00
|
|
|
func NewContainerStats(container, osType string) *ContainerStats {
|
2016-07-18 14:30:15 -04:00
|
|
|
return &ContainerStats{
|
2017-02-05 11:55:30 -05:00
|
|
|
StatsEntry: StatsEntry{Container: container},
|
2016-07-18 14:30:15 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContainerStatsWrite renders the context for a list of containers statistics
|
2017-02-05 11:55:30 -05:00
|
|
|
func ContainerStatsWrite(ctx Context, containerStats []StatsEntry, osType string) error {
|
2016-07-18 14:30:15 -04:00
|
|
|
render := func(format func(subContext subContext) error) error {
|
|
|
|
for _, cstats := range containerStats {
|
|
|
|
containerStatsCtx := &containerStatsContext{
|
2017-02-05 11:55:30 -05:00
|
|
|
s: cstats,
|
|
|
|
os: osType,
|
2016-07-18 14:30:15 -04:00
|
|
|
}
|
|
|
|
if err := format(containerStatsCtx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-02-05 11:55:30 -05:00
|
|
|
return ctx.Write(&containerStatsContext{os: osType}, render)
|
2016-07-18 14:30:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type containerStatsContext struct {
|
|
|
|
HeaderContext
|
2017-02-05 11:55:30 -05:00
|
|
|
s StatsEntry
|
|
|
|
os string
|
2016-07-18 14:30:15 -04:00
|
|
|
}
|
|
|
|
|
2017-01-19 04:50:28 -05:00
|
|
|
func (c *containerStatsContext) MarshalJSON() ([]byte, error) {
|
|
|
|
return marshalJSON(c)
|
|
|
|
}
|
|
|
|
|
2016-07-18 14:30:15 -04:00
|
|
|
func (c *containerStatsContext) Container() string {
|
|
|
|
c.AddHeader(containerHeader)
|
2016-11-03 02:20:46 -04:00
|
|
|
return c.s.Container
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *containerStatsContext) Name() string {
|
|
|
|
c.AddHeader(nameHeader)
|
Fix panic of "docker stats --format {{.Name}} --all"
This commit fixes panic when execute stats command:
* use --format {{.Name}} with --all when there're exited containers.
* use --format {{.Name}} while stating exited container.
The root cause is when stating an exited container, the result from the
api didn't contain the Name and ID field, which will make format
process panic.
Panic log is like this:
```
panic: runtime error: slice bounds out of range [recovered]
panic: runtime error: slice bounds out of range
goroutine 1 [running]:
panic(0xb20f80, 0xc420014110)
/usr/local/go/src/runtime/panic.go:500 +0x1a1
text/template.errRecover(0xc4201773e8)
/usr/local/go/src/text/template/exec.go:140 +0x2ad
panic(0xb20f80, 0xc420014110)
/usr/local/go/src/runtime/panic.go:458 +0x243
github.com/docker/docker/cli/command/formatter.(*containerStatsContext).Name(0xc420430160,
0x0, 0x0)
/go/src/github.com/docker/docker/cli/command/formatter/stats.go:148
+0x86
reflect.Value.call(0xb9a3a0, 0xc420430160, 0x2213, 0xbe3657, 0x4,
0x11bc9f8, 0x0, 0x0, 0x4d75b3, 0x1198940, ...)
/usr/local/go/src/reflect/value.go:434 +0x5c8
reflect.Value.Call(0xb9a3a0, 0xc420430160, 0x2213, 0x11bc9f8, 0x0, 0x0,
0xc420424028, 0xb, 0xb)
/usr/local/go/src/reflect/value.go:302 +0xa4
text/template.(*state).evalCall(0xc420177368, 0xb9a3a0, 0xc420430160,
0x16, 0xb9a3a0, 0xc420430160, 0x2213, 0x1178fa0, 0xc4203ea330,
0xc4203de283, ...)
/usr/local/go/src/text/template/exec.go:658 +0x530
```
Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
2017-02-06 21:27:40 -05:00
|
|
|
if len(c.s.Name) > 1 {
|
|
|
|
return c.s.Name[1:]
|
|
|
|
}
|
|
|
|
return "--"
|
2016-11-03 02:20:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *containerStatsContext) ID() string {
|
|
|
|
c.AddHeader(containerIDHeader)
|
|
|
|
return c.s.ID
|
2016-07-18 14:30:15 -04:00
|
|
|
}
|
|
|
|
|
2016-09-22 08:54:41 -04:00
|
|
|
func (c *containerStatsContext) CPUPerc() string {
|
|
|
|
c.AddHeader(cpuPercHeader)
|
|
|
|
if c.s.IsInvalid {
|
|
|
|
return fmt.Sprintf("--")
|
|
|
|
}
|
2016-07-18 14:30:15 -04:00
|
|
|
return fmt.Sprintf("%.2f%%", c.s.CPUPercentage)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *containerStatsContext) MemUsage() string {
|
2016-10-25 19:19:14 -04:00
|
|
|
header := memUseHeader
|
2017-02-05 11:55:30 -05:00
|
|
|
if c.os == winOSType {
|
2016-10-25 19:19:14 -04:00
|
|
|
header = winMemUseHeader
|
|
|
|
}
|
|
|
|
c.AddHeader(header)
|
|
|
|
if c.s.IsInvalid {
|
2016-09-22 08:54:41 -04:00
|
|
|
return fmt.Sprintf("-- / --")
|
2016-07-18 14:30:15 -04:00
|
|
|
}
|
2017-02-05 11:55:30 -05:00
|
|
|
if c.os == winOSType {
|
2016-10-25 19:19:14 -04:00
|
|
|
return fmt.Sprintf("%s", units.BytesSize(c.s.Memory))
|
|
|
|
}
|
2016-09-22 08:54:41 -04:00
|
|
|
return fmt.Sprintf("%s / %s", units.BytesSize(c.s.Memory), units.BytesSize(c.s.MemoryLimit))
|
2016-07-18 14:30:15 -04:00
|
|
|
}
|
|
|
|
|
2016-09-22 08:54:41 -04:00
|
|
|
func (c *containerStatsContext) MemPerc() string {
|
|
|
|
header := memPercHeader
|
2016-07-18 14:30:15 -04:00
|
|
|
c.AddHeader(header)
|
2017-02-05 11:55:30 -05:00
|
|
|
if c.s.IsInvalid || c.os == winOSType {
|
2016-09-22 08:54:41 -04:00
|
|
|
return fmt.Sprintf("--")
|
|
|
|
}
|
2016-07-18 14:30:15 -04:00
|
|
|
return fmt.Sprintf("%.2f%%", c.s.MemoryPercentage)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *containerStatsContext) NetIO() string {
|
|
|
|
c.AddHeader(netIOHeader)
|
2016-09-22 08:54:41 -04:00
|
|
|
if c.s.IsInvalid {
|
|
|
|
return fmt.Sprintf("--")
|
|
|
|
}
|
2016-07-18 14:30:15 -04:00
|
|
|
return fmt.Sprintf("%s / %s", units.HumanSizeWithPrecision(c.s.NetworkRx, 3), units.HumanSizeWithPrecision(c.s.NetworkTx, 3))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *containerStatsContext) BlockIO() string {
|
|
|
|
c.AddHeader(blockIOHeader)
|
2016-09-22 08:54:41 -04:00
|
|
|
if c.s.IsInvalid {
|
|
|
|
return fmt.Sprintf("--")
|
|
|
|
}
|
2016-07-18 14:30:15 -04:00
|
|
|
return fmt.Sprintf("%s / %s", units.HumanSizeWithPrecision(c.s.BlockRead, 3), units.HumanSizeWithPrecision(c.s.BlockWrite, 3))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *containerStatsContext) PIDs() string {
|
|
|
|
c.AddHeader(pidsHeader)
|
2017-02-05 11:55:30 -05:00
|
|
|
if c.s.IsInvalid || c.os == winOSType {
|
2016-09-22 08:54:41 -04:00
|
|
|
return fmt.Sprintf("--")
|
2016-07-18 14:30:15 -04:00
|
|
|
}
|
2016-09-22 08:54:41 -04:00
|
|
|
return fmt.Sprintf("%d", c.s.PidsCurrent)
|
2016-07-18 14:30:15 -04:00
|
|
|
}
|