goose 0.7.4

A load testing tool inspired by Locust.
Documentation
use goose::GooseConfiguration;

pub fn build_configuration() -> GooseConfiguration {
    // Manually specify configuration for test, normally this is provided as
    // CLI options.
    GooseConfiguration {
        host: "http://127.0.0.1:5000".to_string(),
        clients: Some(1),
        hatch_rate: 1,
        run_time: "1".to_string(),
        no_stats: true,
        status_codes: false,
        only_summary: false,
        reset_stats: false,
        list: false,
        verbose: 0,
        log_level: 0,
        log_file: "goose.log".to_string(),
        manager: false,
        no_hash_check: false,
        expect_workers: 0,
        manager_bind_host: "0.0.0.0".to_string(),
        manager_bind_port: 5115,
        worker: false,
        manager_host: "127.0.0.1".to_string(),
        manager_port: 5115,
    }
}