-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathplugin.xml
More file actions
61 lines (61 loc) · 2.69 KB
/
plugin.xml
File metadata and controls
61 lines (61 loc) · 2.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.linuxtools.tmf.core.tracetype">
<type
category="org.eclipse.linuxtools.tmf.ctf.core.category.ctf"
event_type="org.eclipse.tracecompass.tmf.ctf.core.event.CtfTmfEvent"
id="org.eclipse.linuxtools.lttng2.kernel.tracetype"
isDirectory="true"
name="%tracetype.type.kernel"
trace_type="org.eclipse.tracecompass.lttng2.kernel.core.trace.LttngKernelTrace">
</type>
</extension>
<extension
point="org.eclipse.linuxtools.tmf.core.analysis">
<module
analysis_module="org.eclipse.tracecompass.analysis.counters.core.CounterAnalysis"
automatic="true"
icon="icons/runtime.gif"
id="org.eclipse.tracecompass.analysis.counters.core.counteranalysis"
name="Counters">
<tracetype
class="org.eclipse.tracecompass.lttng2.kernel.core.trace.LttngKernelTrace">
</tracetype>
</module>
</extension>
<extension
point="org.eclipse.linuxtools.tmf.analysis.xml.core.files">
<xmlfile
file="analysis.xml/org.eclipse.tracecompass.internal.lttng2.kernel.core.analysis.xml.futex/futex_analysis_lttng.xml">
</xmlfile>
<xmlfile
file="analysis.xml/org.eclipse.tracecompass.internal.lttng2.kernel.core.analysis.xml.irq/irq_analysis_lttng.xml">
</xmlfile>
</extension>
<extension
point="org.eclipse.tracecompass.analysis.os.linux.core.graph.handler">
<handler
class="org.eclipse.tracecompass.internal.lttng2.kernel.core.analysis.graph.building.LttngGraphHandlerBuilder$HandlerBuilderStatedump"
priority="3" />
<handler
class="org.eclipse.tracecompass.internal.lttng2.kernel.core.analysis.graph.building.LttngGraphHandlerBuilder$HandlerBuilderSched"
priority="4" />
<handler
class="org.eclipse.tracecompass.internal.lttng2.kernel.core.analysis.graph.building.LttngGraphHandlerBuilder$HandlerBuilderEventContext"
priority="5" />
<handler
class="org.eclipse.tracecompass.internal.lttng2.kernel.core.analysis.graph.building.LttngGraphHandlerBuilder$HandlerBuilderExecutionGraph"
priority="10" />
</extension>
<extension
point="org.eclipse.linuxtools.tmf.core.analysis">
<parameterProvider
class="org.eclipse.tracecompass.internal.lttng2.kernel.core.criticalpath.CriticalPathParameterProvider">
<analysisId
id="org.eclipse.tracecompass.analysis.graph.core.criticalpath">
</analysisId>
</parameterProvider>
</extension>
</plugin>