forked from digitalocean/do-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetdev.go
128 lines (112 loc) · 3.55 KB
/
netdev.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
// Copyright 2016 DigitalOcean
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package procfs
import (
"bufio"
"errors"
"fmt"
"io"
"os"
"strconv"
"strings"
)
const networkPathSuffix = "net/dev"
// Network contains the data exposed by the /proc/net/dev psudo-file
// system file.
type Network struct {
Interface string
RXBytes uint64
RXPackets uint64
RXErrs uint64
RXDrop uint64
RXFifo uint64
RXFrame uint64
RXCompressed uint64
RXMulticast uint64
TXBytes uint64
TXPackets uint64
TXErrs uint64
TXDrop uint64
TXFifo uint64
TXColls uint64
TXCarrier uint64
TXCompressed uint64
}
// Networker is a collection of network metrics exposed by the
// procfs.
type Networker interface {
NewNetwork() ([]Network, error)
}
// networkPath returns the relative procfs location.
func networkPath() string {
return fmt.Sprintf("%s/%s", ProcPath, networkPathSuffix)
}
// NewNetwork collects data from the /proc/net/dev pseudo-file system
// file and converts it into a Network struct.
func NewNetwork() ([]Network, error) {
f, err := os.Open(networkPath())
if err != nil {
err = fmt.Errorf("Unable to collect network metrics from %s - error: %s", networkPath(), err)
return []Network{}, err
}
defer f.Close()
return readNetwork(f)
}
func readNetwork(f io.Reader) ([]Network, error) {
scanner := bufio.NewScanner(f)
var networks []Network
//Ignore the first two lines
scanner.Scan()
scanner.Scan()
for scanner.Scan() {
line := scanner.Text()
network, err := parseNetwork(line)
if err != nil {
return []Network{}, err
}
networks = append(networks, network)
}
return networks, nil
}
// parseNetwork parses a string and returns a Network if the string is
// in the expected format.
func parseNetwork(line string) (Network, error) {
fields := strings.FieldsFunc(line, func(c rune) bool {
cStr := string(c)
return cStr == " " || cStr == ":"
})
if len(fields) != 17 {
return Network{}, errors.New("Field mismatch error while parsing: " + networkPath())
}
network := Network{}
network.Interface = fields[0]
network.RXBytes, _ = strconv.ParseUint(fields[1], 10, 64)
network.RXPackets, _ = strconv.ParseUint(fields[2], 10, 64)
network.RXErrs, _ = strconv.ParseUint(fields[3], 10, 64)
network.RXDrop, _ = strconv.ParseUint(fields[4], 10, 64)
network.RXFifo, _ = strconv.ParseUint(fields[5], 10, 64)
network.RXFrame, _ = strconv.ParseUint(fields[6], 10, 64)
network.RXCompressed, _ = strconv.ParseUint(fields[7], 10, 64)
network.RXMulticast, _ = strconv.ParseUint(fields[8], 10, 64)
network.TXBytes, _ = strconv.ParseUint(fields[9], 10, 64)
network.TXPackets, _ = strconv.ParseUint(fields[10], 10, 64)
network.TXErrs, _ = strconv.ParseUint(fields[11], 10, 64)
network.TXDrop, _ = strconv.ParseUint(fields[12], 10, 64)
network.TXFifo, _ = strconv.ParseUint(fields[13], 10, 64)
network.TXColls, _ = strconv.ParseUint(fields[14], 10, 64)
network.TXCarrier, _ = strconv.ParseUint(fields[15], 10, 64)
network.TXCompressed, _ = strconv.ParseUint(fields[16], 10, 64)
return network, nil
}