summaryrefslogtreecommitdiff
path: root/server/container_stats.go
diff options
context:
space:
mode:
Diffstat (limited to 'server/container_stats.go')
-rw-r--r--server/container_stats.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/server/container_stats.go b/server/container_stats.go
deleted file mode 100644
index 22b87c453..000000000
--- a/server/container_stats.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package server
-
-import (
- "fmt"
-
- "golang.org/x/net/context"
- pb "k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime"
-)
-
-// ContainerStats returns stats of the container. If the container does not
-// exist, the call returns an error.
-func (s *Server) ContainerStats(ctx context.Context, req *pb.ContainerStatsRequest) (*pb.ContainerStatsResponse, error) {
- return nil, fmt.Errorf("not implemented")
-}