gradle-profiler


Source link: https://github.com/gradle/gradle-profiler

Gradle Profiler

A tool to automate the gathering of profiling and benchmarking information for Gradle builds.

Profiling information can be captured using several different tools:

Installing

First, build and install the gradle-profiler app using:

> ./gradlew installDist 

This will install the executable into ./build/install/gradle-profiler/bin. The examples below assume that you add this location to your PATH or create a gradle-profiler alias for it.

Benchmarking a build

Benchmarking simply records the time it takes to execute your build several times and calculates a mean and standard error for it. It has zero impact on the execution time, so it is ideal for making before/after comparisons for new Gradle versions or changes to your build.

Run the app using:

> gradle-profiler --benchmark --project-dir <root-dir-of-build> <task>... 

Where <root-dir-of-build> is the directory containing the build to be benchmarked, and <task> is the name of the task to run, exactly as you would use for the gradle command.

Results will be written to a file called profile-out/benchmark.csv.

When the profiler runs the build, it will use the tasks you specified. The profiler will use the default Gradle version, Java installation and JVM args that have been specified for your build, if any. This generally works the same way as if you were using the Gradle wrapper. For example, the profiler will use the values from your Gradle wrapper properties file, if present, to determine which Gradle version to run.

You can use the --gradle-version option to specify a Gradle version or installation to use to benchmark the build. You can specify multiple versions and each of these is used to benchmark the build, allowing you to compare the behaviour of several different Gradle versions.

Profiling a build

Profiling allows you to get deeper insight into the performance of your build.

To run the gradle-profiler app to profile a build use:

> gradle-profiler --profile <name-of-profiler> --project-dir <root-dir-of-build> <task>... 

The app will run the build several times to warm up a daemon, then enable the profiler and run the build. Once complete, the results are available under profile-out

Gradle build scans

In order to create a build scan of your build, use --profile buildscan. The build scan URL is available in profile-out/profile.log. You can then use the powerful timeline view in the build scan to analyze which tasks ran, how long they took, how well your build parallelized etc. Also make sure to look at the performance tab to see where time was spent and for hints on how to optimize your build.

JProfiler

In order to work with JProfiler, use the --profile jprofiler option.

This will use JProfiler's CPU sampling by default. JProfiler supports several other options:

  • Enable CPU sampling of all methods by adding --jprofiler-config sampling-all (by default only packages containing the word gradle are sampled)
  • Switch to CPU instrumentation by adding --jprofiler-config instrumentation
  • Enable memory allocation recording by adding --jprofiler-alloc
  • Enable monitor usage recording by adding --jprofiler-monitors
  • Enable probes with --jprofiler-probes:<probe ids, separated by comma> (e.g. --jprofiler-probes builtin.FileProbe)
  • Enable heapdump after build with --jprofiler-heapdump
  • Use a specific profiler session (for full control over filters, sampling intervals etc.) by adding --jprofiler-session <sessionId>
  • use a different JProfiler installation with --jprofiler-home /path/to/jprofiler

YourKit

In order to work with YourKit, make sure YOURKIT_HOME is set and then use the --profile yourkit option.

This will use YourKit's CPU instrumentation by default. You can switch to CPU sampling by adding the --yourkit-sampling option. You can switch to memory allocation profiling by adding the --yourkit-memory option.

Java Flight Recorder

In order to profile with JFR, add the --profile jfr option. Note that JFR has a very low sampling frequency compared to other profilers and is unlikely to be helpful for short builds.

Honest Profiler

Install both Honest Profiler and the FlameGraph tool. Then you can run with the options --profile hp --hp-home /path/to/honest/profiler --fg-home /path/to/flamegraph

Honest Profiler currently only works on Linux.

Linux Perf

In order to profile with perf, add the --profile perf option. perf has several advantages over Java agent based profiling:

  • Accurate and low overhead
  • All Java processes forked by the build are included
  • Native stack frames are included
  • Inlined methods can be optionally unfolded

Prerequisites

  • Linux Kernel 4.7 or later

  • perf and cmake. For example:

    sudo apt install linux-tools-`uname -r` linux-tools-generic cmake 
  • Set the kernel.perf_event_max_stack Kernel parameter to accommodate deep Java stacks:

sudo sysctl kernel.perf_event_max_stack=1024

to make the setting persistent

echo kernel.perf_event_max_stack=1024 | sudo tee /etc/sysctl.d/99-perf.conf
  • sudo access to /usr/bin/perf, /bin/kill and gradle-user-home/tools/brendangregg/Misc/java/jmaps-updated.

An example script exists to configure sudo access

Alternatively add these lines with sudo visudo (adapt example location /home/user/.gradle-profiler as needed)

Defaults!/usr/bin/perf use_pty %sudo ALL=(ALL) NOPASSWD: /usr/bin/perf, /bin/kill, /home/user/.gradle-profiler/tools/brendangregg/Misc/java/jmaps-updated 

The use_pty sudo default option is required when perf is running with sudo in a background process. Without use_pty, sudo won't relay the kill signal (SIGQUIT) to the perf process and it won't be possible to stop profiling cleanly.

  • add --gradle-user-home $HOME/.gradle-profiler parameter to the gradle-profiler command-line

The profiler automatically downloads and builds the other required tools.

Chrome Trace

Add the --profile chrome-trace option and open the result in Google Chrome. It shows a low-level event dump (e.g. projects being evaluated, tasks being run etc.) together with CPU and memory usage as well as GC activity. Note that using chrome-trace requires Gradle 3.3+.

Command line options

  • --project-dir: Directory containing the build to run (required).
  • --benchmark: Benchmark the build. Runs the builds more times and writes the results to a CSV file.
  • --profile <profiler>: Profile the build using the specified profiler. See above for details on each profiler.
  • --gradle-version <version>: Specifies a Gradle version or installation to use to run the builds, overriding the default for the build. You can specify multiple versions.
  • --output-dir <dir>: Directory to write results to.
  • --no-daemon: Uses the gradle command-line client with the --no-daemon option to run the builds. The default is to use the Gradle tooling API and Gradle daemon.
  • --cli: Uses the gradle command-line client to run the builds. The default is to use the Gradle tooling API.
  • -D<key>=<value>: Defines a system property when running the build, overriding the default for the build.
  • --warmups: Specifies the number of warm-up builds to run for each scenario. Defaults to 2 for profiling, 6 for benchmarking.
  • --iterations: Specifies the number of builds to run for each scenario. Defaults to 1 for profiling, 10 for benchmarking.
  • --bazel: Benchmark scenarios using Bazel instead of Gradle. By default, only Gradle scenarios are run. You cannot --profile a Bazel build using this tool.
  • --buck: Benchmark scenarios using Buck instead of Gradle. By default, only Gradle scenarios are run. You cannot --profile a Buck build using this tool.
  • --maven: Benchmark scenarios using Maven instead of Gradle. By default, only Gradle scenarios are run. You cannot --profile a Maven build using this tool.

Advanced profiling scenarios

A scenario file can be provided to define more complex scenarios to benchmark or profile. Use the --scenario-file option to provide this. The scenario file is defined in Typesafe config format.

The scenario file defines one or more scenarios. You can select which scenarios to run by specifying its name on the command-line when running gradle-profiler, e.g.

> gradle-profiler --benchmark --project-dir <root-dir-of-build> --scenario-file performance.scenarios clean_build 

Here is an example:

# Scenarios are run in alphabetical order assemble {

  tasks = ["assemble"] 
}
 clean_build {

  versions = ["3.1", "/Users/me/gradle"]
  tasks = ["build"]
  gradle-args = ["--parallel"]
  system-properties {

key = "value"
  
}

  cleanup-tasks = ["clean"]
  run-using = tooling-api // value can be "cli", "no-daemon" or "tooling-api"

buck {

targets = ["//thing/res_debug"]

type = "android_binary" // can be a Buck build rule type or "all"
  
}

warm-ups = 10 
}
 

Values are optional and default to the values provided on the command-line or defined in the build.

Profiling incremental builds

A scenario can define changes that should be applied to the source before each build. You can use this to benchmark or profile an incremental build. The following mutations are available:

  • apply-abi-change-to: Add a public method to a Java source class. Each iteration adds a new method and removes the method added by the previous iteration.
  • apply-non-abi-change-to: Change the body of a public method in a Java source class.
  • apply-h-change-to: Add a function to a C/C++ header file. Each iteration adds a new function declaration and removes the function added by the previous iteration.
  • apply-cpp-change-to: Add a function to a C/C++ source file. Each iteration adds a new function and removes the function added by the previous iteration.
  • apply-property-resource-change-to: Add an entry to a properties file. Each iteration adds a new entry and removes the entry added by the previous iteration.
  • apply-android-resource-change-to: Add a string resource to an Android resource file. Each iteration adds a new resource and removes the resource added by the previous iteration.
  • apply-android-resource-value-change-to: Change a string resource in an Android resource file.
  • apply-android-manifest-change-to: Add a permission to an Android manifest file.

They can be added to a scenario file like this:

incremental_build {

  tasks = ["assemble"]

apply-abi-change-to = "src/main/java/MyThing.java"
  apply-non-abi-change-to = "src/main/java/MyThing.java"
  apply-h-change-to = "src/main/headers/app.h"
  apply-cpp-change-to = "src/main/cpp/app.cpp"
  apply-property-resource-change-to = "src/main/resources/thing.properties"
  apply-android-resource-change-to = "src/main/res/value/strings.xml"
  apply-android-resource-value-change-to = "src/main/res/value/strings.xml"
  apply-android-manifest-change-to = "src/main/AndroidManifest.xml" 
}
 

Comparing against other build tools

You can compare Gradle against Bazel, Buck, and Maven by specifying their equivalent invocations in the scenario file. Only benchmarking mode is supported.

Maven

> gradle-profiler --benchmark --maven clean_build  clean_build {

  tasks = ["build"]
  cleanup-tasks = ["clean"]
  maven {

targets = ["clean build"]
  
}
 
}
 

Bazel

> gradle-profiler --benchmark --bazel build_some_target  build_some_target {

  tasks = ["assemble"]

bazel {

targets = ["//some/target"]
  
}
 
}
 

Buck

> gradle-profiler --benchmark --buck build_binaries  build_binaries {

  tasks = ["assemble"]

buck {

type = "android_binary" // can be a Buck build rule type or "all"
  
}
 
}
 build_resources {

  tasks = ["thing:processDebugResources"]

buck {

targets = ["//thing/res_debug"]
  
}
 
}
 

Resources

Sample app to demonstrate MVP (Model - View - Presenter) architecture in android.

Listen the progress of downloading and uploading in Okhttp (compatible Retrofit and Glide).

A Simple Twitter Client Application that is integrated with Fabric Twitter SDK, implementing MVVM Model and using a lot of Great Libraries.

TextView, EditText and Button with custom fonts with normal, bold and thin style for different languages.

When the language of device changes the library automatically use the font for that language.

In-App Feedback and Bug Reporting for Mobile Apps

The top apps in the world rely on Instabug for beta testing, user engagement, and crash reporting. Gather feedback from your beta testers and have live conversations with your users.

Error Handle Of Rxjava.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes