Files
kubevela/references/cli/top/model/application.go
Siege Lion c350cc3a23 Feat: Add Request and Limit metrics to vela status --metrics (#5546)
* Feat: Add Request and Limit metrics to vela status --metrics

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

* Fix: fix function spec and const variable

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

* Fix: fix logic of loading pod metrics

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

* Fix: small fix

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

* Fix: optimize  function structure

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

---------

Signed-off-by: HanMengnan <1448189829@qq.com>
2023-02-27 16:31:38 +08:00

161 lines
4.7 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"
"fmt"
workflowv1alpha1 "github.com/kubevela/workflow/api/v1alpha1"
"sigs.k8s.io/controller-runtime/pkg/client"
"github.com/oam-dev/kubevela/apis/core.oam.dev/common"
"github.com/oam-dev/kubevela/apis/core.oam.dev/v1beta1"
"github.com/oam-dev/kubevela/pkg/velaql/providers/query"
"github.com/oam-dev/kubevela/pkg/velaql/providers/query/types"
clicommon "github.com/oam-dev/kubevela/references/common"
)
// Application is the application resource object
type Application struct {
name string
namespace string
phase string
service string
workflow string
workflowMode string
createTime string
}
// ApplicationList is application resource list
type ApplicationList []Application
// ToTableBody generate body of table in application view
func (l ApplicationList) ToTableBody() [][]string {
data := make([][]string, len(l))
for index, app := range l {
data[index] = []string{app.name, app.namespace, app.phase, app.workflowMode, app.workflow, app.service, app.createTime}
}
return data
}
// ListApplications list all apps in all namespaces
func ListApplications(ctx context.Context, c client.Client) (ApplicationList, error) {
apps := v1beta1.ApplicationList{}
namespace := ctx.Value(&CtxKeyNamespace).(string)
if err := c.List(ctx, &apps, client.InNamespace(namespace)); err != nil {
return ApplicationList{}, err
}
appList := make(ApplicationList, len(apps.Items))
for index, app := range apps.Items {
appList[index] = Application{name: app.Name, namespace: app.Namespace, phase: string(app.Status.Phase), createTime: app.CreationTimestamp.String()}
appList[index].service = serviceNum(app)
appList[index].workflow = workflowStepNum(app)
appList[index].workflowMode = workflowMode(app)
}
return appList, nil
}
// LoadApplication load the corresponding application according to name and namespace
func LoadApplication(c client.Client, name, ns string) (*v1beta1.Application, error) {
app := new(v1beta1.Application)
err := c.Get(context.Background(), client.ObjectKey{
Name: name,
Namespace: ns,
}, app)
if err != nil {
return nil, err
}
return app, nil
}
// ApplicationResourceTopology return the applied resource of the app in tree form
func ApplicationResourceTopology(c client.Client, name, ns string) ([]*types.AppliedResource, error) {
opt := query.Option{
Name: name,
Namespace: ns,
WithStatus: true,
WithTree: true,
}
collector := query.NewAppCollector(c, opt)
app := new(v1beta1.Application)
appKey := client.ObjectKey{Name: opt.Name, Namespace: opt.Namespace}
if err := c.Get(context.Background(), appKey, app); err != nil {
return nil, err
}
appResList, err := collector.ListApplicationResources(context.Background(), app)
if err != nil {
return nil, err
}
return appResList, nil
}
// applicationNum return the num of application
func applicationNum(ctx context.Context, c client.Client) (int, error) {
apps := v1beta1.ApplicationList{}
if err := c.List(ctx, &apps); err != nil {
return 0, err
}
return len(apps.Items), nil
}
// runningApplicationNum return the num of running application
func runningApplicationNum(ctx context.Context, c client.Client) (int, error) {
num := 0
apps := v1beta1.ApplicationList{}
if err := c.List(ctx, &apps); err != nil {
return num, err
}
for _, app := range apps.Items {
if app.Status.Phase == common.ApplicationRunning {
num++
}
}
return num, nil
}
func serviceNum(app v1beta1.Application) string {
total, healthy := len(app.Status.Services), 0
for _, service := range app.Status.Services {
if service.Healthy {
healthy++
}
}
return fmt.Sprintf("%d/%d", healthy, total)
}
func workflowMode(app v1beta1.Application) string {
if app.Status.Workflow == nil {
return Unknown
}
return app.Status.Workflow.Mode
}
func workflowStepNum(app v1beta1.Application) string {
if app.Status.Workflow == nil {
return clicommon.MetricsNA
}
total, succeed := len(app.Status.Workflow.Steps), 0
for _, step := range app.Status.Workflow.Steps {
if step.Phase == workflowv1alpha1.WorkflowStepPhaseSucceeded {
succeed++
}
}
return fmt.Sprintf("%d/%d", succeed, total)
}