jmeter-amqp-plugin icon indicating copy to clipboard operation
jmeter-amqp-plugin copied to clipboard

A JMeter plugin to publish & consume messages from RabbitMQ or any AMQP message broker

JMeter AMQP Plugin

build status release downloads contributions welcome

A JMeter plugin to publish & consume messages from RabbitMQ or any AMQP message broker.

Requirements

Installation

  1. Download the latest release or build your own from the source code.
  2. Put jmeter-amqp-plugin-VERSION.jar into $JMETER_HOME/lib/ext directory.
    It contains the necessary AMQP client dependency, no other jars are required.
  3. Restart JMeter GUI.

Usage

This plugin includes 2 samplers:

  • AMQP Publisher
  • AMQP Consumer

Both samplers can be found in the Add -> Sampler list shown as below:

amqp-plugin-samplers

AMQP Publisher

amqp-publisher

AMQP Consumer

amqp-consumer

A pre-configured example scenario can be found in the examples directory.

Build

Build requirements

In order to build JMeter AMQP plugin from source, you will need:

Build dependencies are managed by Maven.
Jars should automatically be downloaded by Maven as part of the build process.

In addition, you'll need to copy or symlink the following from $JMETER_HOME/lib/ext directory:

  • ApacheJMeter_core.jar

Build from source

To build, just execute:

mvn clean package

This will create 2 jars in /target directory - the jar with all the dependencies within (this is the one you need) and the original jar (without amqp-client library inside):

target/jmeter-amqp-plugin-VERSION.jar
target/original-jmeter-amqp-plugin-VERSION.jar

Install

To install, execute:

cp target/jmeter-amqp-plugin-VERSION.jar $JMETER_HOME/lib/ext

Acknowledgements

Thanks to

Contributing

Contributions are welcome.
Please take a look at the contributing guideline first.