2018-03-14 14:12:26 +08:00
|
|
|
|
// Copyright (C) 2014-2018 Goodrain Co., Ltd.
|
2017-11-10 11:53:05 +08:00
|
|
|
|
// RAINBOND, Application Management Platform
|
2018-03-14 14:33:31 +08:00
|
|
|
|
|
2017-11-10 11:53:05 +08:00
|
|
|
|
// 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.
|
2018-03-14 14:33:31 +08:00
|
|
|
|
|
2017-11-10 11:53:05 +08:00
|
|
|
|
// 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.
|
2018-03-14 14:33:31 +08:00
|
|
|
|
|
2017-11-10 11:53:05 +08:00
|
|
|
|
// 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
|
2018-04-09 11:22:44 +08:00
|
|
|
|
|
2017-11-10 10:48:00 +08:00
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
2018-07-16 15:30:53 +08:00
|
|
|
|
"os"
|
2018-04-09 11:22:44 +08:00
|
|
|
|
|
|
|
|
|
"github.com/apcera/termtables"
|
2018-04-24 16:44:59 +08:00
|
|
|
|
"github.com/goodrain/rainbond/grctl/clients"
|
2018-07-16 15:30:53 +08:00
|
|
|
|
"github.com/gosuri/uitable"
|
2018-04-09 11:22:44 +08:00
|
|
|
|
"github.com/urfave/cli"
|
2017-11-10 10:48:00 +08:00
|
|
|
|
)
|
2018-04-09 11:22:44 +08:00
|
|
|
|
|
|
|
|
|
//NewCmdTenant tenant cmd
|
2017-11-10 10:48:00 +08:00
|
|
|
|
func NewCmdTenant() cli.Command {
|
2018-04-09 11:22:44 +08:00
|
|
|
|
c := cli.Command{
|
|
|
|
|
Name: "tenant",
|
|
|
|
|
Usage: "grctl tenant -h",
|
|
|
|
|
Subcommands: []cli.Command{
|
2017-12-21 18:33:41 +08:00
|
|
|
|
cli.Command{
|
2018-04-09 11:22:44 +08:00
|
|
|
|
Name: "get",
|
|
|
|
|
Usage: "get all app details by specified tenant name",
|
2017-12-21 18:33:41 +08:00
|
|
|
|
Action: func(c *cli.Context) error {
|
|
|
|
|
Common(c)
|
|
|
|
|
return getTenantInfo(c)
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
cli.Command{
|
|
|
|
|
Name: "res",
|
2018-04-09 11:22:44 +08:00
|
|
|
|
Usage: "get tenant resource details by specified tenant name",
|
2017-12-21 18:33:41 +08:00
|
|
|
|
Action: func(c *cli.Context) error {
|
|
|
|
|
Common(c)
|
|
|
|
|
return findTenantResourceUsage(c)
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
cli.Command{
|
|
|
|
|
Name: "batchstop",
|
2018-04-09 11:22:44 +08:00
|
|
|
|
Usage: "batch stop app by specified tenant name",
|
2017-12-21 18:33:41 +08:00
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
|
cli.BoolFlag{
|
|
|
|
|
Name: "f",
|
2018-04-09 11:22:44 +08:00
|
|
|
|
Usage: "Continuous log output",
|
2017-12-21 18:33:41 +08:00
|
|
|
|
},
|
|
|
|
|
cli.StringFlag{
|
|
|
|
|
Name: "event_log_server",
|
|
|
|
|
Usage: "event log server address",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
Action: func(c *cli.Context) error {
|
|
|
|
|
Common(c)
|
|
|
|
|
return stopTenantService(c)
|
|
|
|
|
},
|
|
|
|
|
},
|
2017-11-10 10:48:00 +08:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
return c
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// grctrl tenant TENANT_NAME
|
|
|
|
|
func getTenantInfo(c *cli.Context) error {
|
|
|
|
|
tenantID := c.Args().First()
|
2018-07-16 15:30:53 +08:00
|
|
|
|
if tenantID == "" {
|
|
|
|
|
fmt.Println("Please provide tenant name")
|
|
|
|
|
os.Exit(1)
|
|
|
|
|
}
|
2018-07-16 19:06:57 +08:00
|
|
|
|
services, err := clients.RegionClient.Tenants(tenantID).Services("").List()
|
2017-12-21 18:33:41 +08:00
|
|
|
|
handleErr(err)
|
2018-04-09 11:22:44 +08:00
|
|
|
|
if services != nil {
|
2018-07-16 16:35:42 +08:00
|
|
|
|
runtable := termtables.CreateTable()
|
|
|
|
|
closedtable := termtables.CreateTable()
|
|
|
|
|
runtable.AddHeaders("服务别名", "应用状态", "Deploy版本", "实例数量", "内存占用")
|
|
|
|
|
closedtable.AddHeaders("租户ID", "服务ID", "服务别名", "应用状态", "Deploy版本")
|
2017-11-30 18:16:22 +08:00
|
|
|
|
for _, service := range services {
|
2018-07-16 16:35:42 +08:00
|
|
|
|
if service.CurStatus != "closed" && service.CurStatus != "closing" && service.CurStatus != "undeploy" && service.CurStatus != "deploying" {
|
|
|
|
|
runtable.AddRow(service.ServiceAlias, service.CurStatus, service.DeployVersion, service.Replicas, fmt.Sprintf("%d Mb", service.ContainerMemory*service.Replicas))
|
|
|
|
|
} else {
|
|
|
|
|
closedtable.AddRow(service.TenantID, service.ServiceID, service.ServiceAlias, service.CurStatus, service.DeployVersion)
|
|
|
|
|
}
|
2017-11-30 18:16:22 +08:00
|
|
|
|
}
|
2018-07-16 16:35:42 +08:00
|
|
|
|
fmt.Println("运行中的应用:")
|
|
|
|
|
fmt.Println(runtable.Render())
|
|
|
|
|
fmt.Println("不在运行的应用:")
|
|
|
|
|
fmt.Println(closedtable.Render())
|
2017-11-30 18:16:22 +08:00
|
|
|
|
return nil
|
2017-11-10 10:48:00 +08:00
|
|
|
|
}
|
2018-04-09 11:22:44 +08:00
|
|
|
|
return nil
|
2017-11-10 10:48:00 +08:00
|
|
|
|
}
|
2018-04-09 11:22:44 +08:00
|
|
|
|
func findTenantResourceUsage(c *cli.Context) error {
|
2018-07-16 15:30:53 +08:00
|
|
|
|
tenantName := c.Args().First()
|
|
|
|
|
if tenantName == "" {
|
|
|
|
|
fmt.Println("Please provide tenant name")
|
|
|
|
|
os.Exit(1)
|
2017-11-10 10:48:00 +08:00
|
|
|
|
}
|
2018-07-16 15:30:53 +08:00
|
|
|
|
resources, err := clients.RegionClient.Resources().Tenants(tenantName).Get()
|
|
|
|
|
handleErr(err)
|
|
|
|
|
table := uitable.New()
|
|
|
|
|
table.Wrap = true // wrap columns
|
|
|
|
|
table.AddRow("租户名:", resources.Name)
|
2018-07-16 16:35:42 +08:00
|
|
|
|
table.AddRow("租户ID:", resources.UUID)
|
2018-07-16 15:30:53 +08:00
|
|
|
|
table.AddRow("企业ID:", resources.EID)
|
2018-07-16 16:35:42 +08:00
|
|
|
|
table.AddRow("正使用CPU资源:", fmt.Sprintf("%.2f Core", float64(resources.UsedCPU)/1000))
|
|
|
|
|
table.AddRow("正使用内存资源:", fmt.Sprintf("%d %s", resources.UsedMEM, "Mb"))
|
2018-07-16 19:06:57 +08:00
|
|
|
|
table.AddRow("正使用磁盘资源:", fmt.Sprintf("%.2f Mb", resources.UsedDisk/1024))
|
2018-07-16 16:35:42 +08:00
|
|
|
|
table.AddRow("总分配CPU资源:", fmt.Sprintf("%.2f Core", float64(resources.AllocatedCPU)/1000))
|
|
|
|
|
table.AddRow("总分配内存资源:", fmt.Sprintf("%d %s", resources.AllocatedMEM, "Mb"))
|
2018-07-16 15:30:53 +08:00
|
|
|
|
fmt.Println(table)
|
2017-11-10 10:48:00 +08:00
|
|
|
|
return nil
|
2018-04-09 11:22:44 +08:00
|
|
|
|
}
|