Skip to content

Workload Generation

joesephz edited this page May 17, 2012 · 30 revisions

#Workload Generation

To start working with Jagger you have to define configuration, a list of tasks that will be executed one-by-one. Jagger at nutshell is an extensible tool that can execute tasks of different nature.

To be able to execute the task special object called Distributor should be defined is spring configuration. Distributor is responsible for distributes tasks across the nodes.

One of the tasks shipped with Jagger out of the box is a workload task. WorkloadTask is used to configure workload on a system under test.

Example of workload task that creates workload on http://google.com server is listed below:

require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html
Clone this wiki locally