2015-07-29 21:25:56 +03:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
2016-01-05 03:05:26 +03:00
|
|
|
"github.com/docker/engine-api/types"
|
2015-07-29 21:25:56 +03:00
|
|
|
"github.com/opencontainers/runc/libcontainer"
|
|
|
|
)
|
|
|
|
|
|
|
|
// convertStatsToAPITypes converts the libcontainer.Stats to the api specific
|
2015-08-24 12:17:15 +03:00
|
|
|
// structs. This is done to preserve API compatibility and versioning.
|
|
|
|
func convertStatsToAPITypes(ls *libcontainer.Stats) *types.StatsJSON {
|
2015-07-29 21:25:56 +03:00
|
|
|
// TODO FreeBSD. Refactor accordingly to fill in stats.
|
2015-08-24 12:17:15 +03:00
|
|
|
s := &types.StatsJSON{}
|
2015-07-29 21:25:56 +03:00
|
|
|
return s
|
|
|
|
}
|