[][src]Enum goose::GooseDefault

pub enum GooseDefault {
    Host,
    Users,
    HatchRate,
    RunTime,
    LogLevel,
    LogFile,
    Verbose,
    OnlySummary,
    NoResetMetrics,
    NoMetrics,
    NoTaskMetrics,
    MetricsFile,
    MetricsFormat,
    DebugFile,
    DebugFormat,
    StatusCodes,
    ThrottleRequests,
    StickyFollow,
    Manager,
    ExpectWorkers,
    NoHashCheck,
    ManagerBindHost,
    ManagerBindPort,
    Worker,
    ManagerHost,
    ManagerPort,
}

Variants

Host

An optional default host to run this load test against.

Users

An optional default number of users to simulate.

HatchRate

An optional default number of clients to start per second.

RunTime

An optional default number of seconds for the test to run.

LogLevel

An optional default log level.

LogFile

An optional default for the log file name.

Verbose

An optional default value for verbosity level.

OnlySummary

An optional default for only printing final summary metrics.

NoResetMetrics

An optional default for not resetting metrics after all users started.

NoMetrics

An optional default for not tracking metrics.

NoTaskMetrics

An optional default for not tracking task metrics.

MetricsFile

An optional default for the metrics log file name.

MetricsFormat

An optional default for the metrics log file format.

DebugFile

An optional default for the debug log file name.

DebugFormat

An optional default for the debug log format.

StatusCodes

An optional default to track additional status code metrics.

ThrottleRequests

An optional default maximum requests per second.

StickyFollow

An optional default to follows base_url redirect with subsequent request.

Manager

An optional default to enable Manager mode.

ExpectWorkers

An optional default for number of Workers to expect.

NoHashCheck

An optional default for Manager to ignore load test checksum.

ManagerBindHost

An optional default for host Manager listens on.

ManagerBindPort

An optional default for port Manager listens on.

Worker

An optional default to enable Worker mode.

ManagerHost

An optional default for host Worker connects to.

ManagerPort

An optional default for port Worker connects to.

Trait Implementations

impl Debug for GooseDefault[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,