Airat Arifullin
aa9f8dce3d
All checks were successful
Vulncheck / Vulncheck (pull_request) Successful in 1m28s
DCO action / DCO (pull_request) Successful in 2m25s
Build / Build Components (1.21) (pull_request) Successful in 4m14s
Tests and linters / Staticcheck (pull_request) Successful in 4m24s
Tests and linters / Tests (1.21) (pull_request) Successful in 4m34s
Tests and linters / Lint (pull_request) Successful in 5m28s
Tests and linters / Tests (1.20) (pull_request) Successful in 7m46s
Tests and linters / Tests with -race (pull_request) Successful in 8m10s
Build / Build Components (1.20) (pull_request) Successful in 9m1s
Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
72 lines
1.9 KiB
Go
72 lines
1.9 KiB
Go
package netmap
|
|
|
|
import (
|
|
"encoding/hex"
|
|
|
|
internalclient "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/internal/client"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/internal/common"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/internal/commonflags"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/internal/key"
|
|
commonCmd "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/internal/common"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/netmap"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
const nodeInfoJSONFlag = commonflags.JSON
|
|
|
|
var nodeInfoCmd = &cobra.Command{
|
|
Use: "nodeinfo",
|
|
Short: "Get target node info",
|
|
Long: `Get target node info`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
p := key.GetOrGenerate(cmd)
|
|
cli := internalclient.GetSDKClientByFlag(cmd, p, commonflags.RPC)
|
|
|
|
prm := internalclient.NodeInfoPrm{
|
|
Client: cli,
|
|
}
|
|
|
|
res, err := internalclient.NodeInfo(cmd.Context(), prm)
|
|
commonCmd.ExitOnErr(cmd, "rpc error: %w", err)
|
|
|
|
prettyPrintNodeInfo(cmd, res.NodeInfo())
|
|
},
|
|
}
|
|
|
|
func initNodeInfoCmd() {
|
|
commonflags.Init(nodeInfoCmd)
|
|
commonflags.InitAPI(nodeInfoCmd)
|
|
nodeInfoCmd.Flags().Bool(nodeInfoJSONFlag, false, "Print node info in JSON format")
|
|
}
|
|
|
|
func prettyPrintNodeInfo(cmd *cobra.Command, i netmap.NodeInfo) {
|
|
isJSON, _ := cmd.Flags().GetBool(nodeInfoJSONFlag)
|
|
if isJSON {
|
|
common.PrettyPrintJSON(cmd, i, "node info")
|
|
return
|
|
}
|
|
|
|
cmd.Println("key:", hex.EncodeToString(i.PublicKey()))
|
|
|
|
var stateWord string
|
|
switch {
|
|
default:
|
|
stateWord = "<undefined>"
|
|
case i.IsOnline():
|
|
stateWord = "online"
|
|
case i.IsOffline():
|
|
stateWord = "offline"
|
|
case i.IsMaintenance():
|
|
stateWord = "maintenance"
|
|
}
|
|
|
|
cmd.Println("state:", stateWord)
|
|
|
|
netmap.IterateNetworkEndpoints(i, func(s string) {
|
|
cmd.Println("address:", s)
|
|
})
|
|
|
|
i.IterateAttributes(func(key, value string) {
|
|
cmd.Printf("attribute: %s=%s\n", key, value)
|
|
})
|
|
}
|