Arm Performix is a performance analysis toolkit for developers building on Arm-based infrastructure. It combines target-side data collection with guided analysis, function-level insights, and desktop visualisations.
Arm is gradually making source code for Arm Performix available to the public. Currently, you can build the Arm Performix CLI (apx) and use it to run the System Utilization recipe.
Note
This build process is fully supported on Linux and MacOS systems. For Windows users, we recommend using WSL.
Ensure the following are available on your system:
- C/C++ compiler toolchain
curlunzip
For example, on Ubuntu or Debian:
sudo apt install build-essential curl unzipThis step requires an internet connection to download tools.
Bootstrap the mise toolchain:
./bootstrapIf bootstrap configured mise for the first time, start a new shell.
Then use Task to install dependencies, generate sources, and build APX:
mise exec -- task installThe resulting CLI binary will be located at core/apap-cli/apx.
To run the System Utilization recipe, you will need an SSH-accessible Linux AArch64 or x86_64 target.
Alternatively, you can run the recipe with --target localhost on a Linux AArch64 or x86_64 machine.
Example commands using the local machine:
cd core/apap-cli
./apx recipe run system_utilization --system-wide --timeout 30 --deploy-tools --target localhostExample commands using a remote target:
cd core/apap-cli
./apx target add user@hostname:22:/path/to/private_key --name linux-target --default
./apx target prepare
./apx recipe run system_utilization --system-wide --timeout 30 --deploy-tools --target linux-target
