Proxy Configuration
Pages 12
- Home
- Adding additional libraries to the classpath
- Advanced Configuration
- Basic Configuration
- Configuring the jvm that the jmeter process runs in
- FAQ
- Log Levels
- Modifying Properties
- Proxy Configuration
- Remote Server Configuration
- Selecting Tests To Run
- Test Results File Format
Setting the <proxyConfig>
If you configure proxy settings to be used by JMeter, the proxy settings will be used to run everytest.
Setting a proxy host is mandatory, if you do not set a proxy host the rest of the proxy configuration will be ignored. If you do not set a proxy port it will always default to port 80.
<username> and <password> are optional settings that do not have to be set.
You can also set an optional <hostExclusions< element to notify JMeter of hosts that should not be proxied, this is a regular expression based setting.
+---+ <project> [...] <build> <plugins> <plugin> <groupId>com.lazerycode.jmeter</groupId> <artifactId>jmeter-maven-plugin</artifactId> <version>2.0.3</version> <executions> <execution> <id>jmeter-tests</id> <goals> <goal>jmeter</goal> </goals> </execution> </executions> <configuration> <proxyConfig> <host>10.10.10.53</host> <port>80</port> <username>jimbob</username> <password>correct horse battery staple</password> <hostExclusions>localhost|*.lazerycode.com</hostExclusions> </proxyConfig> </configuration> </plugin> </plugins> </build> [...] </project> +---+
For SOCKS proxy configuration, see Configuring the jvm that the jmeter process runs in.
时间: 2024-10-24 06:00:50