Project

zombees

0.0
No commit activity in last 3 years
No release in over 3 years
Distributed load testing in Ruby using your own cloud
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

~> 0.13.0
~> 1.8.0
~> 2.5.0
>= 0
 Project Readme

Build Status Code Climate Coverage Status

logo logo logo

Description

This gem allows you to perform distributed load testing across multiple virtual machines running in your cloud of choice. Supported clouds: http://fog.io/about/provider_documentation.html

Supported load testing utilities

  • Apache bench ( ab_adapter )

Installation

Add this line to your application's Gemfile:

gem 'zombees'

And then execute:

$ bundle

Or install it yourself as:

$ gem install zombees

Example usage

# ab_adapter_example.rb
require 'yaml'
require 'zombees'
require 'zombees/ab_adapter'

aws_config = YAML.load_file('aws_config.yml').symbolize_keys!

adapter = Zombees::AbAdapter.new requests: 10, concurrency: 10, url: TEST_URL
result = Zombees::Queen.new(config: aws_config, worker_count: 2, command: adapter).run
puts result.inspect

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

TODO

  • Simple CLI
  • Verbose mode
  • Adapters for different command to run
    • Siege
    • Tourbus

Contributors