2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-11-21 17:31:27 +00:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-11-21 22:01:09 +00:00
|
|
|
"bufio"
|
2018-11-21 17:31:27 +00:00
|
|
|
"context"
|
2018-11-21 22:01:09 +00:00
|
|
|
"encoding/csv"
|
2018-11-21 17:31:27 +00:00
|
|
|
"flag"
|
|
|
|
"fmt"
|
2018-11-21 22:01:09 +00:00
|
|
|
"io"
|
|
|
|
"os"
|
|
|
|
"strconv"
|
2018-11-21 17:31:27 +00:00
|
|
|
|
2018-11-30 17:36:05 +00:00
|
|
|
"github.com/gogo/protobuf/jsonpb"
|
2019-01-16 20:40:30 +00:00
|
|
|
"github.com/gogo/protobuf/proto"
|
2018-11-21 17:31:27 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/zeebo/errs"
|
|
|
|
|
2019-01-18 15:02:35 +00:00
|
|
|
"storj.io/storj/pkg/identity"
|
2018-11-21 17:31:27 +00:00
|
|
|
"storj.io/storj/pkg/pb"
|
|
|
|
"storj.io/storj/pkg/process"
|
2018-11-30 13:40:13 +00:00
|
|
|
"storj.io/storj/pkg/storj"
|
2018-11-21 17:31:27 +00:00
|
|
|
"storj.io/storj/pkg/transport"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2019-01-17 09:35:22 +00:00
|
|
|
// Addr is the address of peer from command flags
|
|
|
|
Addr = flag.String("address", "localhost:7778", "address of peer to inspect")
|
2018-11-21 17:31:27 +00:00
|
|
|
|
2019-01-18 15:02:35 +00:00
|
|
|
// IdentityPath is the path to the identity the inspector should use for network communication
|
|
|
|
IdentityPath = flag.String("identity-path", "", "path to the identity certificate for use on the network")
|
|
|
|
|
2018-11-21 17:31:27 +00:00
|
|
|
// ErrInspectorDial throws when there are errors dialing the inspector server
|
|
|
|
ErrInspectorDial = errs.Class("error dialing inspector server:")
|
|
|
|
|
|
|
|
// ErrRequest is for gRPC request errors after dialing
|
|
|
|
ErrRequest = errs.Class("error processing request:")
|
|
|
|
|
|
|
|
// ErrIdentity is for errors during identity creation for this CLI
|
|
|
|
ErrIdentity = errs.Class("error creating identity:")
|
|
|
|
|
2018-11-21 22:01:09 +00:00
|
|
|
// ErrArgs throws when there are errors with CLI args
|
|
|
|
ErrArgs = errs.Class("error with CLI args:")
|
|
|
|
|
2018-11-21 17:31:27 +00:00
|
|
|
// Commander CLI
|
|
|
|
rootCmd = &cobra.Command{
|
|
|
|
Use: "inspector",
|
|
|
|
Short: "CLI for interacting with Storj Kademlia network",
|
|
|
|
}
|
2018-11-21 22:01:09 +00:00
|
|
|
kadCmd = &cobra.Command{
|
|
|
|
Use: "kad",
|
|
|
|
Short: "commands for kademlia/overlay cache",
|
|
|
|
}
|
|
|
|
statsCmd = &cobra.Command{
|
|
|
|
Use: "statdb",
|
|
|
|
Short: "commands for statdb",
|
|
|
|
}
|
2018-11-21 17:31:27 +00:00
|
|
|
countNodeCmd = &cobra.Command{
|
|
|
|
Use: "count",
|
|
|
|
Short: "count nodes in kademlia and overlay",
|
|
|
|
RunE: CountNodes,
|
|
|
|
}
|
2018-11-27 22:50:52 +00:00
|
|
|
pingNodeCmd = &cobra.Command{
|
2018-11-30 17:36:05 +00:00
|
|
|
Use: "ping <node_id> <ip:port>",
|
2018-11-27 22:50:52 +00:00
|
|
|
Short: "ping node at provided ID",
|
2018-11-30 17:36:05 +00:00
|
|
|
Args: cobra.MinimumNArgs(2),
|
2018-11-27 22:50:52 +00:00
|
|
|
RunE: PingNode,
|
|
|
|
}
|
2018-12-04 21:39:28 +00:00
|
|
|
lookupNodeCmd = &cobra.Command{
|
|
|
|
Use: "lookup <node_id>",
|
|
|
|
Short: "lookup a node by ID only",
|
|
|
|
Args: cobra.MinimumNArgs(1),
|
|
|
|
RunE: LookupNode,
|
|
|
|
}
|
2018-12-07 18:26:33 +00:00
|
|
|
dumpNodesCmd = &cobra.Command{
|
|
|
|
Use: "dump-nodes",
|
|
|
|
Short: "dump all nodes in the routing table",
|
|
|
|
RunE: DumpNodes,
|
|
|
|
}
|
2018-11-21 22:01:09 +00:00
|
|
|
getStatsCmd = &cobra.Command{
|
2018-11-30 17:36:05 +00:00
|
|
|
Use: "getstats <node_id>",
|
2018-11-21 22:01:09 +00:00
|
|
|
Short: "Get node stats",
|
|
|
|
Args: cobra.MinimumNArgs(1),
|
|
|
|
RunE: GetStats,
|
|
|
|
}
|
|
|
|
getCSVStatsCmd = &cobra.Command{
|
2018-11-30 17:36:05 +00:00
|
|
|
Use: "getcsvstats <path to node ID csv file>",
|
2018-11-21 22:01:09 +00:00
|
|
|
Short: "Get node stats from csv",
|
|
|
|
Args: cobra.MinimumNArgs(1),
|
|
|
|
RunE: GetCSVStats,
|
|
|
|
}
|
|
|
|
createStatsCmd = &cobra.Command{
|
2018-11-30 17:36:05 +00:00
|
|
|
// TODO: add args to usage
|
2018-11-21 22:01:09 +00:00
|
|
|
Use: "createstats",
|
|
|
|
Short: "Create node with stats",
|
|
|
|
Args: cobra.MinimumNArgs(5), // id, auditct, auditsuccessct, uptimect, uptimesuccessct
|
|
|
|
RunE: CreateStats,
|
|
|
|
}
|
|
|
|
createCSVStatsCmd = &cobra.Command{
|
2018-11-30 17:36:05 +00:00
|
|
|
// TODO: add args to usage
|
2018-11-21 22:01:09 +00:00
|
|
|
Use: "createcsvstats",
|
|
|
|
Short: "Create node stats from csv",
|
|
|
|
Args: cobra.MinimumNArgs(1),
|
|
|
|
RunE: CreateCSVStats,
|
|
|
|
}
|
2018-11-21 17:31:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Inspector gives access to kademlia and overlay cache
|
|
|
|
type Inspector struct {
|
2019-01-30 20:47:21 +00:00
|
|
|
identity *identity.FullIdentity
|
2019-01-14 18:47:22 +00:00
|
|
|
kadclient pb.KadInspectorClient
|
|
|
|
overlayclient pb.OverlayInspectorClient
|
|
|
|
statdbclient pb.StatDBInspectorClient
|
2018-11-21 17:31:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewInspector creates a new gRPC inspector server for access to kad
|
|
|
|
// and the overlay cache
|
2019-01-18 15:02:35 +00:00
|
|
|
func NewInspector(address, path string) (*Inspector, error) {
|
2018-11-21 17:31:27 +00:00
|
|
|
ctx := context.Background()
|
2019-01-28 22:53:37 +00:00
|
|
|
|
2019-01-25 17:46:09 +00:00
|
|
|
id, err := identity.Config{
|
2019-01-28 22:53:37 +00:00
|
|
|
CertPath: fmt.Sprintf("%s/identity.cert", path),
|
|
|
|
KeyPath: fmt.Sprintf("%s/identity.key", path),
|
2019-01-18 15:02:35 +00:00
|
|
|
}.Load()
|
|
|
|
|
2018-11-21 17:31:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return &Inspector{}, ErrIdentity.Wrap(err)
|
|
|
|
}
|
|
|
|
|
2019-01-25 17:46:09 +00:00
|
|
|
tc := transport.NewClient(id)
|
2018-11-21 17:31:27 +00:00
|
|
|
conn, err := tc.DialAddress(ctx, address)
|
|
|
|
if err != nil {
|
|
|
|
return &Inspector{}, ErrInspectorDial.Wrap(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Inspector{
|
2019-01-25 17:46:09 +00:00
|
|
|
identity: id,
|
2019-01-14 18:47:22 +00:00
|
|
|
kadclient: pb.NewKadInspectorClient(conn),
|
|
|
|
overlayclient: pb.NewOverlayInspectorClient(conn),
|
|
|
|
statdbclient: pb.NewStatDBInspectorClient(conn),
|
2018-11-21 17:31:27 +00:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2019-01-16 19:44:26 +00:00
|
|
|
// CountNodes returns the number of nodes in kademlia
|
2018-11-21 17:31:27 +00:00
|
|
|
func CountNodes(cmd *cobra.Command, args []string) (err error) {
|
2019-01-18 15:02:35 +00:00
|
|
|
i, err := NewInspector(*Addr, *IdentityPath)
|
2018-11-21 17:31:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return ErrInspectorDial.Wrap(err)
|
|
|
|
}
|
|
|
|
|
2019-01-14 18:47:22 +00:00
|
|
|
kadcount, err := i.kadclient.CountNodes(context.Background(), &pb.CountNodesRequest{})
|
|
|
|
if err != nil {
|
|
|
|
return ErrRequest.Wrap(err)
|
|
|
|
}
|
2018-11-21 17:31:27 +00:00
|
|
|
|
2019-01-16 19:44:26 +00:00
|
|
|
fmt.Printf("Kademlia node count: %+v\n", kadcount.Count)
|
2018-11-21 17:31:27 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-12-04 21:39:28 +00:00
|
|
|
// LookupNode starts a Kademlia lookup for the provided Node ID
|
|
|
|
func LookupNode(cmd *cobra.Command, args []string) (err error) {
|
2019-01-18 15:02:35 +00:00
|
|
|
i, err := NewInspector(*Addr, *IdentityPath)
|
2018-12-04 21:39:28 +00:00
|
|
|
if err != nil {
|
|
|
|
return ErrInspectorDial.Wrap(err)
|
|
|
|
}
|
|
|
|
|
2019-01-14 18:47:22 +00:00
|
|
|
n, err := i.kadclient.LookupNode(context.Background(), &pb.LookupNodeRequest{
|
2018-12-04 21:39:28 +00:00
|
|
|
Id: args[0],
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return ErrRequest.Wrap(err)
|
|
|
|
}
|
|
|
|
|
2019-01-16 20:40:30 +00:00
|
|
|
fmt.Println(prettyPrint(n))
|
2018-12-04 21:39:28 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-12-07 18:26:33 +00:00
|
|
|
// DumpNodes outputs a json list of every node in every bucket in the satellite
|
|
|
|
func DumpNodes(cmd *cobra.Command, args []string) (err error) {
|
2019-01-18 15:02:35 +00:00
|
|
|
i, err := NewInspector(*Addr, *IdentityPath)
|
2018-12-07 18:26:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return ErrInspectorDial.Wrap(err)
|
|
|
|
}
|
|
|
|
|
2019-01-28 22:53:37 +00:00
|
|
|
nodes, err := i.kadclient.FindNear(context.Background(), &pb.FindNearRequest{
|
|
|
|
Start: storj.NodeID{},
|
|
|
|
Limit: 100000,
|
|
|
|
})
|
2018-12-07 18:26:33 +00:00
|
|
|
if err != nil {
|
2019-01-28 22:53:37 +00:00
|
|
|
return err
|
2018-12-07 18:26:33 +00:00
|
|
|
}
|
|
|
|
|
2019-01-28 22:53:37 +00:00
|
|
|
fmt.Println(prettyPrint(nodes))
|
2018-12-07 18:26:33 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-01-16 20:40:30 +00:00
|
|
|
func prettyPrint(unformatted proto.Message) string {
|
|
|
|
m := jsonpb.Marshaler{Indent: " ", EmitDefaults: true}
|
|
|
|
formatted, err := m.MarshalToString(unformatted)
|
2018-11-30 17:36:05 +00:00
|
|
|
if err != nil {
|
2019-01-16 20:40:30 +00:00
|
|
|
fmt.Println("Error", err)
|
|
|
|
os.Exit(1)
|
2018-11-30 17:36:05 +00:00
|
|
|
}
|
2019-01-16 20:40:30 +00:00
|
|
|
return formatted
|
2018-11-30 17:36:05 +00:00
|
|
|
}
|
|
|
|
|
2018-11-27 22:50:52 +00:00
|
|
|
// PingNode sends a PING RPC across the Kad network to check node availability
|
|
|
|
func PingNode(cmd *cobra.Command, args []string) (err error) {
|
2018-11-29 18:39:27 +00:00
|
|
|
nodeID, err := storj.NodeIDFromString(args[0])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-11-27 22:50:52 +00:00
|
|
|
|
2019-01-18 15:02:35 +00:00
|
|
|
i, err := NewInspector(*Addr, *IdentityPath)
|
2018-11-27 22:50:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return ErrInspectorDial.Wrap(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("Pinging node %s at %s", args[0], args[1])
|
|
|
|
|
2019-01-14 18:47:22 +00:00
|
|
|
p, err := i.kadclient.PingNode(context.Background(), &pb.PingNodeRequest{
|
2018-11-29 18:39:27 +00:00
|
|
|
Id: nodeID,
|
2018-11-27 22:50:52 +00:00
|
|
|
Address: args[1],
|
|
|
|
})
|
|
|
|
|
2018-11-30 17:36:05 +00:00
|
|
|
var okayString string
|
2019-01-17 21:14:34 +00:00
|
|
|
if p != nil && p.Ok {
|
2018-11-30 17:36:05 +00:00
|
|
|
okayString = "OK"
|
|
|
|
} else {
|
|
|
|
okayString = "Error"
|
|
|
|
}
|
|
|
|
fmt.Printf("\n -- Ping response: %s\n", okayString)
|
|
|
|
if err != nil {
|
2019-01-17 21:14:34 +00:00
|
|
|
fmt.Printf(" -- Error: %v\n", err)
|
2018-11-30 17:36:05 +00:00
|
|
|
}
|
2018-11-27 22:50:52 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-11-21 22:01:09 +00:00
|
|
|
// GetStats gets a node's stats from statdb
|
|
|
|
func GetStats(cmd *cobra.Command, args []string) (err error) {
|
2019-01-18 15:02:35 +00:00
|
|
|
i, err := NewInspector(*Addr, *IdentityPath)
|
2018-11-21 22:01:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return ErrInspectorDial.Wrap(err)
|
|
|
|
}
|
|
|
|
|
2018-11-29 18:39:27 +00:00
|
|
|
nodeID, err := storj.NodeIDFromString(args[0])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-11-21 22:01:09 +00:00
|
|
|
|
2019-01-14 18:47:22 +00:00
|
|
|
res, err := i.statdbclient.GetStats(context.Background(), &pb.GetStatsRequest{
|
2018-11-29 18:39:27 +00:00
|
|
|
NodeId: nodeID,
|
2018-11-21 22:01:09 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return ErrRequest.Wrap(err)
|
|
|
|
}
|
|
|
|
|
2018-11-29 18:39:27 +00:00
|
|
|
fmt.Printf("Stats for ID %s:\n", nodeID)
|
2018-12-04 18:47:58 +00:00
|
|
|
fmt.Printf("AuditSuccessRatio: %f, AuditCount: %d, UptimeRatio: %f, UptimeCount: %d,\n",
|
|
|
|
res.AuditRatio, res.AuditCount, res.UptimeRatio, res.UptimeCount)
|
2018-11-21 22:01:09 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetCSVStats gets node stats from statdb based on a csv
|
|
|
|
func GetCSVStats(cmd *cobra.Command, args []string) (err error) {
|
2019-01-18 15:02:35 +00:00
|
|
|
i, err := NewInspector(*Addr, *IdentityPath)
|
2018-11-21 22:01:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return ErrInspectorDial.Wrap(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// get csv
|
|
|
|
csvPath := args[0]
|
|
|
|
csvFile, _ := os.Open(csvPath)
|
|
|
|
reader := csv.NewReader(bufio.NewReader(csvFile))
|
|
|
|
for {
|
|
|
|
line, err := reader.Read()
|
|
|
|
if err == io.EOF {
|
|
|
|
break
|
|
|
|
} else if err != nil {
|
|
|
|
return ErrArgs.Wrap(err)
|
|
|
|
}
|
|
|
|
|
2018-11-29 18:39:27 +00:00
|
|
|
nodeID, err := storj.NodeIDFromString(line[0])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-01-14 18:47:22 +00:00
|
|
|
res, err := i.statdbclient.GetStats(context.Background(), &pb.GetStatsRequest{
|
2018-11-29 18:39:27 +00:00
|
|
|
NodeId: nodeID,
|
2018-11-21 22:01:09 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return ErrRequest.Wrap(err)
|
|
|
|
}
|
|
|
|
|
2018-11-29 18:39:27 +00:00
|
|
|
fmt.Printf("Stats for ID %s:\n", nodeID)
|
2018-12-04 18:47:58 +00:00
|
|
|
fmt.Printf("AuditSuccessRatio: %f, AuditCount: %d, UptimeRatio: %f, UptimeCount: %d,\n",
|
|
|
|
res.AuditRatio, res.AuditCount, res.UptimeRatio, res.UptimeCount)
|
2018-11-21 22:01:09 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateStats creates a node with stats in statdb
|
|
|
|
func CreateStats(cmd *cobra.Command, args []string) (err error) {
|
2019-01-18 15:02:35 +00:00
|
|
|
i, err := NewInspector(*Addr, *IdentityPath)
|
2018-11-21 22:01:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return ErrInspectorDial.Wrap(err)
|
|
|
|
}
|
|
|
|
|
2018-11-29 18:39:27 +00:00
|
|
|
nodeID, err := storj.NodeIDFromString(args[0])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-11-21 22:01:09 +00:00
|
|
|
auditCount, err := strconv.ParseInt(args[1], 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return ErrArgs.New("audit count must be an int")
|
|
|
|
}
|
|
|
|
auditSuccessCount, err := strconv.ParseInt(args[2], 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return ErrArgs.New("audit success count must be an int")
|
|
|
|
}
|
|
|
|
uptimeCount, err := strconv.ParseInt(args[3], 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return ErrArgs.New("uptime count must be an int")
|
|
|
|
}
|
|
|
|
uptimeSuccessCount, err := strconv.ParseInt(args[4], 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return ErrArgs.New("uptime success count must be an int")
|
|
|
|
}
|
|
|
|
|
2019-01-14 18:47:22 +00:00
|
|
|
_, err = i.statdbclient.CreateStats(context.Background(), &pb.CreateStatsRequest{
|
2018-11-29 18:39:27 +00:00
|
|
|
NodeId: nodeID,
|
2018-11-21 22:01:09 +00:00
|
|
|
AuditCount: auditCount,
|
|
|
|
AuditSuccessCount: auditSuccessCount,
|
|
|
|
UptimeCount: uptimeCount,
|
|
|
|
UptimeSuccessCount: uptimeSuccessCount,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return ErrRequest.Wrap(err)
|
|
|
|
}
|
|
|
|
|
2018-11-29 18:39:27 +00:00
|
|
|
fmt.Printf("Created statdb entry for ID %s\n", nodeID)
|
2018-11-21 22:01:09 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateCSVStats creates node with stats in statdb based on a CSV
|
|
|
|
func CreateCSVStats(cmd *cobra.Command, args []string) (err error) {
|
2019-01-18 15:02:35 +00:00
|
|
|
i, err := NewInspector(*Addr, *IdentityPath)
|
2018-11-21 22:01:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return ErrInspectorDial.Wrap(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// get csv
|
|
|
|
csvPath := args[0]
|
|
|
|
csvFile, _ := os.Open(csvPath)
|
|
|
|
reader := csv.NewReader(bufio.NewReader(csvFile))
|
|
|
|
for {
|
|
|
|
line, err := reader.Read()
|
|
|
|
if err == io.EOF {
|
|
|
|
break
|
|
|
|
} else if err != nil {
|
|
|
|
return ErrArgs.Wrap(err)
|
|
|
|
}
|
|
|
|
|
2018-11-29 18:39:27 +00:00
|
|
|
nodeID, err := storj.NodeIDFromString(line[0])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-11-21 22:01:09 +00:00
|
|
|
auditCount, err := strconv.ParseInt(line[1], 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return ErrArgs.New("audit count must be an int")
|
|
|
|
}
|
|
|
|
auditSuccessCount, err := strconv.ParseInt(line[2], 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return ErrArgs.New("audit success count must be an int")
|
|
|
|
}
|
|
|
|
uptimeCount, err := strconv.ParseInt(line[3], 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return ErrArgs.New("uptime count must be an int")
|
|
|
|
}
|
|
|
|
uptimeSuccessCount, err := strconv.ParseInt(line[4], 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return ErrArgs.New("uptime success count must be an int")
|
|
|
|
}
|
|
|
|
|
2019-01-14 18:47:22 +00:00
|
|
|
_, err = i.statdbclient.CreateStats(context.Background(), &pb.CreateStatsRequest{
|
2018-11-29 18:39:27 +00:00
|
|
|
NodeId: nodeID,
|
2018-11-21 22:01:09 +00:00
|
|
|
AuditCount: auditCount,
|
|
|
|
AuditSuccessCount: auditSuccessCount,
|
|
|
|
UptimeCount: uptimeCount,
|
|
|
|
UptimeSuccessCount: uptimeSuccessCount,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return ErrRequest.Wrap(err)
|
|
|
|
}
|
|
|
|
|
2018-11-29 18:39:27 +00:00
|
|
|
fmt.Printf("Created statdb entry for ID %s\n", nodeID)
|
2018-11-21 22:01:09 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-11-21 17:31:27 +00:00
|
|
|
func init() {
|
2018-11-21 22:01:09 +00:00
|
|
|
rootCmd.AddCommand(kadCmd)
|
|
|
|
rootCmd.AddCommand(statsCmd)
|
|
|
|
|
|
|
|
kadCmd.AddCommand(countNodeCmd)
|
2018-11-27 22:50:52 +00:00
|
|
|
kadCmd.AddCommand(pingNodeCmd)
|
2018-12-04 21:39:28 +00:00
|
|
|
kadCmd.AddCommand(lookupNodeCmd)
|
2018-12-07 18:26:33 +00:00
|
|
|
kadCmd.AddCommand(dumpNodesCmd)
|
2018-11-21 22:01:09 +00:00
|
|
|
|
|
|
|
statsCmd.AddCommand(getStatsCmd)
|
|
|
|
statsCmd.AddCommand(getCSVStatsCmd)
|
|
|
|
statsCmd.AddCommand(createStatsCmd)
|
|
|
|
statsCmd.AddCommand(createCSVStatsCmd)
|
|
|
|
|
2018-11-21 17:31:27 +00:00
|
|
|
flag.Parse()
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
process.Exec(rootCmd)
|
|
|
|
}
|