summaryrefslogtreecommitdiff
path: root/libpod/stats_unsupported.go
diff options
context:
space:
mode:
Diffstat (limited to 'libpod/stats_unsupported.go')
-rw-r--r--libpod/stats_unsupported.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/libpod/stats_unsupported.go b/libpod/stats_unsupported.go
new file mode 100644
index 000000000..7117413eb
--- /dev/null
+++ b/libpod/stats_unsupported.go
@@ -0,0 +1,8 @@
+// +build !linux
+
+package libpod
+
+// GetContainerStats gets the running stats for a given container
+func (c *Container) GetContainerStats(previousStats *ContainerStats) (*ContainerStats, error) {
+ return nil, ErrOSNotSupported
+}