Skip to main content

Generate a profile graph from strace log

Project description

straceprof

straceprof is a profiler designed for multi-process programs. straceprof can take profile of any process when you can run it under strace. It is particularly well-suited for profiling build processes such as those initiated by make, cmake, shell scripts, or docker build.

Quick start

Run the following commands.

$ sudo apt-get install strace
$ pip install straceprof
$ strace \
    --trace=execve,execveat,exit,exit_group \
    --follow-forks \
    --string-limit=1000 \
    -ttt \
    --output=straceprof.log \
    --seccomp-bpf \
    <command to profile>
$ straceprof \
    --log=straceprof.log \
    --output=straceprof.png

You will get a nice image!

Example of straceprof output

Motivation

Software compilation often involves numerous processes, including compilers, assemblers, linkers, and file copying operations. These processes are typically coordinated using tools like make.

A common challenge in software development is the significant amount of time required to build software. For instance, building a programming language processor might take as long as 20 minutes. To expedite this process, it is essential to profile the build to pinpoint performance bottlenecks.

However, profiling build processes can be complex due to the wide range of build systems available. While some build systems incorporate built-in profiling capabilities, others do not. Furthermore, developers frequently combine multiple build systems using shell scripts or Dockerfile to construct a single software product.

To address these challenges, an effective profiler should be versatile and user-friendly. It must be capable of analyzing entire build processes, regardless of the underlying build system. Additionally, it should be suitable for various environments, including CI systems like GitHub Actions and containerized environments, where running privileged profilers such as perf may be restricted.

In conclusion, we require a profiler that can be seamlessly integrated into diverse build processes without demanding elevated privileges.

Installation

On the computer you run the build process

For Ubuntu,

$ sudo apt-get install strace

I'm sure you can install strace on any other distributions easily.

On the computer you want to generate the profile image

$ pip install straceprof

Usage

First, you need to generate a strace log file. You can generate a strace log file using the following command:

strace \
    --trace=execve,execveat,exit,exit_group \
    --follow-forks \
    --string-limit=1000 \
    -ttt \
    --output=<path to strace log file> \
    --seccomp-bpf \
    <command to profile>

Note

Do not change the options for strace command other than --output and <command to profile>. straceprof assumes you run strace with these options.

Then, you can generate a profile graph using the following command:

straceprof \
    --log=<path to strace log file> \
    --output=<path to output image file>

Other options are:

  -h, --help            show this help message and exit
  --log LOG             strace log file
  --output              OUTPUT_IMAGE
                        output plot file
  --minimum-duration-sec MINIMUM_DURATION_SEC
                        The minimum duration of a process to be plotted. Shorter processes are omitted.
  --title TITLE         Title of the plot. When you don't specify this, the path to the log file is used.
  --width WIDTH         Width of the figure in pixels
  --height HEIGHT       Height of the figure in pixels

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

straceprof-0.0.8.tar.gz (279.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

straceprof-0.0.8-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file straceprof-0.0.8.tar.gz.

File metadata

  • Download URL: straceprof-0.0.8.tar.gz
  • Upload date:
  • Size: 279.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for straceprof-0.0.8.tar.gz
Algorithm Hash digest
SHA256 98eea65178b7f0d76b849e9f018d3f630cbf7b6f033b62fea954c2a21df29183
MD5 06010242ea9bb30f57caccedb2f58756
BLAKE2b-256 2091405c472d9777cea30b6a93490bf0be155dbccfbd52bcbf3c0b7326a059be

See more details on using hashes here.

File details

Details for the file straceprof-0.0.8-py3-none-any.whl.

File metadata

  • Download URL: straceprof-0.0.8-py3-none-any.whl
  • Upload date:
  • Size: 7.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for straceprof-0.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 95c5fb0b8efa5f9ad30768c3c4f5d956a7a313a787a406f71fd524dd7e042839
MD5 40e964f0c7101d5b1f053c7e70e85265
BLAKE2b-256 a41a83a2313cfff7363b27809851feaf3832d1d4c9ae02997272bccf68409cd9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page