storj/cmd/storagenode/dashboard.go

218 lines
5.4 KiB
Go
Raw Normal View History

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package main
import (
"context"
"fmt"
"os"
"os/exec"
"runtime"
"strings"
"text/tabwriter"
"time"
"github.com/fatih/color"
"github.com/golang/protobuf/ptypes"
"github.com/spf13/cobra"
"go.uber.org/zap"
"storj.io/storj/internal/memory"
"storj.io/storj/pkg/identity"
"storj.io/storj/pkg/pb"
"storj.io/storj/pkg/peertls/tlsopts"
"storj.io/storj/pkg/process"
"storj.io/storj/pkg/transport"
)
func dashCmd(cmd *cobra.Command, args []string) (err error) {
ctx := process.Ctx(cmd)
ident, err := runCfg.Identity.Load()
if err != nil {
zap.S().Fatal(err)
} else {
zap.S().Info("Node ID: ", ident.ID)
}
tlsOpts, err := tlsopts.NewOptions(ident, tlsopts.Config{})
if err != nil {
return err
}
tc := transport.NewClient(tlsOpts)
n := &pb.Node{
Id: ident.ID,
Address: &pb.NodeAddress{
Address: dashboardCfg.Address,
Transport: 0,
},
Type: pb.NodeType_STORAGE,
}
client, err := newDashboardClient(ctx, tc, n)
if err != nil {
return err
}
online, err := getConnectionStatus(ctx, tc, ident)
if err != nil {
zap.S().Error("error getting connection status %s", err.Error())
}
for {
data, err := client.Dashboard(ctx)
if err != nil {
return err
}
clearScreen()
color.NoColor = !useColor
heading := color.New(color.FgGreen, color.Bold)
2019-02-01 18:29:37 +00:00
_, _ = heading.Printf("\nStorage Node Dashboard\n")
_, _ = heading.Printf("\n======================\n\n")
w := tabwriter.NewWriter(color.Output, 0, 0, 1, ' ', 0)
fmt.Fprintf(w, "ID\t%s\n", color.YellowString(data.GetNodeId()))
if online {
fmt.Fprintf(w, "Status\t%s\n", color.GreenString("ONLINE"))
} else {
fmt.Fprintf(w, "Status\t%s\n", color.RedString("OFFLINE"))
}
uptime, err := ptypes.Duration(data.GetUptime())
if err != nil {
fmt.Fprintf(w, "Uptime\t%s\n", color.RedString(uptime.Truncate(time.Second).String()))
} else {
fmt.Fprintf(w, "Uptime\t%s\n", color.YellowString(uptime.Truncate(time.Second).String()))
}
if err = w.Flush(); err != nil {
return err
}
stats := data.GetStats()
if stats != nil {
2019-02-01 18:29:37 +00:00
availableBandwidth := color.WhiteString(memory.Size(stats.GetAvailableBandwidth()).Base10String())
usedBandwidth := color.WhiteString(memory.Size(stats.GetUsedBandwidth()).Base10String())
availableSpace := color.WhiteString(memory.Size(stats.GetAvailableSpace()).Base10String())
usedSpace := color.WhiteString(memory.Size(stats.GetUsedSpace()).Base10String())
w = tabwriter.NewWriter(color.Output, 0, 0, 5, ' ', tabwriter.AlignRight)
fmt.Fprintf(w, "\n\t%s\t%s\t\n", color.GreenString("Available"), color.GreenString("Used"))
fmt.Fprintf(w, "Bandwidth\t%s\t%s\t\n", availableBandwidth, usedBandwidth)
fmt.Fprintf(w, "Disk\t%s\t%s\t\n", availableSpace, usedSpace)
if err = w.Flush(); err != nil {
return err
}
} else {
color.Yellow("Loading...\n")
}
w = tabwriter.NewWriter(color.Output, 0, 0, 1, ' ', 0)
// TODO: Get addresses from server data
fmt.Fprintf(w, "\nBootstrap\t%s\n", color.WhiteString(data.GetBootstrapAddress()))
fmt.Fprintf(w, "Internal\t%s\n", color.WhiteString(dashboardCfg.Address))
fmt.Fprintf(w, "External\t%s\n", color.WhiteString(data.GetExternalAddress()))
fmt.Fprintf(w, "\nNeighborhood Size %+v\n", whiteInt(data.GetNodeConnections()))
if err = w.Flush(); err != nil {
return err
}
time.Sleep(3 * time.Second)
}
}
// DashboardClient is the struct that holds the client
type DashboardClient struct {
client pb.PieceStoreInspectorClient
}
// Dashboard returns a simple terminal dashboard displaying info
func (dash *DashboardClient) Dashboard(ctx context.Context) (*pb.DashboardResponse, error) {
return dash.client.Dashboard(ctx, &pb.DashboardRequest{})
}
// Stats will retrieve stats about a piece storage node
func (dash *DashboardClient) Stats(ctx context.Context) (*pb.StatSummaryResponse, error) {
return dash.client.Stats(ctx, &pb.StatsRequest{})
}
func newDashboardClient(ctx context.Context, tc transport.Client, n *pb.Node) (*DashboardClient, error) {
conn, err := tc.DialNode(ctx, n)
if err != nil {
return &DashboardClient{}, err
}
return &DashboardClient{
client: pb.NewPieceStoreInspectorClient(conn),
}, nil
}
func whiteInt(value int64) string {
return color.WhiteString(fmt.Sprintf("%+v", value))
}
// clearScreen clears the screen so it can be redrawn
func clearScreen() {
switch runtime.GOOS {
case "linux", "darwin":
cmd := exec.Command("clear")
cmd.Stdout = os.Stdout
_ = cmd.Run()
case "windows":
cmd := exec.Command("cmd", "/c", "cls")
cmd.Stdout = os.Stdout
_ = cmd.Run()
default:
fmt.Print(strings.Repeat("\n", 100))
}
}
func getConnectionStatus(ctx context.Context, tc transport.Client, id *identity.FullIdentity) (bool, error) {
bn := &pb.Node{
Address: &pb.NodeAddress{
Address: dashboardCfg.BootstrapAddr,
Transport: 0,
},
Type: pb.NodeType_BOOTSTRAP,
}
inspector, err := newInspectorClient(ctx, tc, bn)
if err != nil {
return false, err
}
resp, err := inspector.kad.PingNode(ctx, &pb.PingNodeRequest{
Id: id.ID,
Address: dashboardCfg.ExternalAddress,
})
if err != nil {
zap.S().Error(err)
return false, err
}
if resp.GetOk() {
return true, err
}
return false, err
}
func newInspectorClient(ctx context.Context, tc transport.Client, bn *pb.Node) (*Inspector, error) {
conn, err := tc.DialNode(ctx, bn)
if err != nil {
return &Inspector{}, err
}
return &Inspector{
kad: pb.NewKadInspectorClient(conn),
}, nil
}