Skip to content

Commit 0f0751e

Browse files
authored
feat(diagnostic_converter): fix output metrics topic name and add to converter (#7495)
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
1 parent 1661b79 commit 0f0751e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: launch/tier4_control_launch/launch/control.launch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ def launch_setup(context, *args, **kwargs):
381381
("~/input/diagnostics", "/diagnostics"),
382382
("~/input/odometry", "/localization/kinematic_state"),
383383
("~/input/trajectory", "/planning/scenario_planning/trajectory"),
384-
("~/output/metrics", "~/metrics"),
384+
("~/metrics", "/diagnostic/control_evaluator/metrics"),
385385
],
386386
)
387387

Diff for: launch/tier4_simulator_launch/launch/simulator.launch.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
<!-- Diagnostic Converter -->
148148
<group if="$(var launch_diagnostic_converter)">
149149
<node name="diagnostic_converter" exec="diagnostic_converter" pkg="diagnostic_converter" output="screen">
150-
<param name="diagnostic_topics" value="[/diagnostic/planning_evaluator/metrics, /diagnostics_err]"/>
150+
<param name="diagnostic_topics" value="[/diagnostic/planning_evaluator/metrics, /diagnostic/control_evaluator/metrics, /diagnostics_err]"/>
151151
</node>
152152
</group>
153153

0 commit comments

Comments
 (0)