Red Hat Training

A Red Hat training course is available for Red Hat Enterprise Linux

Chapter 5. Setting up to Measure Performance of Applications

Red Hat Enterprise Linux includes several applications that can help a developer identify the causes of application performance loss.

  1. Select the Debugging Tools, Development Tools, and Performance Tools Add-ons during the system installation to install the tools OProfile, perf, and pcp.
  2. Install the tools SystemTap, which allows some types of performance analysis, and Valgrind, which includes modules for performance measurement.

    # yum install valgrind systemtap systemtap-runtime

    NOTE: Red Hat Developer Toolset is shipped as a Software Collection. The scl utility allows you to use it, running commands with the Red Hat Developer Toolset binaries used in preference to the Red Hat Enterprise Linux system equivalent.

  3. Run a SystemTap helper script for setting up the SystemTap environment.

    # stap-prep
    Note

    Running this script installs very large kernel debuginfo packages.

  4. For more frequently updated versions of SystemTap, OProfile, and Valgrind, install the Red Hat Developer Toolset package perftools.

    # yum install devtoolset-9-perftools

Additional Resources