Skip to content

fork of buggyapp for code analysis demo

Notifications You must be signed in to change notification settings

lonmiller/ycrash-buggyapp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BuggyApp Quickstart Guide

BuggyApp

BuggyApp is an opensource chaos engineering program that can simulate various performance problems like Memory Leak, OutOfMemoryError, CPU spike, thread leak StackOverflowError, deadlock, unresponsiveness.

How to build buggyApp locally?

Pre-requisite:

  • Java 8 or later version
  • Apache ant

You can clone the buggyApp repository and build the project on your machine.

SSH: git clone git@github.com:ycrash/buggyapp.git
HTTP: git clone https://github.com/ycrash/buggyapp.git

Go to the directory where you have cloned buggyapp. Let's say you have cloned the buggyApp project in /opt/worskpace directory.

cd  /opt/workspace/buggyapp

Run the below commands to clean the old build and generate new build:

ant clean

ant dist-ee

After executing ant dist-ee command, you will see dist directory in buggyapp project. The built code will be present inside dist/enterpise directory in zip format. The zip file contains JAR as well as WAR files.

If you only want to build a JAR file then run the below command:

ant dist-cmd

How to run buggyApp locally?

a) Run buggyApp as a web application

  1. Download latest buggyapp from here.

  2. Unzip the same to a folder say (i.e. /opt/buggyapp).

  3. You will find launch file in the folder once you unzip the file. Based on your Operating System, invoke an appropriate launch script:

Windows: c:\workspace\buggyapp\launch.bat

Unix: /opt/workspace/buggyapp/launch.sh

You should be able to access buggyApp at http://localhost:9010

Tip: You can change the port in launch file.

b) Run buggyApp from command line

  1. Download latest buggyapp from here.

  2. Unzip the same to a folder say (i.e. /opt/buggyapp).

  3. You will find buggyApp.jar in the folder once you unzip the file. Run the following command to simulate CPU spike:

java -jar buggyApp.jar PROBLEM_CPU

Tip: For more performance problem simulation, refer here.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

Apache license 2.0

About

fork of buggyapp for code analysis demo

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 73.9%
  • SCSS 15.5%
  • Java 8.0%
  • JavaScript 2.5%
  • PHP 0.1%
  • Batchfile 0.0%