-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhost.go
59 lines (51 loc) · 1.16 KB
/
host.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* Created with IntelliJ IDEA.
* User: luosangnanka
* Date: 13-8-8
* Time: 上午9:47
* To change this template use File | Settings | File Templates.
*/
package info
import (
"io/ioutil"
"os"
"time"
)
// 服务器主机名、启动时间以及运行时间
type HostName struct {
Name string
Boot time.Time
Uptime string
}
func (h *HostName) Host2String() string {
return h.Name + ":" + h.Boot.Format(TimeFarmat) + ":" + h.Uptime
}
// 读取/proc/uptime, 第一数值即为系统运行时间, 单位为(s)
func (a *Agent) HostName() (*HostName, error) {
b, err := ioutil.ReadFile(gUptime)
if err != nil {
a.Log.Println("ReadFile /proc/uptime:", err.Error())
}
for i := 0; i < len(b); i++ {
if b[i] == ' ' {
b = b[0:i]
break
}
}
t := string(b) + "s"
// 获得已经运行时间
d, err := time.ParseDuration(t)
if err != nil {
a.Log.Println("time.ParseDuration:", err.Error())
return nil, err
}
// 获得登陆时间
boot := time.Now().Add(-d)
// 获得主机名
hostname, err := os.Hostname()
if err != nil {
a.Log.Println("hostname:", err.Error())
return nil, err
}
return &HostName{hostname, boot, d.String()}, nil
}