Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrTagEmptyName = errors.New("Invalid tag, empty name") ErrTagEmptyValue = errors.New("Invalid tag, empty value") ErrTagEmptyString = errors.New("Invalid tag, empty string") )
View Source
var Banner = `` /* 202-byte string literal not displayed */
View Source
var BannerColor = color.New(color.FgCyan)
View Source
var RootCmd = &cobra.Command{ Use: "k6", Short: "a next-generation load generator", Long: BannerColor.Sprint(Banner), SilenceUsage: true, SilenceErrors: true, PersistentPreRun: func(cmd *cobra.Command, args []string) { setupLoggers(logFmt) if noColor { stdout.Writer = colorable.NewNonColorable(os.Stdout) stdout.Writer = colorable.NewNonColorable(os.Stderr) } }, }
RootCmd represents the base command when called without any subcommands.
View Source
var Version = "0.22.0"
Functions ¶
Types ¶
type Config ¶
type Config struct { lib.Options Out []string `json:"out" envconfig:"out"` Linger null.Bool `json:"linger" envconfig:"linger"` NoUsageReport null.Bool `json:"noUsageReport" envconfig:"no_usage_report"` NoThresholds null.Bool `json:"noThresholds" envconfig:"no_thresholds"` Collectors struct { InfluxDB influxdb.Config `json:"influxdb"` Kafka kafka.Config `json:"kafka"` Cloud cloud.Config `json:"cloud"` } `json:"collectors"` }
type ExitCode ¶
type ExitCode struct { Code int // contains filtered or unexported fields }
Silently set an exit code.
type RawFormater ¶ added in v0.21.0
type RawFormater struct{}
RawFormatter it does nothing with the message just prints it
Click to show internal directories.
Click to hide internal directories.