Add collector for /proc/net/tcp

This commit is contained in:
KOJIMA Kazunori 2015-03-24 20:34:48 +09:00
commit e4da771b21
4 changed files with 181 additions and 0 deletions

27
collector/tcpstat_test.go Normal file
View file

@ -0,0 +1,27 @@
package collector
import (
"os"
"testing"
)
func TestTCPStat(t *testing.T) {
file, err := os.Open("fixtures/tcpstat")
if err != nil {
t.Fatal(err)
}
defer file.Close()
tcpStats, err := parseTCPStats(file)
if err != nil {
t.Fatal(err)
}
if want, got := 1, int(tcpStats[TCP_ESTABLISHED]); want != got {
t.Errorf("want tcpstat number of established state %d, got %d", want, got)
}
if want, got := 1, int(tcpStats[TCP_LISTEN]); want != got {
t.Errorf("want tcpstat number of listen state %d, got %d", want, got)
}
}