Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 827 Bytes

README.md

File metadata and controls

54 lines (37 loc) · 827 Bytes

blitz.io

Make load and performance testing a fun sport.

  • Run a sprint from around the world
  • Rush your API and website to scale it out
  • Condition your site around the clock

Getting started

Login to blitz.io and in the blitz bar type: --api-key

Now cpan Blitz

In your Perl

    use Blitz;

    my $blitz = Blitz->new();

Sprint

$blitz->sprint({
    url => 'www.mycoolapp.com',
    region => 'california',
    callback => \&sprint_sink($ok, $err)
});

Rush

$blitz->rush({
    url => 'www.mycoolapp.com',
    region => 'california',
    pattern => [
        {
            start => 1,
            end => 100,
            duration => 60,
        }],
        callback => \&rush_sink($ok, $err)
});