-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtcp.go
56 lines (51 loc) · 1.21 KB
/
tcp.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
/**
* Created with IntelliJ IDEA.
* User: luosangnanka
* Date: 13-8-9
* Time: 下午2:59
* To change this template use File | Settings | File Templates.
*/
package info
import (
f "fmt"
"io/ioutil"
"strings"
)
// 通过读取/proc/net/snmp 获取tcp信息
type Tcp struct {
ActiveOpens string
PassiveOpens string
InSegs string
OutSegs string
RetransSegs string
}
func (t *Tcp) Tcp2String() string {
return f.Sprintf("ActiveOpens\tPassiveOpens\tInSegs\tOutSegs\tRetransSegs\n%d\t%d\t%d\t%d\t%d\n", t.ActiveOpens, t.PassiveOpens, t.InSegs, t.OutSegs, t.RetransSegs)
}
func (a *Agent) Tcp() (*Tcp, error) {
var i int = 0
var tcpAll = new(Tcp)
b, err := ioutil.ReadFile(gTcp)
if err != nil {
a.Log.Println("read /proc/net/snmp:", err.Error())
return nil, err
}
s := strings.SplitAfter(string(b), "\n")
for _, tcp := range s {
if len(tcp) == 0 {
continue
}
if strings.HasPrefix(tcp, "Tcp") {
if i == 1 {
tcp = strings.TrimSpace(tcp)
tcp = strings.Trim(tcp, "Tcp: ")
t := strings.Fields(tcp)
tcpAll = &Tcp{ActiveOpens: t[4], PassiveOpens: t[5], InSegs: t[9], OutSegs: t[10], RetransSegs: t[11]}
}
i++
} else {
tcpAll = &Tcp{}
}
}
return tcpAll, nil
}