profile是用于追踪程序执行调用流程的工具,类似于perf中的-g指令

相比perf -g而言,profile功能化更加细分,可以根据需要选择追踪层面,例如-U(用户要调用流程) -K (内核态调用流程)

下面具体介绍该工具的使用

采用profile --help,我们可以看到如下介绍:

usage: profile [-h] [-p PID] [-U | -K] [-F FREQUENCY | -c COUNT] [-d] [-a]
[-f] [--stack-storage-size STACK_STORAGE_SIZE] [-C CPU]
[duration] Profile CPU stack traces at a timed interval positional arguments:
duration duration of trace, in seconds # profile的持续时间 optional arguments:
-h, --help show this help message and exit
-p PID, --pid PID profile this PID only # 只追踪该pid的调用流程
-U, --user-stacks-only                   # 查看用户态函数调用流程
show stacks from user space only (no kernel space
stacks)
-K, --kernel-stacks-only                  # 只查看内核态调用流程
show stacks from kernel space only (no user space
stacks)
-F FREQUENCY, --frequency FREQUENCY # profile追踪采样频率 例如: -F 99 表示按照99hz的频率进行采样,默认是采用的49hz
sample frequency, Hertz
-c COUNT, --count COUNT                   # 选择采样次数 -c 5表示在周期内采样5次,-c和-F两者不能同时使用
sample period, number of events
-d, --delimited insert delimiter between kernel/user stacks # 在内核和用户态之间插入分界符 “---”
-a, --annotations add _[k] annotations to kernel frames # 在显示的内核函数后面标记 '[k]'标识
-f, --folded output folded format, one line per stack (for flame #采用横向线上模式 xxx;xxx_1;xxxxx_2
graphs)
--stack-storage-size STACK_STORAGE_SIZE                 # 设置调用栈的使用空间和默认支持空间大小
the number of unique stack traces that can be stored
and displayed (default )
-C CPU, --cpu CPU cpu number to run profile on           # 允许几个cpu运行profile程序      examples:
./profile # profile stack traces at Hertz until Ctrl-C
./profile -F # profile stack traces at Hertz
./profile -c # profile stack traces every in a million events
./profile # profile at Hertz for seconds only
./profile -f # output in folded format for flame graphs
./profile -p # only profile threads for PID
./profile -U # only show user space stacks (no kernel)
./profile -K # only show kernel space stacks (no user)

下面对相关重要指令进行测试分析:

    1. profile -f

      在没有添加-f参数时,可看出是一行线上一个函数调用信息

      加入-f参数后,采用每行递增线上函数调用信息。

    2. profile -d  :用于将内核态和用户态函数通过"--"分割开来,如下图红色框框所示

      3.profile -F  :用于设置该工具采样频率

      

      4. profile -K -a :用于仅显示内核调用函数,并且在函数后面增加"_[K]"标识 (156标识进程id号)

      

      5. profile -c :在采样周期内对每一个线程xx个event进行采样

      

最新文章

  1. 【mysql】关于硬件方面的一些优化
  2. Glusterfs分布式存储介绍(一)
  3. 查看Oracle数据库的用户名和密码
  4. Hyper-V性能监控_CPU
  5. iOS_SN_BlueTooth( 一)蓝牙相关基础知识
  6. android launcher开发之图标背景以及默认配置
  7. SqlParameter参数类型为int32时候的传值陷阱
  8. 对比requirejs更好的理解seajs
  9. LeetCode 532. K-diff Pairs in an Array (在数组中相差k的配对)
  10. Python内置函数(17)——divmod
  11. jeecg开发环境搭建
  12. linux----------启动network的时候报错Job for network.service failed because the control process exited with error code. See "systemctl status network.service" and "journalctl -xe" for details.
  13. 自学Python5.4-类 _init_方法
  14. JavaScript的案例(数据校验,js轮播图,页面定时弹窗)
  15. mitmproxy实践
  16. php实现rar文件的读取和解压
  17. 算法工程师进化-SQL
  18. Jni的Jclass JmethodID JfrieldID的差异
  19. [AGC025D]Choosing Points
  20. beego数据输出

热门文章

  1. vue中key的作用
  2. Collections 工具类常见方法
  3. vs code自动生成html代码
  4. Shiro学习(18)并发人数限制
  5. Android中的Handler,Looper,Message机制
  6. Windows系统文件夹共享与隐藏共享
  7. mongodb副本集的内部机制(借鉴lanceyan.com)
  8. SDNU 1217 CD收藏——并查集
  9. linux进阶之路(一):linux入门
  10. 2、获取APP CPU占用率