aboutsummaryrefslogtreecommitdiff
path: root/libpod/stats_unsupported.go
blob: ec19a89a11e59e8b012ef1c7e4de5865f122679e (plain)
1
2
3
4
5
6
7
8
9
10
// +build !linux

package libpod

import "github.com/containers/libpod/libpod/define"

// GetContainerStats gets the running stats for a given container
func (c *Container) GetContainerStats(previousStats *ContainerStats) (*ContainerStats, error) {
	return nil, define.ErrOSNotSupported
}