forked from flashcatcloud/categraf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetstat.go
80 lines (67 loc) · 1.66 KB
/
netstat.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package netstat
import (
"log"
"syscall"
"flashcat.cloud/categraf/config"
"flashcat.cloud/categraf/inputs"
"flashcat.cloud/categraf/inputs/system"
"github.com/toolkits/pkg/container/list"
)
const inputName = "netstat"
type NetStats struct {
ps system.PS
config.Interval
}
func init() {
ps := system.NewSystemPS()
inputs.Add(inputName, func() inputs.Input {
return &NetStats{
ps: ps,
}
})
}
func (s *NetStats) Prefix() string {
return inputName
}
func (s *NetStats) Drop() {}
func (s *NetStats) Init() error {
return nil
}
func (s *NetStats) Gather(slist *list.SafeList) {
netconns, err := s.ps.NetConnections()
if err != nil {
log.Println("E! failed to get net connections:", err)
return
}
counts := make(map[string]int)
counts["UDP"] = 0
// TODO: add family to tags or else
tags := map[string]string{}
for _, netcon := range netconns {
if netcon.Type == syscall.SOCK_DGRAM {
counts["UDP"]++
continue // UDP has no status
}
c, ok := counts[netcon.Status]
if !ok {
counts[netcon.Status] = 0
}
counts[netcon.Status] = c + 1
}
fields := map[string]interface{}{
"tcp_established": counts["ESTABLISHED"],
"tcp_syn_sent": counts["SYN_SENT"],
"tcp_syn_recv": counts["SYN_RECV"],
"tcp_fin_wait1": counts["FIN_WAIT1"],
"tcp_fin_wait2": counts["FIN_WAIT2"],
"tcp_time_wait": counts["TIME_WAIT"],
"tcp_close": counts["CLOSE"],
"tcp_close_wait": counts["CLOSE_WAIT"],
"tcp_last_ack": counts["LAST_ACK"],
"tcp_listen": counts["LISTEN"],
"tcp_closing": counts["CLOSING"],
"tcp_none": counts["NONE"],
"udp_socket": counts["UDP"],
}
inputs.PushSamples(slist, fields, tags)
}