提交 96f21587 编写于 作者: Y yangrui07

remove useless func

上级 f6718972
...@@ -17,9 +17,6 @@ package agent ...@@ -17,9 +17,6 @@ package agent
import ( import (
"errors" "errors"
_ "github.com/Badangel/logex" _ "github.com/Badangel/logex"
"github.com/Badangel/pipeline"
"os/exec"
"strconv"
"strings" "strings"
"sync" "sync"
) )
...@@ -89,26 +86,3 @@ func GetMaster(master string) (host, port string, err error) { ...@@ -89,26 +86,3 @@ func GetMaster(master string) (host, port string, err error) {
return MasterHost[0], MasterPort[0], nil return MasterHost[0], MasterPort[0], nil
} }
} }
func init() {
dfCmd := "df -h | grep -E '/home|/ssd'"
stdout, _, err := pipeline.Run(exec.Command("/bin/bash", "-c", dfCmd))
if err == nil && stdout.String() != "" {
t := strings.TrimSpace(stdout.String())
diskLi := strings.Split(t, "\n")
for _, diskStr := range diskLi {
disk := strings.Fields(diskStr)
usedPercent, _ := strconv.Atoi(strings.TrimRight(disk[4], "%"))
if usedPercent <= 40 {
disks = append(disks, disk[5])
}
}
}
if len(disks) == 0 {
disks = append(disks, "/home")
}
//logex.Debugf("available disks found: (%+v)", disks)
}
...@@ -132,7 +132,7 @@ func getHostname(ip string) (hostname string, err error) { ...@@ -132,7 +132,7 @@ func getHostname(ip string) (hostname string, err error) {
//logex.Warningf("cannot find the hostname of ip (%s), error (%v)", ip, err) //logex.Warningf("cannot find the hostname of ip (%s), error (%v)", ip, err)
} else { } else {
if len(hostnames) > 0 { if len(hostnames) > 0 {
hostname = hostnames[0][:strings.LastIndex(hostnames[0], ".baidu.com.")] hostname = hostnames[0]
} else { } else {
hostname = ip hostname = ip
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册