Documentation ¶
Index ¶
- Constants
- Variables
- func Asset(name string) ([]byte, error)
- func AssetDir(name string) ([]string, error)
- func AssetNames() []string
- func Cleanup()
- func ExecuteAsync(cmd string) (outPipe io.ReadCloser, errPipe io.ReadCloser, exitCode chan int, err error)
- func ExecuteAsyncWithCancel(cmd string) (stdOut io.ReadCloser, stdErr io.ReadCloser, exitCode chan int, ...)
- func ExecuteAsyncWithCancelReadIndicator(cmd string, readIndicator chan interface{}) (stdOut io.ReadCloser, stdErr io.ReadCloser, exitCode chan int, ...)
- func ExtractBinaries() (err error)
- func GetConnectedClient(addr string, port int) (client api.CommandClient, err error)
- func GetUnusedTcpPort() (int, error)
- type Client
- func (c *Client) Bandwidth() string
- func (c *Client) BlockCount() string
- func (c *Client) Bytes() string
- func (c *Client) ExitCode() *int
- func (c *Client) Format() rune
- func (c *Client) Host() string
- func (c *Client) IncludeServer() bool
- func (c *Client) Interval() int
- func (c *Client) JSON() bool
- func (c *Client) Length() string
- func (c *Client) LoadOptions(options *ClientOptions)
- func (c *Client) LoadOptionsJSON(jsonStr string) (err error)
- func (c *Client) LogFile() string
- func (c *Client) MSS() int
- func (c *Client) Mode() TestMode
- func (c *Client) NoDelay() bool
- func (c *Client) OmitSec() int
- func (c *Client) Port() int
- func (c *Client) Prefix() string
- func (c *Client) Proto() Protocol
- func (c *Client) Report() *TestReport
- func (c *Client) Reverse() bool
- func (c *Client) SetBandwidth(bandwidth string)
- func (c *Client) SetBlockCount(blockCount string)
- func (c *Client) SetBytes(bytes string)
- func (c *Client) SetFormat(format rune)
- func (c *Client) SetHost(host string)
- func (c *Client) SetIncludeServer(set bool)
- func (c *Client) SetInterval(interval int)
- func (c *Client) SetJSON(set bool)
- func (c *Client) SetLength(length string)
- func (c *Client) SetLogFile(logfile string)
- func (c *Client) SetMSS(mss int)
- func (c *Client) SetModeJson()
- func (c *Client) SetModeLive() <-chan *StreamIntervalReport
- func (c *Client) SetNoDelay(noDelay bool)
- func (c *Client) SetOmitSec(value int)
- func (c *Client) SetPort(port int)
- func (c *Client) SetPrefix(prefix string)
- func (c *Client) SetProto(proto Protocol)
- func (c *Client) SetReverse(reverse bool)
- func (c *Client) SetStreams(streamCount int)
- func (c *Client) SetTOS(value int)
- func (c *Client) SetTimeSec(timeSec int)
- func (c *Client) SetVersion4(set bool)
- func (c *Client) SetVersion6(set bool)
- func (c *Client) SetWindow(window string)
- func (c *Client) SetZeroCopy(set bool)
- func (c *Client) Start() (err error)
- func (c *Client) StartEx() (pid int, err error)
- func (c *Client) Stop()
- func (c *Client) Streams() int
- func (c *Client) TOS() int
- func (c *Client) TimeSec() int
- func (c *Client) Version4() bool
- func (c *Client) Version6() bool
- func (c *Client) Window() string
- func (c *Client) ZeroCopy() bool
- type ClientOptions
- type ConnectingToInfo
- type ConnectionInfo
- type Controller
- func (c *Controller) GrpcRequestServer(context.Context, *api.StartServerRequest) (*api.StartServerResponse, error)
- func (c *Controller) NewClient(serverAddr string) (client *Client, err error)
- func (c *Controller) NewServer() (server *Server, err error)
- func (c *Controller) StopClient(id string) (err error)
- func (c *Controller) StopServer(id string) (err error)
- type CpuUtilizationReport
- type DebugScanner
- type EndInfo
- type Protocol
- type Reporter
- type Server
- func (s *Server) Format() rune
- func (s *Server) Interval() int
- func (s *Server) JSON() bool
- func (s *Server) LoadOptions(options *ServerOptions)
- func (s *Server) LoadOptionsJSON(jsonStr string) (err error)
- func (s *Server) LogFile() string
- func (s *Server) OneOff() bool
- func (s *Server) Port() int
- func (s *Server) SetFormat(format rune)
- func (s *Server) SetJSON(json bool)
- func (s *Server) SetLogFile(filename string)
- func (s *Server) SetOneOff(oneOff bool)
- func (s *Server) SetPort(port int)
- func (s *Server) Start() (err error)
- func (s *Server) StartEx() (pid int, err error)
- func (s *Server) Stop()
- type ServerOptions
- type ServerReport
- type StartInfo
- type StreamEndReport
- type StreamEndSumReport
- type StreamInterval
- type StreamIntervalReport
- type StreamIntervalSumReport
- type TcpStreamEndReport
- type TestMode
- type TestReport
- type TestStartInfo
- type TimestampInfo
- type UdpStreamEndReport
Constants ¶
const ( PROTO_TCP = "tcp" PROTO_UDP = "udp" )
Variables ¶
var (
Debug = false
)
Functions ¶
func Asset ¶
Asset loads and returns the asset for the given name. It returns an error if the asset could not be found or could not be loaded.
func AssetDir ¶
AssetDir returns the file names below a certain directory embedded in the file by go-bindata. For example if you run go-bindata on data/... and data contains the following hierarchy:
data/ foo.txt img/ a.png b.png
then AssetDir("data") would return []string{"foo.txt", "img"} AssetDir("data/img") would return []string{"a.png", "b.png"} AssetDir("foo.txt") and AssetDir("notexist") would return an error AssetDir("") will return []string{"data"}.
func ExecuteAsync ¶
func ExecuteAsync(cmd string) (outPipe io.ReadCloser, errPipe io.ReadCloser, exitCode chan int, err error)
func ExecuteAsyncWithCancel ¶
func ExecuteAsyncWithCancel(cmd string) (stdOut io.ReadCloser, stdErr io.ReadCloser, exitCode chan int, cancelToken context.CancelFunc, pid int, err error)
func ExecuteAsyncWithCancelReadIndicator ¶
func ExecuteAsyncWithCancelReadIndicator(cmd string, readIndicator chan interface{}) (stdOut io.ReadCloser, stdErr io.ReadCloser, exitCode chan int, cancelToken context.CancelFunc, pid int, err error)
func ExtractBinaries ¶
func ExtractBinaries() (err error)
func GetConnectedClient ¶
func GetConnectedClient(addr string, port int) (client api.CommandClient, err error)
func GetUnusedTcpPort ¶
Types ¶
type Client ¶
type Client struct { Id string `json:"id" yaml:"id" xml:"id"` Running bool `json:"running" yaml:"running" xml:"running"` Done chan bool `json:"-" yaml:"-" xml:"-"` Options *ClientOptions `json:"options" yaml:"options" xml:"options"` Debug bool `json:"-" yaml:"-" xml:"-"` StdOut bool `json:"-" yaml:"-" xml:"-"` // contains filtered or unexported fields }
func (*Client) BlockCount ¶
func (*Client) IncludeServer ¶
func (*Client) LoadOptions ¶
func (c *Client) LoadOptions(options *ClientOptions)
func (*Client) LoadOptionsJSON ¶
func (*Client) Report ¶
func (c *Client) Report() *TestReport
func (*Client) SetBandwidth ¶
func (*Client) SetBlockCount ¶
func (*Client) SetIncludeServer ¶
func (*Client) SetInterval ¶
func (*Client) SetLogFile ¶
func (*Client) SetModeJson ¶
func (c *Client) SetModeJson()
func (*Client) SetModeLive ¶
func (c *Client) SetModeLive() <-chan *StreamIntervalReport
func (*Client) SetNoDelay ¶
func (*Client) SetOmitSec ¶
func (*Client) SetReverse ¶
func (*Client) SetStreams ¶
func (*Client) SetTimeSec ¶
func (*Client) SetVersion4 ¶
func (*Client) SetVersion6 ¶
func (*Client) SetZeroCopy ¶
type ClientOptions ¶
type ClientOptions struct { Port *int `json:"port" yaml:"port" xml:"port"` Format *rune `json:"format" yaml:"format" xml:"format"` Interval *int `json:"interval" yaml:"interval" xml:"interval"` JSON *bool `json:"json" yaml:"json" xml:"json"` LogFile *string `json:"log_file" yaml:"log_file" xml:"log_file"` Host *string `json:"host" yaml:"host" xml:"host"` Proto *Protocol `json:"proto" yaml:"proto" xml:"proto"` Bandwidth *string `json:"bandwidth" yaml:"bandwidth" xml:"bandwidth"` TimeSec *int `json:"time_sec" yaml:"time_sec" xml:"time_sec"` Bytes *string `json:"bytes" yaml:"bytes" xml:"bytes"` BlockCount *string `json:"block_count" yaml:"block_count" xml:"block_count"` Length *string `json:"length" yaml:"length" xml:"length"` Streams *int `json:"streams" yaml:"streams" xml:"streams"` Reverse *bool `json:"reverse" yaml:"reverse" xml:"reverse"` Window *string `json:"window" yaml:"window" xml:"window"` MSS *int `json:"mss" yaml:"mss" xml:"mss"` NoDelay *bool `json:"no_delay" yaml:"no_delay" xml:"no_delay"` Version4 *bool `json:"version_4" yaml:"version_4" xml:"version_4"` Version6 *bool `json:"version_6" yaml:"version_6" xml:"version_6"` TOS *int `json:"tos" yaml:"tos" xml:"tos"` ZeroCopy *bool `json:"zero_copy" yaml:"zero_copy" xml:"zero_copy"` OmitSec *int `json:"omit_sec" yaml:"omit_sec" xml:"omit_sec"` Prefix *string `json:"prefix" yaml:"prefix" xml:"prefix"` IncludeServer *bool `json:"include_server" yaml:"include_server" xml:"include_server"` }
type ConnectingToInfo ¶
func (*ConnectingToInfo) String ¶
func (cti *ConnectingToInfo) String() string
type ConnectionInfo ¶
type ConnectionInfo struct { Socket int `json:"socket"` LocalHost string `json:"local_host"` LocalPort int `json:"local_port"` RemoteHost string `json:"remote_host"` RemotePort int `json:"remote_port"` }
func (*ConnectionInfo) String ¶
func (ci *ConnectionInfo) String() string
type Controller ¶
type Controller struct { api.UnimplementedCommandServer Port int // contains filtered or unexported fields }
Controller is a helper in the go-iperf package that is designed to run on both the client and the server side. On the server side it listens for new gRPC connections, when a connection is made by a client the client can tell it to start a new iperf server instance. It will start a instance on an unused port and return the port number to the client. This allows the entire iperf setup and session to be performed from the client side.
func NewController ¶
func NewController(port int) (controller *Controller, err error)
func (*Controller) GrpcRequestServer ¶
func (c *Controller) GrpcRequestServer(context.Context, *api.StartServerRequest) (*api.StartServerResponse, error)
StartServer is the handler for the gRPC function StartServer()
func (*Controller) NewClient ¶
func (c *Controller) NewClient(serverAddr string) (client *Client, err error)
NewClient gets a new instance of an iperf client and also starts up a matched iperf server instance on the specified serverAddr. If it fails to connect to the gRPC interface of the controller on the remote side it will return an error
func (*Controller) NewServer ¶
func (c *Controller) NewServer() (server *Server, err error)
NewServer gets a new instance of an iperf server on a free port
func (*Controller) StopClient ¶
func (c *Controller) StopClient(id string) (err error)
StopClient will clean up the server side connection and shut down any actively used resources
func (*Controller) StopServer ¶
func (c *Controller) StopServer(id string) (err error)
StopServer shuts down an iperf server and frees any actively used resources
type CpuUtilizationReport ¶
type CpuUtilizationReport struct { HostTotal float32 `json:"host_total"` HostUser float32 `json:"host_user"` HostSystem float32 `json:"host_system"` RemoteTotal float32 `json:"remote_total"` RemoteUser float32 `json:"remote_user"` RemoteSystem float32 `json:"remote_system"` }
func (*CpuUtilizationReport) String ¶
func (cur *CpuUtilizationReport) String() string
type DebugScanner ¶
type DebugScanner struct {
Silent bool
}
func (*DebugScanner) Scan ¶
func (ds *DebugScanner) Scan(buff io.ReadCloser)
type EndInfo ¶
type EndInfo struct { Streams []*StreamEndReport `json:"streams"` SumSent StreamEndSumReport `json:"sum_sent"` SumReceived StreamEndSumReport `json:"sum_received"` CpuReport CpuUtilizationReport `json:"cpu_utilization_percent"` }
type Reporter ¶
type Reporter struct { ReportingChannel chan *StreamIntervalReport LogFile string // contains filtered or unexported fields }
type Server ¶
type Server struct { Id string `json:"id" yaml:"id" xml:"id"` Running bool `json:"running" yaml:"running" xml:"running"` Options *ServerOptions `json:"-" yaml:"-" xml:"-"` ExitCode *int `json:"exit_code" yaml:"exit_code" xml:"exit_code"` Debug bool `json:"-" yaml:"-" xml:"-"` StdOut bool `json:"-" yaml:"-" xml:"-"` // contains filtered or unexported fields }
func (*Server) LoadOptions ¶
func (s *Server) LoadOptions(options *ServerOptions)
func (*Server) LoadOptionsJSON ¶
func (*Server) SetLogFile ¶
type ServerOptions ¶
type ServerOptions struct { OneOff *bool `json:"one_off" yaml:"one_off" xml:"one_off"` Port *int `json:"port" yaml:"port" xml:"port"` Format *rune `json:"format" yaml:"format" xml:"format"` Interval *int `json:"interval" yaml:"interval" xml:"interval"` JSON *bool `json:"json" yaml:"json" xml:"json"` LogFile *string `json:"log_file" yaml:"log_file" xml:"log_file"` }
type ServerReport ¶
type ServerReport struct { Start StartInfo `json:"start"` Intervals []*StreamInterval `json:"intervals"` End EndInfo `json:"end"` Error string `json:"error"` }
func (*ServerReport) String ¶
func (sr *ServerReport) String() string
type StartInfo ¶
type StartInfo struct { Connected []*ConnectionInfo `json:"connected"` Version string `json:"version"` SystemInfo string `json:"system_info"` Timestamp TimestampInfo `json:"timestamp"` ConnectingTo ConnectingToInfo `json:"connecting_to"` Cookie string `json:"cookie"` TcpMssDefault int `json:"tcp_mss_default"` TestStart TestStartInfo `json:"test_start"` }
type StreamEndReport ¶
type StreamEndReport struct { Sender TcpStreamEndReport `json:"sender"` Receiver TcpStreamEndReport `json:"receiver"` Udp UdpStreamEndReport `json:"udp"` }
func (*StreamEndReport) String ¶
func (ser *StreamEndReport) String() string
type StreamEndSumReport ¶
type StreamEndSumReport struct { Start float32 `json:"start"` End float32 `json:"end"` Seconds float32 `json:"seconds"` Bytes int `json:"bytes"` BitsPerSecond float64 `json:"bits_per_second"` }
func (*StreamEndSumReport) String ¶
func (sesr *StreamEndSumReport) String() string
type StreamInterval ¶
type StreamInterval struct { Streams []*StreamIntervalReport `json:"streams"` Sum *StreamIntervalSumReport `json:"sum"` }
func (*StreamInterval) String ¶
func (si *StreamInterval) String() string
type StreamIntervalReport ¶
type StreamIntervalReport struct { Socket int `json:"socket"` StartInterval float32 `json:"start"` EndInterval float32 `json:"end"` Seconds float32 `json:"seconds"` Bytes int `json:"bytes"` BitsPerSecond float64 `json:"bits_per_second"` Retransmissions int `json:"retransmissions"` CongestionWindow int `json:"congestion_window"` Omitted bool `json:"omitted"` }
func (*StreamIntervalReport) String ¶
func (sir *StreamIntervalReport) String() string
type StreamIntervalSumReport ¶
type StreamIntervalSumReport struct { StartInterval float32 `json:"start"` EndInterval float32 `json:"end"` Seconds float32 `json:"seconds"` Bytes int `json:"bytes"` BitsPerSecond float64 `json:"bits_per_second"` Omitted bool `json:"omitted"` }
func (*StreamIntervalSumReport) String ¶
func (sisr *StreamIntervalSumReport) String() string
type TcpStreamEndReport ¶
type TcpStreamEndReport struct { Socket int `json:"socket"` Start float32 `json:"start"` End float32 `json:"end"` Seconds float32 `json:"seconds"` Bytes int `json:"bytes"` BitsPerSecond float64 `json:"bits_per_second"` }
func (*TcpStreamEndReport) String ¶
func (tser *TcpStreamEndReport) String() string
type TestReport ¶
type TestReport struct { Start StartInfo `json:"start"` Intervals []*StreamInterval `json:"intervals"` End EndInfo `json:"end"` Error string `json:"error"` ServerOutputJson ServerReport `json:"server_output_json"` }
func Load ¶
func Load(filename string) (report *TestReport, err error)
func Loads ¶
func Loads(jsonStr string) (report *TestReport, err error)
func (*TestReport) String ¶
func (tr *TestReport) String() string
type TestStartInfo ¶
type TestStartInfo struct { Protocol string `json:"protocol"` NumStreams int `json:"num_streams"` BlkSize int `json:"blksize"` Omit int `json:"omit"` Duration int `json:"duration"` Bytes int `json:"bytes"` Blocks int `json:"blocks"` Reverse int `json:"reverse"` }
func (*TestStartInfo) String ¶
func (tsi *TestStartInfo) String() string
type TimestampInfo ¶
func (*TimestampInfo) String ¶
func (tsi *TimestampInfo) String() string
type UdpStreamEndReport ¶
type UdpStreamEndReport struct { Socket int `json:"socket"` Start float32 `json:"start"` End float32 `json:"end"` Seconds float32 `json:"seconds"` Bytes int `json:"bytes"` BitsPerSecond float64 `json:"bits_per_second"` JitterMs float32 `json:"jitter_ms"` LostPackets int `json:"lost_packets"` Packets int `json:"packets"` LostPercent float32 `json:"lost_percent"` OutOfOrder int `json:"out_of_order"` }
func (*UdpStreamEndReport) String ¶
func (user *UdpStreamEndReport) String() string