Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var SimulateCmd = &cobra.Command{ Use: "simulate", Short: "Simulate a load test", Long: `Simulate a load test using the provided configuration files.`, RunE: func(_ *cobra.Command, args []string) error { if len(args) < 1 { return errors.New("no config files provided") } return Simulate(args) }, }
Functions ¶
Types ¶
type RunConfig ¶
type RunConfig struct {
Script []config.ScriptAction
Generators map[string]generator.MetricGenerator
Exporters map[string]exporters.MetricExporter
Duration time.Duration
}
Click to show internal directories.
Click to hide internal directories.