mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-07 17:28:02 +08:00
Some checks failed
CodeQL / codeql (push) Has been cancelled
Docker Check / lint (push) Has been cancelled
Docker Check / build (push) Has been cancelled
Gateway Conformance / gateway-conformance (push) Has been cancelled
Gateway Conformance / gateway-conformance-libp2p-experiment (push) Has been cancelled
Go Build / go-build (push) Has been cancelled
Go Check / go-check (push) Has been cancelled
Go Lint / go-lint (push) Has been cancelled
Go Test / go-test (push) Has been cancelled
Interop / interop-prep (push) Has been cancelled
Sharness / sharness-test (push) Has been cancelled
Spell Check / spellcheck (push) Has been cancelled
Interop / helia-interop (push) Has been cancelled
Interop / ipfs-webui (push) Has been cancelled
Replaces #8964 Closes #8848
142 lines
2.8 KiB
Go
142 lines
2.8 KiB
Go
package commands
|
|
|
|
import (
|
|
"os"
|
|
"runtime"
|
|
|
|
"github.com/ipfs/go-ipfs-cmds"
|
|
version "github.com/ipfs/kubo"
|
|
"github.com/ipfs/kubo/config"
|
|
"github.com/ipfs/kubo/core"
|
|
cmdenv "github.com/ipfs/kubo/core/commands/cmdenv"
|
|
manet "github.com/multiformats/go-multiaddr/net"
|
|
sysi "github.com/whyrusleeping/go-sysinfo"
|
|
)
|
|
|
|
var sysDiagCmd = &cmds.Command{
|
|
Helptext: cmds.HelpText{
|
|
Tagline: "Print system diagnostic information.",
|
|
ShortDescription: `
|
|
Prints out information about your computer to aid in easier debugging.
|
|
`,
|
|
},
|
|
Run: func(req *cmds.Request, res cmds.ResponseEmitter, env cmds.Environment) error {
|
|
nd, err := cmdenv.GetNode(env)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
info, err := getInfo(nd)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return cmds.EmitOnce(res, info)
|
|
},
|
|
}
|
|
|
|
func getInfo(nd *core.IpfsNode) (map[string]interface{}, error) {
|
|
info := make(map[string]interface{})
|
|
err := runtimeInfo(info)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = envVarInfo(info)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = diskSpaceInfo(info)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = memInfo(info)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = netInfo(nd.IsOnline, info)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
info["ipfs_version"] = version.CurrentVersionNumber
|
|
info["ipfs_commit"] = version.CurrentCommit
|
|
return info, nil
|
|
}
|
|
|
|
func runtimeInfo(out map[string]interface{}) error {
|
|
rt := make(map[string]interface{})
|
|
rt["os"] = runtime.GOOS
|
|
rt["arch"] = runtime.GOARCH
|
|
rt["compiler"] = runtime.Compiler
|
|
rt["version"] = runtime.Version()
|
|
rt["numcpu"] = runtime.NumCPU()
|
|
rt["gomaxprocs"] = runtime.GOMAXPROCS(0)
|
|
rt["numgoroutines"] = runtime.NumGoroutine()
|
|
|
|
out["runtime"] = rt
|
|
return nil
|
|
}
|
|
|
|
func envVarInfo(out map[string]interface{}) error {
|
|
ev := make(map[string]interface{})
|
|
ev["GOPATH"] = os.Getenv("GOPATH")
|
|
ev[config.EnvDir] = os.Getenv(config.EnvDir)
|
|
|
|
out["environment"] = ev
|
|
return nil
|
|
}
|
|
|
|
func diskSpaceInfo(out map[string]interface{}) error {
|
|
pathRoot, err := config.PathRoot()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
dinfo, err := sysi.DiskUsage(pathRoot)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
out["diskinfo"] = map[string]interface{}{
|
|
"fstype": dinfo.FsType,
|
|
"total_space": dinfo.Total,
|
|
"free_space": dinfo.Free,
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func memInfo(out map[string]interface{}) error {
|
|
m := make(map[string]interface{})
|
|
|
|
meminf, err := sysi.MemoryInfo()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
m["swap"] = meminf.Swap
|
|
m["virt"] = meminf.Used
|
|
out["memory"] = m
|
|
return nil
|
|
}
|
|
|
|
func netInfo(online bool, out map[string]interface{}) error {
|
|
n := make(map[string]interface{})
|
|
addrs, err := manet.InterfaceMultiaddrs()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
straddrs := make([]string, len(addrs))
|
|
for i, a := range addrs {
|
|
straddrs[i] = a.String()
|
|
}
|
|
|
|
n["interface_addresses"] = straddrs
|
|
n["online"] = online
|
|
out["net"] = n
|
|
return nil
|
|
}
|