forked from influxdata/telegraf
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathnet.go
179 lines (152 loc) · 4.09 KB
/
net.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
package net
import (
"fmt"
"net"
"strings"
"time"
"github.com/influxdata/telegraf"
"github.com/influxdata/telegraf/filter"
"github.com/influxdata/telegraf/plugins/inputs"
"github.com/influxdata/telegraf/plugins/inputs/system"
gnet "github.com/shirou/gopsutil/net"
)
type NetIOStats struct {
filter filter.Filter
ignoreFilter filter.Filter
ps system.PS
skipChecks bool
IgnoreProtocolStats bool
Interfaces []string
IgnoreInterfaces []string `toml:"ignore_interfaces"`
lastIOStat map[string]gnet.IOCountersStat
lastTimestamp time.Time
}
func (_ *NetIOStats) Description() string {
return "Read metrics about network interface usage"
}
var netSampleConfig = `
## By default, telegraf gathers stats from any up interface (excluding loopback)
## Setting interfaces will tell it to gather these explicit interfaces,
## regardless of status.
##
# interfaces = ["eth0"]
##
## On linux systems telegraf also collects protocol stats.
## Setting ignore_protocol_stats to true will skip reporting of protocol metrics.
##
# ignore_protocol_stats = false
##
`
func (_ *NetIOStats) SampleConfig() string {
return netSampleConfig
}
func (s *NetIOStats) Gather(acc telegraf.Accumulator) error {
netio, err := s.ps.NetIO()
if err != nil {
return fmt.Errorf("error getting net io info: %s", err)
}
if s.filter == nil {
if s.filter, err = filter.Compile(s.Interfaces); err != nil {
return fmt.Errorf("error compiling filter: %s", err)
}
}
if s.ignoreFilter == nil {
if s.ignoreFilter, err = filter.Compile(s.IgnoreInterfaces); err != nil {
return fmt.Errorf("error compiling ignore filter: %s", err)
}
}
now := time.Now()
var seconds float64 = 0
lastIOStat := make(map[string]gnet.IOCountersStat)
if s.lastIOStat != nil {
seconds = now.Sub(s.lastTimestamp).Seconds()
}
for _, io := range netio {
if len(s.Interfaces) != 0 {
var found bool
if s.filter.Match(io.Name) {
found = true
}
if !found {
continue
}
} else if !s.skipChecks {
iface, err := net.InterfaceByName(io.Name)
if err != nil {
continue
}
if iface.Flags&net.FlagLoopback == net.FlagLoopback {
continue
}
if iface.Flags&net.FlagUp == 0 {
continue
}
}
if len(s.IgnoreInterfaces) != 0 {
var found bool
if s.ignoreFilter.Match(io.Name) {
found = true
}
if found {
continue
}
}
tags := map[string]string{
"interface": io.Name,
}
fields := map[string]interface{}{
"bytes_sent": io.BytesSent,
"bytes_recv": io.BytesRecv,
"packets_sent": io.PacketsSent,
"packets_recv": io.PacketsRecv,
"err_in": io.Errin,
"err_out": io.Errout,
"drop_in": io.Dropin,
"drop_out": io.Dropout,
}
lastIOStat[io.Name] = gnet.IOCountersStat{
BytesRecv: io.BytesRecv,
BytesSent: io.BytesSent,
PacketsSent: io.PacketsSent,
PacketsRecv: io.PacketsRecv,
}
if seconds > 0 {
if stat, ok := s.lastIOStat[io.Name]; ok {
sendRate := float64(io.BytesSent-stat.BytesSent) / seconds
fields["send_rate"] = sendRate
recvRate := float64(io.BytesRecv-stat.BytesRecv) / seconds
fields["recv_rate"] = recvRate
pkgSendRate := float64(io.PacketsSent-stat.PacketsSent) / seconds
fields["pkg_send_rate"] = pkgSendRate
pkgRecvRate := float64(io.PacketsRecv-stat.PacketsRecv) / seconds
fields["pkg_recv_rate"] = pkgRecvRate
}
}
acc.AddCounter("net", fields, tags)
}
s.lastIOStat = lastIOStat
s.lastTimestamp = now
// Get system wide stats for different network protocols
// (ignore these stats if the call fails)
if !s.IgnoreProtocolStats {
netprotos, _ := s.ps.NetProto()
fields := make(map[string]interface{})
for _, proto := range netprotos {
for stat, value := range proto.Stats {
name := fmt.Sprintf("%s_%s", strings.ToLower(proto.Protocol),
strings.ToLower(stat))
fields[name] = value
}
}
tags := map[string]string{
"interface": "all",
}
acc.AddFields("net", fields, tags)
}
return nil
}
func init() {
inputs.Add("net", func() telegraf.Input {
return &NetIOStats{ps: system.NewSystemPS()}
})
}