Streamline CLI Tools
About this Install Guide
| Reading time: | 10 min |
| Last updated: | 22 Jun 2026 |
| Reading time: |
| 10 min |
| Last updated: |
| 22 Jun 2026 |
This guide shows you how to install and use the tool with the most common configuration. For advanced options and complete reference information, see the official documentation. Some install guides also include optional next steps to help you explore related workflows or integrations.
The Streamline CLI tools are native command-line tools that are designed to run directly on an Arm server running Linux. The tools provide a software profiling methodology that gives you clear and actionable performance data. You can use this data to guide the optimization of the heavily used functions in your software.
Which platforms support Streamline CLI tools?
Streamline CLI tools are supported with the following host operating systems running on an Arm AArch64 host machine:
- Amazon Linux 2023 or newer
- Debian 10 or newer
- RHEL 8 or newer
- Ubuntu 20.04 or newer
Streamline CLI tools are supported on the following Arm CPUs:
- Arm Neoverse N1
- Arm Neoverse N2
- Arm Neoverse V1
What should I do before using Streamline CLI tools?
Use the Arm Sysreport utility to determine whether your system configuration supports hardware-assisted profiling. Follow the instructions in Get ready for performance analysis with Sysreport to discover how to download and run this utility.
The perf counters entry in the generated report indicates how many CPU counters are available. The perf sampling entry indicates if SPE is available. You will achieve the best profiles in systems with at least 6 available CPU counters and SPE.
The Streamline CLI tools can be used in systems without any CPU counters, but can only return a basic hot-spot profile based on time-based sampling. No top-down methodology metrics will be available.
The Streamline CLI tools can give top-down metrics in systems with as few as 3 available CPU counters. The effective sample rate for each metric will be lower, because you need to time-slice the counters to capture all of the requested metrics. This means that you need to run your application for longer to get the same number of samples for each metric. Metrics that require more input counters than are available cannot be captured.
The Streamline CLI tools can be used without SPE. Load operation data source metrics will not be available, and branch mispredict metrics might be less accurate.
How should I build my application for profiling?
Before you can capture a software profile you must build your application with debug information. This enables the profiler to map instruction addresses back to specific functions in your source code. For C and C++ you do this by passing the -g option to the compiler.
Arm recommends that you profile an optimized release build of your application, as this ensures you are profiling a realistic code workload. For C and C++ you do this by passing the -O2 or -O3 option to the compiler. However, it is recommended that you disable invasive optimization techniques, such as link-time optimization (LTO), because they heavily restructure the code and make the profile difficult to understand.
If you are using the workflow_topdown_basic option, ensure that your application workload is at least 20 seconds long, in order to give the core time to capture all of the metrics needed. This time increases linearly as you add more metrics to capture.
How do I set up Python for Streamline CLI tools?
The Python scripts provided with Streamline CLI tools require Python 3.8 or later, and depend on several third-party modules. It is recommended to create a Python virtual environment containing these modules to run the tools.
Create a virtual environment:
python3 -m venv sl-venv
source ./sl-venv/bin/activate
The prompt of your terminal has (sl-venv) as a prefix indicating the virtual environment is active.
The instructions assume that you run all Python commands from inside the virtual environment.
How do I install Streamline CLI tools?
The Streamline CLI tools are available as a standalone download to enable easy integration in to server workflows.
To download the latest version of the tool and extract it to the current working directory you can use our download utility script:
wget https://artifacts.tools.arm.com/arm-performance-studio/Streamline_CLI_Tools/get-streamline-cli.py
python3 get-streamline-cli.py install
python3 -m pip install -r ./streamline_cli_tools/bin/requirements.txt
If you want to add the Streamline tools to your search path:
export PATH=$PATH:$PWD/streamline_cli_tools/bin
The script can also be used to download a specific version, or install to a user-specified directory:
To list all available versions:
python3 get-streamline-cli.py listTo download, but not install, a specific version:
python3 get-streamline-cli.py download --tool-version <version>To download and install a specific version:
python3 get-streamline-cli.py install --tool-version <version>To download and install to a specific directory
python3 get-streamline-cli.py install --install-dir <path>
For manual download, you can find all available releases here:
https://artifacts.tools.arm.com/arm-performance-studio/Streamline_CLI_Tools/
How do I apply the kernel patch?
For best results, a Linux kernel patch is available that modifies the behavior of Linux perf to improve support for capturing function-attributed top-down metrics on Arm systems. This patch provides two new capabilities:
- It allows a new thread to inherit the perf counter group configuration of its parent.
- It decouples the perf event-based sampling window size from the overall sample rate. This allows strobed mark-space sampling patterns where the tool can capture a small window without using a high sample rate.
Without the patch it is possible to capture profiles. However, not all capture options are available and capturing top-down metrics will rely on high frequency sampling. The following options are available:
- System-wide profile with top-down metrics.
- Single threaded application profile with top-down metrics.
- Multi-process/thread application profile without top-down metrics.
With the patch applied, it is possible to collect the following profiles:
- System-wide profile with top-down metrics.
- Single threaded application profile with top-down metrics.
- Multi-process/thread application profile with top-down metrics.
The following instructions show you how to install the patch on Amazon Linux 2023. You might need to adapt them slightly to other Linux distributions.
How do I manually apply the patch to the source tree?
To apply the patch to the latest 6.7 kernel, you can use git:
git apply patch/v6.7-combined.patch
or patch:
patch -p 1 -i patch/v6.7-combined.patch
How do I apply the patch to an RPM-based distribution?
Follow these steps to integrate these patches into an RPM-based distribution’s kernel:
Install the RPM build tools:
sudo yum install rpm-build rpmdevtoolsRemove any existing
rpmbuilddirectory, renaming as appropriate:rm -fr rpmbuildFetch the kernel sources:
yum download --source kernelInstall the sources binary:
rpm -i kernel-<VERSION>.src.rpmEnter the
rpmbuilddirectory that is created:cd rpmbuildCopy the patch into the correct location. Replace the 9999 patch number with the next available patch number in the sequence:
cp vX.Y-combined.patch SOURCES/9999-strobing-patch.patchOpen the specs file in your preferred editor:
nano SPECS/kernel.specSearch for the list of patches starting with
Patch0001, and append the line for the new patch to the end of the list. Replace 9999 with the patch number used earlier:Patch9999: 9999-strobing-patch.patchSearch for the list of patch apply steps starting with
ApplyPatch, and append the line for the new patch to the end of the list. Replace 9999 with the patch number used earlier:ApplyPatch 9999-strobing-patch.patchSave the changes and exit the editor.
Install the build dependencies:
sudo dnf builddep SPECS/kernel.specBuild the kernel and other rpms:
rpmbuild -ba SPECS/kernel.specInstall the built packages:
sudo rpm -ivh --force RPMS/aarch64/*.rpmReboot the system:
sudo rebootValidate that the patch has been applied correctly:
ls -l /sys/bus/event_source/devices/*/format/strobe_periodThis should list at least one CPU PMU device supporting the strobing features, for example:
/sys/bus/event_source/devices/armv8_pmuv3_0/format/strobe_period
You are now ready to use Streamline CLI Tools. Refer to Profiling for Neoverse with Streamline CLI Tools to get started.
Give Feedback
How would you rate this tool quick-install guide?
What is the primary reason for your feedback ?
Thank you! We're grateful for your feedback.
- Have more feedback? Log an issue on GitHub.
- Want to collaborate? Join our Discord server.