bps is used to keep track of bandwidth rates https://godoc.org/mcquay.me/bps
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Stephen McQuay 3398b4f131
added example
7 years ago
bps.go Added BPS.Data to feed to sparklines 8 years ago
bps_test.go Added BPS.Data to feed to sparklines 8 years ago
bytes.go don't show docs for human 8 years ago
example_multi_test.go added example 7 years ago
license fixed author name 8 years ago
multi.go added multi 7 years ago
readme.md Update godoc link 7 years ago

readme.md

bps

GoDoc

bps is used to keep track of bandwidth rates

It is intended to be used as such:

// report on the rate over a 60 second interval, update every second
bw, _ := New(60*time.Second)
bw.Add(10)
b := &bytes.Buffer{}
b.Write([]byte("helloooooooooooooooooooooooooooooooooooooooooooooo"))
io.Copy(bw, b)
time.Sleep(1 * time.Second)
log.Printf("%+v", bw.HumanRate())