Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var PatternCommand = &artillery.Command{ Name: "pattern", Description: "pattern generation / offset detection", SubCommands: []*artillery.Command{ { Name: "create", Description: "create an n-byte length pattern suitable for offset detection", Arguments: []*artillery.Argument{ { Name: "length", Description: "number of bytes to generate", Type: artillery.Int, }, }, Options: []*artillery.Option{ { Name: "fixed", ShortName: 'f', Description: "fixed portion of pattern for extra large buffers", Type: artillery.Int, }, }, OnExecute: generateBytes, }, { Name: "offset", Description: "report offset given the supplied pattern fragement", Arguments: []*artillery.Argument{ { Name: "pattern", Description: "pattern fragment from which to calculate the offset", }, }, Options: []*artillery.Option{ { Name: "fixed", ShortName: 'f', Description: "number of fixed bytes used in pattern creation", Type: artillery.Int, }, }, OnExecute: calculateOffset, }, }, }
View Source
var Version string
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.