Files
kubevela/references/cli/top/model/container.go
Siege Lion 44b4afbcdf Feat: add the container view to vela top (#4892)
* Feat: add content to help view

Signed-off-by: HanMengnan <1448189829@qq.com>

* Feat: add the feature of viewing log of pod

Signed-off-by: HanMengnan <1448189829@qq.com>

* Feat: add the container view

Signed-off-by: HanMengnan <1448189829@qq.com>

* Fix: add test case and fix some bugs

Signed-off-by: HanMengnan <1448189829@qq.com>

* Fix: fix some bugs

Signed-off-by: HanMengnan <1448189829@qq.com>

Signed-off-by: HanMengnan <1448189829@qq.com>
2022-10-20 14:58:41 +08:00

142 lines
4.5 KiB
Go

/*
Copyright 2022 The KubeVela 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 model
import (
"context"
"strconv"
v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/types"
"k8s.io/client-go/rest"
"sigs.k8s.io/controller-runtime/pkg/client"
"github.com/oam-dev/kubevela/references/cli/top/utils"
)
// Container represent the container resource instance
type Container struct {
name string
image string
ready string
state string
CPU string
Mem string
CPUR string
CPUL string
MemR string
MemL string
lastTerminationMsg string
restartCount string
}
// ContainerList is container list
type ContainerList []Container
// ListContainerOfPod get the container data of aimed pod
func ListContainerOfPod(ctx context.Context, client client.Client, cfg *rest.Config) (ContainerList, error) {
name := ctx.Value(&CtxKeyPod).(string)
namespace := ctx.Value(&CtxKeyNamespace).(string)
pod := v1.Pod{}
err := client.Get(context.Background(), types.NamespacedName{Name: name, Namespace: namespace}, &pod)
if err != nil {
return nil, err
}
usageMap := fetchContainerMetricsUsageMap(cfg, name, namespace)
lrMap := fetchContainerMetricsLRMap(pod.Spec)
containers := make([]Container, 0)
for _, c := range pod.Status.ContainerStatuses {
containers = append(containers, loadContainerDetail(c, usageMap, lrMap))
}
return containers, nil
}
func loadContainerDetail(c v1.ContainerStatus, usageMap map[string]v1.ResourceList, lrMap map[string]v1.ResourceRequirements) Container {
containerInfo := Container{
name: c.Name,
image: c.Image,
restartCount: string(c.RestartCount),
}
if c.Ready {
containerInfo.ready = "Yes"
} else {
containerInfo.ready = "No"
}
switch {
case c.State.Running != nil:
containerInfo.state = "Running"
case c.State.Waiting != nil:
containerInfo.state = "Waiting"
case c.State.Terminated != nil:
containerInfo.state = "Terminated"
default:
containerInfo.state = Unknown
}
usage, ok1 := usageMap[c.Name]
lr, ok2 := lrMap[c.Name]
if ok1 && ok2 {
cpuUsage := usage.Cpu().MilliValue()
memUsage := usage.Memory().Value()
containerInfo.CPU, containerInfo.Mem = strconv.FormatInt(cpuUsage, 10), strconv.FormatInt(memUsage/1000000, 10)
containerInfo.CPUR = utils.ToPercentageStr(cpuUsage, lr.Requests.Cpu().MilliValue())
containerInfo.CPUL = utils.ToPercentageStr(cpuUsage, lr.Limits.Cpu().MilliValue())
containerInfo.MemR = utils.ToPercentageStr(memUsage, lr.Requests.Memory().Value())
containerInfo.MemL = utils.ToPercentageStr(memUsage, lr.Limits.Memory().Value())
} else {
containerInfo.CPU, containerInfo.Mem, containerInfo.CPUL, containerInfo.MemL, containerInfo.CPUR, containerInfo.MemR = utils.NA, utils.NA, utils.NA, utils.NA, utils.NA, utils.NA
}
if c.LastTerminationState.Terminated != nil {
containerInfo.lastTerminationMsg = c.LastTerminationState.Terminated.Message
}
return containerInfo
}
func fetchContainerMetricsUsageMap(cfg *rest.Config, name, namespace string) map[string]v1.ResourceList {
metric, err := utils.PodMetric(cfg, name, namespace)
if err != nil {
return nil
}
cmx := make(map[string]v1.ResourceList, len(metric.Containers))
for i := range metric.Containers {
c := metric.Containers[i]
cmx[c.Name] = c.Usage
}
return cmx
}
func fetchContainerMetricsLRMap(spec v1.PodSpec) map[string]v1.ResourceRequirements {
lr := make(map[string]v1.ResourceRequirements, len(spec.Containers))
for _, container := range spec.Containers {
lr[container.Name] = container.Resources
}
return lr
}
// ToTableBody generate body of table in pod view
func (l ContainerList) ToTableBody() [][]string {
data := make([][]string, len(l))
for index, container := range l {
data[index] = []string{container.name, container.image, container.ready, container.state, container.CPU, container.Mem, container.CPUR, container.CPUL, container.MemR, container.MemL, container.lastTerminationMsg, container.restartCount}
}
return data
}