2017-11-10 11:53:05 +08:00
|
|
|
// RAINBOND, Application Management Platform
|
|
|
|
// Copyright (C) 2014-2017 Goodrain Co., Ltd.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version. For any non-GPL usage of Rainbond,
|
|
|
|
// one or multiple Commercial Licenses authorized by Goodrain Co., Ltd.
|
|
|
|
// must be obtained first.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-11-10 10:48:00 +08:00
|
|
|
package cmd
|
|
|
|
import (
|
|
|
|
"github.com/urfave/cli"
|
2017-11-10 11:53:05 +08:00
|
|
|
"github.com/goodrain/rainbond/pkg/grctl/clients"
|
2017-11-10 10:48:00 +08:00
|
|
|
"fmt"
|
|
|
|
"github.com/apcera/termtables"
|
2017-11-30 18:16:22 +08:00
|
|
|
"github.com/Sirupsen/logrus"
|
2017-11-10 10:48:00 +08:00
|
|
|
)
|
|
|
|
func NewCmdTenant() cli.Command {
|
|
|
|
c:=cli.Command{
|
|
|
|
Name: "tenant",
|
|
|
|
Usage: "获取租户应用(包括未运行)信息。 grctl tenant TENANT_NAME",
|
|
|
|
Action: func(c *cli.Context) error {
|
|
|
|
Common(c)
|
|
|
|
return getTenantInfo(c)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
func NewCmdTenantRes() cli.Command {
|
|
|
|
c:=cli.Command{
|
|
|
|
Name: "tenantres",
|
|
|
|
Usage: "获取租户占用资源信息。 grctl tenantres TENANT_NAME",
|
|
|
|
Action: func(c *cli.Context) error {
|
|
|
|
Common(c)
|
|
|
|
return findTenantResourceUsage(c)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
// grctrl tenant TENANT_NAME
|
|
|
|
func getTenantInfo(c *cli.Context) error {
|
|
|
|
tenantID := c.Args().First()
|
|
|
|
|
|
|
|
services:=clients.RegionClient.Tenants().Get(tenantID).Services().List()
|
2017-11-30 18:16:22 +08:00
|
|
|
if services !=nil{
|
|
|
|
table := termtables.CreateTable()
|
|
|
|
table.AddHeaders("租户ID", "服务ID", "服务别名", "应用状态", "Deploy版本")
|
|
|
|
for _, service := range services {
|
|
|
|
table.AddRow(service.TenantID, service.ServiceID, service.ServiceAlias, service.CurStatus, service.DeployVersion)
|
|
|
|
}
|
|
|
|
fmt.Println(table.Render())
|
|
|
|
return nil
|
|
|
|
}else {
|
|
|
|
logrus.Error("get nothing")
|
|
|
|
return nil
|
2017-11-10 10:48:00 +08:00
|
|
|
}
|
2017-11-30 18:16:22 +08:00
|
|
|
|
2017-11-10 10:48:00 +08:00
|
|
|
}
|
|
|
|
func findTenantResourceUsage(c *cli.Context) error {
|
|
|
|
tenantID := c.Args().First()
|
|
|
|
services:=clients.RegionClient.Tenants().Get(tenantID).Services().List()
|
2017-11-29 17:13:42 +08:00
|
|
|
var cpuUsage float32 =0
|
|
|
|
var cpuUnit float32=1000
|
2017-11-10 10:48:00 +08:00
|
|
|
var memoryUsage int64=0
|
|
|
|
for _,service:=range services{
|
2017-11-29 17:13:42 +08:00
|
|
|
cpuUsage+=float32(service.ContainerCPU)
|
2017-11-10 10:48:00 +08:00
|
|
|
memoryUsage+=int64(service.ContainerMemory)
|
|
|
|
}
|
2017-11-29 17:13:42 +08:00
|
|
|
fmt.Printf("租户 %s 占用CPU : %v 核; 占用Memory : %d M",tenantID, cpuUsage/cpuUnit,memoryUsage)
|
2017-11-10 10:48:00 +08:00
|
|
|
fmt.Println()
|
|
|
|
return nil
|
|
|
|
}
|