一,工具简介
eBPF/bcc非常适用于平台性能调优。通过funclatency工具,我们可以分析特定函数的性能,了解该函数的延迟情况。然而,有时性能下降并不是由于函数的延迟,而是函数调用之间的间隔。
funcinterval正是为此而生。
另外,在平台上进行硬件性能调优时,我们将使用协议分析器来分析性能,但大多数协议分析器都缺乏分布特性。使用协议分析器,你需要花费大量时间来检查每个细节的延迟。通过funcinterval,我们可以利用分布特性节省大量时间。
二,代码示例
#!/usr/bin/env pythonfrom __future__ import print_function
from bcc import BPF
from time import sleep, strftime
import argparse
import signal# arguments
examples = """examples:# time the interval of do_sys_open()./funcinterval do_sys_open# time the interval of xhci_ring_ep_doorbell(), in microseconds./funcinterval -u xhci_ring_ep_doorbell# time the interval of do_nanosleep(), in milliseconds./funcinterval -m do_nanosleep# output every 5 seconds, with timestamps./funcinterval -mTi 5 vfs_read# time process 181 only./funcinterval -p 181 vfs_read# time t