2cf86703a3
* Initial Webserver Draft for Version Controlling * Rename type to avoid confusion * Move Function Calls into Version Package * Fix Linting and Language Typos * Fix Linting and Spelling Mistakes * Include Copyright * Include Copyright * Adjust Version-Control Server to return list of Versions * Linting * Improve Request Handling and Readability * Add Configuration File Option Add Systemd Service file * Add Logging to File * Smaller Changes * Add Semantic Versioning and refuses outdated Software from Startup (#1612) * implements internal Semantic Version library * adds version logging + reporting to process * Advance SemVer struct for easier handling * Add Accepted Version Store * Fix Function * Restructure * Type Conversion * Handle Version String properly * Add Note about array index * Set temporary Default Version * Add Copyright * Adding Version to Dashboard * Adding Version Info Log * Renaming and adding CheckerProcess * Iteration Sync * Iteration V2 * linting * made LogAndReportVersion a go routine * Refactor to Go Routine * Add Context to Go Routine and allow Operation if Lookup to Control Server fails * Handle Unmarshal properly * Linting * Relocate Version Checks * Relocating Version Check and specified default Version for now * Linting Error Prevention * Refuse Startup on outdated Version * Add Startup Check Function * Straighten Logging * Dont force Shutdown if --dev flag is set * Create full Service/Peer Structure for ControlServer * Linting * Straighting Naming * Finish VersionControl Service Layout * Improve Error Handling * Change Listening Address * Move Checker Function * Remove VersionControl Peer * Linting * Linting * Create VersionClient Service * Renaming * Add Version Client to Peer Definitions * Linting and Renaming * Linting * Remove Transport Checks for now * Move to Client Side Flag * Remove check * Linting * Transport Client Version Intro * Adding Version Client to Transport Client * Add missing parameter * Adding Version Check, to set Allowed = true * Set Default to true, testing * Restructuring Code * Uplink Changes * Add more proper Defaults * Renaming of Version struct * Dont pass Service use Pointer * Set Defaults for Versioning Checks * Put HTTP Server in go routine * Add Versioncontrol to Storj-Sim * Testplanet Fixes * Linting * Add Error Handling and new Server Struct * Move Lock slightly * Reduce Race Potentials * Remove unnecessary files * Linting * Add Proper Transport Handling * small fixes * add fence for allowed check * Add Startup Version Check and Service Naming * make errormessage private * Add Comments about VersionedClient * Linting * Remove Checks that refuse outgoing connections * Remove release cmd * Add Release Script * Linting * Update to use correct Values * Move vars private and set minimum default versions for testing builds * Remove VersionedClient * Better Error Handling and naked return removal * Straighten the Regex and string conversion * Change Check to allows testplanet and storj-sim to run without the need to pass an LDFlag * Cosmetic Change to Dashboard * Cleanup Returns and remove commented code * Remove Version Check if no build options are passed in * Pass in Config Values instead of Pointers * Handle missed Error * Update Endpoint URL * Change Type of Release Flag * Add additional Logging * Remove Versions Logging of other Services * minor fixes Change-Id: I5cc04a410ea6b2008d14dffd63eb5f36dd348a8b
175 lines
4.9 KiB
Go
175 lines
4.9 KiB
Go
// 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/internal/version"
|
|
"storj.io/storj/pkg/pb"
|
|
"storj.io/storj/pkg/process"
|
|
"storj.io/storj/pkg/transport"
|
|
)
|
|
|
|
const contactWindow = time.Minute * 10
|
|
|
|
type dashboardClient struct {
|
|
client pb.PieceStoreInspectorClient
|
|
}
|
|
|
|
func (dash *dashboardClient) dashboard(ctx context.Context) (*pb.DashboardResponse, error) {
|
|
return dash.client.Dashboard(ctx, &pb.DashboardRequest{})
|
|
}
|
|
|
|
func newDashboardClient(ctx context.Context, address string) (*dashboardClient, error) {
|
|
conn, err := transport.DialAddressInsecure(ctx, address)
|
|
if err != nil {
|
|
return &dashboardClient{}, err
|
|
}
|
|
|
|
return &dashboardClient{
|
|
client: pb.NewPieceStoreInspectorClient(conn),
|
|
}, nil
|
|
}
|
|
|
|
func cmdDashboard(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)
|
|
}
|
|
|
|
client, err := newDashboardClient(ctx, dashboardCfg.Address)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for {
|
|
data, err := client.dashboard(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := printDashboard(data); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Refresh the dashboard every 3 seconds
|
|
time.Sleep(3 * time.Second)
|
|
}
|
|
}
|
|
|
|
func printDashboard(data *pb.DashboardResponse) error {
|
|
clearScreen()
|
|
color.NoColor = !useColor
|
|
|
|
heading := color.New(color.FgGreen, color.Bold)
|
|
_, _ = heading.Printf("\nStorage Node Dashboard ( Node Version: %s )\n", version.Build.Version.String())
|
|
_, _ = heading.Printf("\n======================\n\n")
|
|
|
|
w := tabwriter.NewWriter(color.Output, 0, 0, 1, ' ', 0)
|
|
fmt.Fprintf(w, "ID\t%s\n", color.YellowString(data.NodeId.String()))
|
|
|
|
lastContacted, err := ptypes.Timestamp(data.LastPinged)
|
|
if err != nil {
|
|
lastContacted = time.Time{}
|
|
}
|
|
lastQueried, err := ptypes.Timestamp(data.LastQueried)
|
|
if err == nil {
|
|
if lastQueried.After(lastContacted) {
|
|
lastContacted = lastQueried
|
|
}
|
|
}
|
|
switch {
|
|
case lastContacted.IsZero():
|
|
fmt.Fprintf(w, "Last Contact\t%s\n", color.RedString("NEVER"))
|
|
case time.Since(lastContacted) >= contactWindow:
|
|
fmt.Fprintf(w, "Last Contact\t%s\n", color.RedString(fmt.Sprintf("%s ago",
|
|
time.Since(lastContacted).Truncate(time.Second))))
|
|
default:
|
|
fmt.Fprintf(w, "Last Contact\t%s\n", color.GreenString(fmt.Sprintf("%s ago",
|
|
time.Since(lastContacted).Truncate(time.Second))))
|
|
}
|
|
|
|
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 {
|
|
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())
|
|
usedEgress := color.WhiteString(memory.Size(stats.GetUsedEgress()).Base10String())
|
|
usedIngress := color.WhiteString(memory.Size(stats.GetUsedIngress()).Base10String())
|
|
|
|
w = tabwriter.NewWriter(color.Output, 0, 0, 5, ' ', tabwriter.AlignRight)
|
|
fmt.Fprintf(w, "\n\t%s\t%s\t%s\t%s\t\n", color.GreenString("Available"), color.GreenString("Used"), color.GreenString("Egress"), color.GreenString("Ingress"))
|
|
fmt.Fprintf(w, "Bandwidth\t%s\t%s\t%s\t%s\t\n", availableBandwidth, usedBandwidth, usedEgress, usedIngress)
|
|
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
|
|
}
|
|
|
|
return 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))
|
|
}
|
|
}
|