Skip to content

Releases: rabuchaim/StressAnAPI

StressAnAPI v1.0.3

23 Jul 04:10
Compare
Choose a tag to compare

To install, download the stressanapi-1.0.3.tar.gz file and type:

pip install stressanapi-1.0.3.tar.gz

What's new in v1.0.3 - 22/July/2024

  • Found a bug in httpStats that if the server responded with "urlopen error timed out" in some cases it was not being counted correctly, and ONLY WHEN requesting statistics (key S) the application crashed. It should appear as error 901, but it appears as "None". Now it is being counted correctly and this problem should not occur anymore. If you notice the same behavior, run the application with the '--debug' option and open an issue providing steps to reproduce the problem. (#1)

  • The "url" value of the configuration file can now accept template variables:

    • %%randomipv4%% to be replaced by a random IPv4
    • %%randomipv6%% to be replaced by a random IPv6
    • %%randomprivateipv4%% to be replaced by a random Private IPv4
    • %%randomint:val_min:val_max%% to be replaced by a random integer between 'val_min' and 'val_max'

    Example:

        {
            "url":"http://127.0.0.1:8000/api/v1/customer/%%randomint:1:10000%%",
            "method":"GET"
        }
        
        or
        
        {
            "url":"http://127.0.0.1:8000/api/v1/testip/%%randomipv4%%",
            "method":"GET"
        }

StressAnAPI v1.0.2

18 Jul 00:44
Compare
Choose a tag to compare

To install, download the stressanapi-1.0.2.tar.gz file and type:

pip install stressanapi-1.0.2.tar.gz

StressAnAPI v1.0.1

14 Jul 01:29
Compare
Choose a tag to compare

To install, download the stressanapi-1.0.1.tar.gz file and type:

pip install stressanapi-1.0.1.tar.gz

StressAnAPI v1.0.0

09 Jul 04:53
Compare
Choose a tag to compare

To install, download the stressanapi-1.0.0.tar.gz file and type:

pip install stressanapi-1.0.0.tar.gz