2015-05-15 15:02:11 -07:00
|
|
|
package daemon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/docker/docker/api/types"
|
2015-07-16 16:00:55 -07:00
|
|
|
"github.com/opencontainers/runc/libcontainer"
|
2015-05-15 15:02:11 -07:00
|
|
|
)
|
|
|
|
|
2015-06-12 11:27:39 -04:00
|
|
|
// convertStatsToAPITypes converts the libcontainer.Stats to the api specific
|
2015-08-24 17:17:15 +08:00
|
|
|
// structs. This is done to preserve API compatibility and versioning.
|
|
|
|
func convertStatsToAPITypes(ls *libcontainer.Stats) *types.StatsJSON {
|
2015-05-15 15:02:11 -07:00
|
|
|
// TODO Windows. Refactor accordingly to fill in stats.
|
2015-08-24 17:17:15 +08:00
|
|
|
s := &types.StatsJSON{}
|
2015-05-15 15:02:11 -07:00
|
|
|
return s
|
|
|
|
}
|