blob: 44a1c8d036f80b016b5a2cf96453be3a6d353bdb (
plain)
1
2
3
4
5
6
7
8
9
10
|
// +build !linux
package libpod
import "github.com/containers/podman/v3/libpod/define"
// GetContainerStats gets the running stats for a given container
func (c *Container) GetContainerStats(previousStats *define.ContainerStats) (*define.ContainerStats, error) {
return nil, define.ErrOSNotSupported
}
|