summaryrefslogtreecommitdiff
path: root/server/container_stats_list.go
blob: 929220994c066744c46e1c65f11a03c0fb462817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package server

import (
	"fmt"

	"golang.org/x/net/context"
	pb "k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime"
)

// ListContainerStats returns stats of all running containers.
func (s *Server) ListContainerStats(ctx context.Context, req *pb.ListContainerStatsRequest) (*pb.ListContainerStatsResponse, error) {
	return nil, fmt.Errorf("not implemented")
}