Skip to content

jc-dgit/pinger

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

19 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Pinger

๐Ÿ“Œ A portable ping library written in Go.

Pinger is a library used to evaluate the quality of services in ICMP/TCP/HTTP protocol.

What's worth pointing out is that the ping here is not only represents the standard IMCP Protocol, but also the TCP/HTTP/HTTPS. It's the more general sense here as an approach to detecte the network qualtily.

GoDoc Travis Appveyor Go Report Card License

๐Ÿ”ฐ Installation

$ go get -u github.com/chenjiandongx/pinger

๐Ÿ“ Basic Usage

package main

import (
	"fmt"

	"github.com/chenjiandongx/pinger"
)

func main() {
	// ICMP
	stats, err := pinger.ICMPPing(nil, "huya.com", "youtube.com", "114.114.114.114")

	// TCP
	// stats, err := pinger.TCPPing(nil, "huya.com:80", "google.com:80", "huya.com:443", "google.com:443")

	// HTTP/HTTPS
	// stats, err := pinger.HTTPPing(nil, "http://huya.com", "https://google.com", "http://39.156.69.79")
	if err != nil {
		panic(err)
	}

	for _, s := range stats {
		fmt.Printf("%+v\n", s)
	}
}

// output
{Host:huya.com PktSent:10 PktLossRate:0 Mean:36.217604ms Last:37.636144ms Best:34.949608ms Worst:37.636144ms}
{Host:youtube.com PktSent:10 PktLossRate:0 Mean:12.853867ms Last:13.105932ms Best:11.836598ms Worst:14.844776ms}
{Host:114.114.114.114 PktSent:10 PktLossRate:0 Mean:7.689701ms Last:7.711122ms Best:6.252377ms Worst:9.427482ms}

๐ŸŽ‰ Options

PingTimeout / Interval

opts := pinger.DefaultICMPPingOpts
opts.PingTimeout = 50 * time.Millisecond
// sleep 60 mills after a request every time.
opts.Interval = func() time.Duration { return 60 * time.Millisecond }

PingCount / MaxConcurrency / FailOver

opts := pinger.DefaultICMPPingOpts
// network is unstable thus we need more ping-ops to evaluate the network quality overall.
opts.PingCount = 20
// set the maximum concurreny, goroutine is cheap, but not free :)
opts.MaxConcurrency = 5
// set per host maximum failed allowed
opts.FailOver = 5

Headers / Method

// in http/https case, there are more options could be used.
opts := pinger.DefaultHTTPPingOpts
// HTTP headers, something speical for authentication or anything else.
opts.Headers = map[string]string{"token": "my-token", "who": "me"}
// HTTP Method, feel free to use any standard HTTP methods you need.
opts.Method = http.MethodPost

For more information, please refer to godoc.

๐Ÿ“ƒ License

MIT ยฉchenjiandongx

About

๐Ÿ“Œ A portable ping library written in Go

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%