161 lines
4.9 KiB
Go
161 lines
4.9 KiB
Go
/*
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package server
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/containerd/cgroups"
|
|
tasks "github.com/containerd/containerd/api/services/tasks/v1"
|
|
"github.com/containerd/containerd/api/types"
|
|
"github.com/containerd/typeurl"
|
|
"golang.org/x/net/context"
|
|
"k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime"
|
|
|
|
containerstore "github.com/kubernetes-incubator/cri-containerd/pkg/store/container"
|
|
)
|
|
|
|
// ListContainerStats returns stats of all running containers.
|
|
func (c *criContainerdService) ListContainerStats(
|
|
ctx context.Context,
|
|
in *runtime.ListContainerStatsRequest,
|
|
) (*runtime.ListContainerStatsResponse, error) {
|
|
request, containers, err := c.buildTaskMetricsRequest(in)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to build metrics request: %v", err)
|
|
}
|
|
resp, err := c.taskService.Metrics(ctx, &request)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to fetch metrics for tasks: %v", err)
|
|
}
|
|
criStats, err := c.toCRIContainerStats(resp.Metrics, containers)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to convert to cri containerd stats format: %v", err)
|
|
}
|
|
return criStats, nil
|
|
}
|
|
|
|
func (c *criContainerdService) toCRIContainerStats(
|
|
stats []*types.Metric,
|
|
containers []containerstore.Container,
|
|
) (*runtime.ListContainerStatsResponse, error) {
|
|
statsMap := make(map[string]*types.Metric)
|
|
for _, stat := range stats {
|
|
statsMap[stat.ID] = stat
|
|
}
|
|
containerStats := new(runtime.ListContainerStatsResponse)
|
|
for _, cntr := range containers {
|
|
cs, err := c.getContainerMetrics(cntr.Metadata, statsMap[cntr.ID])
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to decode container metrics for %q: %v", cntr.ID, err)
|
|
}
|
|
containerStats.Stats = append(containerStats.Stats, cs)
|
|
}
|
|
return containerStats, nil
|
|
}
|
|
|
|
func (c *criContainerdService) getContainerMetrics(
|
|
meta containerstore.Metadata,
|
|
stats *types.Metric,
|
|
) (*runtime.ContainerStats, error) {
|
|
var cs runtime.ContainerStats
|
|
var usedBytes, inodesUsed uint64
|
|
sn, err := c.snapshotStore.Get(meta.ID)
|
|
// If snapshotstore doesn't have cached snapshot information
|
|
// set WritableLayer usage to zero
|
|
if err == nil {
|
|
usedBytes = sn.Size
|
|
inodesUsed = sn.Inodes
|
|
}
|
|
cs.WritableLayer = &runtime.FilesystemUsage{
|
|
Timestamp: sn.Timestamp,
|
|
StorageId: &runtime.StorageIdentifier{
|
|
Uuid: c.imageFSUUID,
|
|
},
|
|
UsedBytes: &runtime.UInt64Value{usedBytes},
|
|
InodesUsed: &runtime.UInt64Value{inodesUsed},
|
|
}
|
|
cs.Attributes = &runtime.ContainerAttributes{
|
|
Id: meta.ID,
|
|
Metadata: meta.Config.GetMetadata(),
|
|
Labels: meta.Config.GetLabels(),
|
|
Annotations: meta.Config.GetAnnotations(),
|
|
}
|
|
|
|
if stats != nil {
|
|
s, err := typeurl.UnmarshalAny(stats.Data)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to extract container metrics: %v", err)
|
|
}
|
|
metrics := s.(*cgroups.Metrics)
|
|
if metrics.CPU != nil && metrics.CPU.Usage != nil {
|
|
cs.Cpu = &runtime.CpuUsage{
|
|
Timestamp: stats.Timestamp.UnixNano(),
|
|
UsageCoreNanoSeconds: &runtime.UInt64Value{metrics.CPU.Usage.Total},
|
|
}
|
|
}
|
|
if metrics.Memory != nil && metrics.Memory.Usage != nil {
|
|
cs.Memory = &runtime.MemoryUsage{
|
|
Timestamp: stats.Timestamp.UnixNano(),
|
|
WorkingSetBytes: &runtime.UInt64Value{metrics.Memory.Usage.Usage},
|
|
}
|
|
}
|
|
}
|
|
|
|
return &cs, nil
|
|
}
|
|
|
|
// buildTaskMetricsRequest constructs a tasks.MetricsRequest based on
|
|
// the information in the stats request and the containerStore
|
|
func (c *criContainerdService) buildTaskMetricsRequest(
|
|
r *runtime.ListContainerStatsRequest,
|
|
) (tasks.MetricsRequest, []containerstore.Container, error) {
|
|
var req tasks.MetricsRequest
|
|
if r.GetFilter() == nil {
|
|
return req, nil, nil
|
|
}
|
|
var containers []containerstore.Container
|
|
for _, cntr := range c.containerStore.List() {
|
|
if r.GetFilter().GetId() != "" && cntr.ID != r.GetFilter().GetId() {
|
|
continue
|
|
}
|
|
if r.GetFilter().GetPodSandboxId() != "" && cntr.SandboxID != r.GetFilter().GetPodSandboxId() {
|
|
continue
|
|
}
|
|
if r.GetFilter().GetLabelSelector() != nil &&
|
|
!matchLabelSelector(r.GetFilter().GetLabelSelector(), cntr.Config.GetLabels()) {
|
|
continue
|
|
}
|
|
containers = append(containers, cntr)
|
|
req.Filters = append(req.Filters, "id=="+cntr.ID)
|
|
}
|
|
return req, containers, nil
|
|
}
|
|
|
|
func matchLabelSelector(selector, labels map[string]string) bool {
|
|
for k, v := range selector {
|
|
if val, ok := labels[k]; ok {
|
|
if v != val {
|
|
return false
|
|
}
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|