我使用Babeltrace python3绑定来读取包含debug_info的lttng ust跟踪。当我从shell运行Babeltrace时,我在输出中看到了debug_info:
[13:28:29.998652878] (+0.000000321) hsm-dev lttng_ust_cyg_profile:func_exit: { cpu_id = 1 }, { ip = 0x4008E5, debug_info = { bin = "a.out@0x4008e5", func = "foo+0" }, vpid = 28208, vtid = 28211 }, { addr = 0x4008E5, call_site = 0x400957 }
从python绑定我可以得到其他事件字段(cpu_id,ip,addr,call_site ......)但是我在尝试访问debug_info,bin或func时遇到了关键错误。
import babeltrace
collection = babeltrace.TraceCollection()
collection.add_traces_recursive('lttng-traces/a.out-20170624-132829/', 'ctf')
for e in collection.events:
if e.name == 'lttng_ust_cyg_profile:func_entry':
print(e['addr'])
print(e['func'])
Traceback (most recent call last):
File "fields.py", line 9, in <module>
print(e['func'])
File "/usr/lib/python3/dist-packages/babeltrace.py", line 865, in __getitem__
raise KeyError(field_name)
KeyError: 'func'
有没有办法从Python获取这些字段?
我使用Babeltrace 1.5.2
答案 0 :(得分:2)
还没有。在构建适当的处理图并运行它之后,可以使用Babeltrace 2 Python绑定,但此主要修订版本在此日期(前期)尚未发布。
在Babeltrace 1中有一个hack用于调试信息,其中text
输出&#34;注入&#34;打印时的虚拟字段,但在此之前它们不可用,因此,例如,您无法访问e['func']
的原因。
目前最好的办法是创建一个babeltrace
CLI子流程,一次输出一行,使用正则表达式查找所需的字段。丑陋,但那是今天可用的。