Add 'ip' context to example profiling launch file

This commit is contained in:
Christophe Bedard 2020-01-18 15:48:47 -05:00
parent 8c954cd0d3
commit 0bb17507e0

View file

@ -17,6 +17,7 @@
from launch import LaunchDescription
from launch_ros.actions import Node
from tracetools_launch.action import Trace
from tracetools_trace.tools.names import DEFAULT_CONTEXT
from tracetools_trace.tools.names import DEFAULT_EVENTS_ROS
@ -35,6 +36,9 @@ def generate_launch_description():
events_kernel=[
'sched_switch',
],
context_names=[
'ip',
] + DEFAULT_CONTEXT,
),
Node(
package='tracetools_test',