mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-19 00:31:00 +00:00
Removed duplicate code
This commit is contained in:
parent
5a26fe5696
commit
9ed8340306
@ -17,6 +17,7 @@ go_library(
|
|||||||
"docker_logs.go",
|
"docker_logs.go",
|
||||||
"docker_sandbox.go",
|
"docker_sandbox.go",
|
||||||
"docker_service.go",
|
"docker_service.go",
|
||||||
|
"docker_stats.go",
|
||||||
"docker_stats_linux.go",
|
"docker_stats_linux.go",
|
||||||
"docker_stats_unsupported.go",
|
"docker_stats_unsupported.go",
|
||||||
"docker_stats_windows.go",
|
"docker_stats_windows.go",
|
||||||
|
61
pkg/kubelet/dockershim/docker_stats.go
Normal file
61
pkg/kubelet/dockershim/docker_stats.go
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2019 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 dockershim
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
|
||||||
|
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2"
|
||||||
|
)
|
||||||
|
|
||||||
|
// ContainerStats returns stats for a container stats request based on container id.
|
||||||
|
func (ds *dockerService) ContainerStats(_ context.Context, r *runtimeapi.ContainerStatsRequest) (*runtimeapi.ContainerStatsResponse, error) {
|
||||||
|
stats, err := ds.getContainerStats(r.ContainerId)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return &runtimeapi.ContainerStatsResponse{Stats: stats}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ListContainerStats returns stats for a list container stats request based on a filter.
|
||||||
|
func (ds *dockerService) ListContainerStats(ctx context.Context, r *runtimeapi.ListContainerStatsRequest) (*runtimeapi.ListContainerStatsResponse, error) {
|
||||||
|
containerStatsFilter := r.GetFilter()
|
||||||
|
filter := &runtimeapi.ContainerFilter{}
|
||||||
|
|
||||||
|
if containerStatsFilter != nil {
|
||||||
|
filter.Id = containerStatsFilter.Id
|
||||||
|
filter.PodSandboxId = containerStatsFilter.PodSandboxId
|
||||||
|
filter.LabelSelector = containerStatsFilter.LabelSelector
|
||||||
|
}
|
||||||
|
|
||||||
|
listResp, err := ds.ListContainers(ctx, &runtimeapi.ListContainersRequest{Filter: filter})
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
var stats []*runtimeapi.ContainerStats
|
||||||
|
for _, container := range listResp.Containers {
|
||||||
|
containerStats, err := ds.getContainerStats(container.Id)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
stats = append(stats, containerStats)
|
||||||
|
}
|
||||||
|
|
||||||
|
return &runtimeapi.ListContainerStatsResponse{Stats: stats}, nil
|
||||||
|
}
|
@ -25,44 +25,6 @@ import (
|
|||||||
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2"
|
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ContainerStats returns stats for a container stats request based on container id.
|
|
||||||
func (ds *dockerService) ContainerStats(_ context.Context, r *runtimeapi.ContainerStatsRequest) (*runtimeapi.ContainerStatsResponse, error) {
|
|
||||||
stats, err := ds.getContainerStats(r.ContainerId)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return &runtimeapi.ContainerStatsResponse{Stats: stats}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// ListContainerStats returns stats for a list container stats request based on a filter.
|
|
||||||
func (ds *dockerService) ListContainerStats(ctx context.Context, r *runtimeapi.ListContainerStatsRequest) (*runtimeapi.ListContainerStatsResponse, error) {
|
|
||||||
containerStatsFilter := r.GetFilter()
|
|
||||||
filter := &runtimeapi.ContainerFilter{}
|
|
||||||
|
|
||||||
if containerStatsFilter != nil {
|
|
||||||
filter.Id = containerStatsFilter.Id
|
|
||||||
filter.PodSandboxId = containerStatsFilter.PodSandboxId
|
|
||||||
filter.LabelSelector = containerStatsFilter.LabelSelector
|
|
||||||
}
|
|
||||||
|
|
||||||
listResp, err := ds.ListContainers(ctx, &runtimeapi.ListContainersRequest{Filter: filter})
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
var stats []*runtimeapi.ContainerStats
|
|
||||||
for _, container := range listResp.Containers {
|
|
||||||
containerStats, err := ds.getContainerStats(container.Id)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
stats = append(stats, containerStats)
|
|
||||||
}
|
|
||||||
|
|
||||||
return &runtimeapi.ListContainerStatsResponse{Stats: stats}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (ds *dockerService) getContainerStats(containerID string) (*runtimeapi.ContainerStats, error) {
|
func (ds *dockerService) getContainerStats(containerID string) (*runtimeapi.ContainerStats, error) {
|
||||||
info, err := ds.client.Info()
|
info, err := ds.client.Info()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -25,44 +25,6 @@ import (
|
|||||||
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2"
|
runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1alpha2"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ContainerStats returns stats for a container stats request based on container id.
|
|
||||||
func (ds *dockerService) ContainerStats(_ context.Context, r *runtimeapi.ContainerStatsRequest) (*runtimeapi.ContainerStatsResponse, error) {
|
|
||||||
stats, err := ds.getContainerStats(r.ContainerId)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return &runtimeapi.ContainerStatsResponse{Stats: stats}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// ListContainerStats returns stats for a list container stats request based on a filter.
|
|
||||||
func (ds *dockerService) ListContainerStats(ctx context.Context, r *runtimeapi.ListContainerStatsRequest) (*runtimeapi.ListContainerStatsResponse, error) {
|
|
||||||
containerStatsFilter := r.GetFilter()
|
|
||||||
filter := &runtimeapi.ContainerFilter{}
|
|
||||||
|
|
||||||
if containerStatsFilter != nil {
|
|
||||||
filter.Id = containerStatsFilter.Id
|
|
||||||
filter.PodSandboxId = containerStatsFilter.PodSandboxId
|
|
||||||
filter.LabelSelector = containerStatsFilter.LabelSelector
|
|
||||||
}
|
|
||||||
|
|
||||||
listResp, err := ds.ListContainers(ctx, &runtimeapi.ListContainersRequest{Filter: filter})
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
var stats []*runtimeapi.ContainerStats
|
|
||||||
for _, container := range listResp.Containers {
|
|
||||||
containerStats, err := ds.getContainerStats(container.Id)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
stats = append(stats, containerStats)
|
|
||||||
}
|
|
||||||
|
|
||||||
return &runtimeapi.ListContainerStatsResponse{Stats: stats}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (ds *dockerService) getContainerStats(containerID string) (*runtimeapi.ContainerStats, error) {
|
func (ds *dockerService) getContainerStats(containerID string) (*runtimeapi.ContainerStats, error) {
|
||||||
info, err := ds.client.Info()
|
info, err := ds.client.Info()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user