Skip to content

Basic usage with JMeter

Compare
Choose a tag to compare
@marcosborges marcosborges released this 04 Nov 13:42
· 24 commits to master since this release
5699ed0

Basic Config:

In its basic use it is necessary to provide information about which network will be used, where are your test plan scripts and finally define the number of nodes needed to carry out the desired load.

module "loadtest-distribuited" {
    source  = "marcosborges/loadtest-distribuited/aws"
    name = "nome-da-implantacao"
    executor = "jmeter"
    loadtest_dir_source = "../plan/"
    nodes_size = 2
    loadtest_entrypoint = "jmeter -n -t jmeter/*.jmx  -R \"{NODES_IPS}\" -l /var/logs/loadtest -e -o /var/www/html -Dnashorn.args=--no-deprecation-warning -Dserver.rmi.ssl.disable=true "
    subnet_id = data.aws_subnet.current.id
}

bp

bp