28장. Analyzing system performance with eBPF


You can use the bfptrace and BPF Compiler Collection (BCC) library to create tools for analyzing the performance of your Linux operating system and gathering information, which might be difficult to obtain through other interfaces.

28.1. Using the bpftrace package

bpftrace is a powerful tracing tool for RHEL systems by using the eBPF technology. You can dynamically trace and analyze kernel and user-space events without modifying the kernel code.

Procedure

  1. Install the bpftrace package:

    $ sudo dnf install bpftrace
  2. Run the test:

    $ sudo bpftrace -e 'tracepoint:raw_syscalls:sys_enter { @ = count(); } interval:s:1 { print(@); clear(@); }'

    This command displays a high-level overview of system activity by observing the rate of system calls made.

    You are now ready to use bpftrace. You can explore example scripts located at /usr/share/bpftrace/tools/, learn scripts online or create your own scripts to trace events and analyze system behavior.

Red Hat logoGithubredditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 소개

Red Hat은 기업이 핵심 데이터 센터에서 네트워크 에지에 이르기까지 플랫폼과 환경 전반에서 더 쉽게 작업할 수 있도록 강화된 솔루션을 제공합니다.

보다 포괄적 수용을 위한 오픈 소스 용어 교체

Red Hat은 코드, 문서, 웹 속성에서 문제가 있는 언어를 교체하기 위해 최선을 다하고 있습니다. 자세한 내용은 다음을 참조하세요.Red Hat 블로그.

Red Hat 문서 정보

Legal Notice

Theme

© 2026 Red Hat
맨 위로 이동