Documentation
¶
Overview ¶
Package cli implements the loadwave command line.
The same command set is compiled into the stock `loadwave` binary and into any binary a user builds with the Go SDK, which is what lets a test written in Go be its own coordinator, agent and worker with no extra tooling.
Index ¶
Constants ¶
View Source
const ( // ExitOK means the run completed and every threshold passed. ExitOK = 0 // ExitError means the command could not do what was asked: a bad // configuration, an unreachable coordinator, no agents. ExitError = 1 // ExitThresholdBreached means the run completed but a threshold failed. // Distinct from ExitError so a pipeline can tell "the tool broke" from // "the service under test was too slow". ExitThresholdBreached = 2 // ExitInterrupted means the operator stopped the run. ExitInterrupted = 130 )
Exit codes. These are a contract with CI systems, so they are documented here and must not be reshuffled.
Variables ¶
This section is empty.
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.