- Java 8
- Log file
cd <project-path>
./gradlew build
this will create a jar file build/libs/fieldaware-1.0.jar
The first parameter must be the path of the log file that we want to analise:
java -jar build/libs/fieldaware-1.0.jar <path of the log file>
The profile can be enabled using the flag "--profile", for example:
java -jar build/libs/fieldaware-1.0.jar test.log --profile
check the test class ProfilerTest to see more details
Execute the unit tests using the command:
./gradlew test