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 \
    --absolute-timestamps=format:unix,precision:us \
    --output=straceprof.log \
    <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 \
    --absolute-timestamps=format:unix,precision:us \
    --output=<path to strace log file> \
    <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.5.tar.gz (666.7 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.5-py3-none-any.whl (7.3 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for straceprof-0.0.5.tar.gz
Algorithm Hash digest
SHA256 b8e7dc0c46696e39cfbc67162a67a3ef38281b223e711e929077e76304227c06
MD5 759b55304776d71d91122c2b15f0a939
BLAKE2b-256 400cc93b917d92b0b26f708f798b617de45c07832bd6ba5015f26f7d2a6b4873

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for straceprof-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 e2f0f86fbe710e8f7442202d6a7b01aa6fafb24d0eb3f0d64989f51a4df1d72a
MD5 ca85066700119fed665228a7547835b4
BLAKE2b-256 cf50e9c41a0ac62fd8e4635d1ad7050cbb67d76a5660c7f1e9c81b492e899d1c

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