我使用头文件生成了一个带有 lttng-ust 的事件流,同时包含以下事件声明:
TRACEPOINT_EVENT(
random_chart,
point,
TP_ARGS(
int, value_arg
),
TP_FIELDS(
ctf_integer( int, value, value_arg )
))
在TraceCompass中成功打开它之后,我尝试用XYChart编写分析,将此值流显示为简单的图。我的XML文件包含以下内容:
<?xml version="1.0" encoding="UTF-8"?>
<!-- The state provider assigns states from events -->
<stateProvider id="org.eclipse.linuxtools.ust.random_chart" version="1">
<head>
<traceType id="org.eclipse.linuxtools.lttng2.ust.tracetype" />
<label value="Value chart analysis" />
</head>
<!-- Event handlers -->
<eventHandler eventName="random_chart:point">
<stateChange>
<stateAttribute type="constant" value="Dummy" />
<stateAttribute type="constant" value="Value" />
<stateValue type="eventField" value="value" />
</stateChange>
</eventHandler>
</stateProvider>
<!-- This is the definition of the XY chart view -->
<xyView id="my.test.xy.chart.view">
<head>
<analysis id="org.eclipse.linuxtools.ust.random_chart" />
</head>
<entry path="Dummy/Value">
<display type="constant" value="Value" />
<name type="self" />
</entry>
</xyView>
我看不出它有什么问题(即使在git-repository中读取了所有相关的xml-schema文件之后)。
我可以成功导入,但点击“XML XY图表视图”后,我会在“类型过滤器文本”下看到一个空图和一个(事件流中的最后一个)值。
AFAIK'状态系统资源管理器'向我显示正确的'时间戳值',对应于'完整属性路径'等于'虚拟/值'。可能我会错过一些东西。
EDIT1 :我试图解决,但仍然没有运气:
<entry path="Dummy"> <display type="constant" value="Value" /> <name type="self" /> </entry>
EDIT2:同样的问题:
<entry path="Dummy/Value">
<display type="self" />
<name type="self" />
</entry>
答案 0 :(得分:2)
如果您只有一个带数据的属性,则有两种方法可以解决问题:
1-将regsvr64.exe
更改为<entry path="Dummy/Value">
并保留其余
或
2-保留您的输入并将显示元素更改为<entry path="Dummy">
类型常量的显示意味着它尝试在主路径下读取该名称的属性,所以在这里,它试图读取“Dummy / Value / Value”,它不存在
编辑:以下是您的分析视图部分的工作示例:
<display type="self" />