-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Yuki Takagi <[email protected]>
- Loading branch information
1 parent
c42bd46
commit dbef316
Showing
4 changed files
with
124 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
80 changes: 75 additions & 5 deletions
80
autoware_launch/config/system/system_diagnostic_monitor/perception.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,86 @@ | ||
units: | ||
- path: /autoware/perception | ||
- path: /perception/autonomous_available | ||
type: and | ||
list: | ||
- { type: link, link: /autoware/perception/topic_rate_check/objects } | ||
- { type: link, link: /autoware/perception/topic_rate_check/pointcloud } | ||
- { type: link, link: /perception/emergency_stop } | ||
- { type: link, link: /perception/pull_over } | ||
- { type: link, link: /perception/comfortable_stop } | ||
|
||
- path: /autoware/perception/topic_rate_check/objects | ||
- path: /perception/pull_over_available | ||
type: and | ||
list: | ||
- { type: link, link: /perception/emergency_stop } | ||
- { type: link, link: /perception/comfortable_stop } | ||
|
||
- path: /perception/comfortable_stop_available | ||
type: and | ||
list: | ||
- { type: link, link: /perception/emergency_stop } | ||
|
||
# ******************************************************************************* | ||
# NOTE: Please modify this section according to your environment and requirements. | ||
# ******************************************************************************* | ||
- path: /perception/emergency_stop | ||
type: and | ||
list: | ||
- { type: link, link: /perception/001-topic_status/traffic_signals-error } | ||
- { type: link, link: /perception/001-topic_status/objects-error } | ||
- { type: link, link: /perception/001-topic_status/pointcloud-error } | ||
- { type: link, link: /perception/002-detection_delay-error } | ||
|
||
- path: /perception/comfortable_stop | ||
type: and | ||
|
||
- path: /perception/pull_over | ||
type: and | ||
|
||
- path: /perception/none | ||
type: and | ||
|
||
- path: /perception/001-topic_status/traffic_signals-error | ||
type: warn-to-ok | ||
item: | ||
type: link | ||
link: /perception/001-topic_status/traffic_signals | ||
|
||
- path: /perception/001-topic_status/objects-error | ||
type: warn-to-ok | ||
item: | ||
type: link | ||
link: /perception/001-topic_status/objects | ||
|
||
- path: /perception/001-topic_status/pointcloud-error | ||
type: warn-to-ok | ||
item: | ||
type: link | ||
link: /perception/001-topic_status/pointcloud | ||
|
||
- path: /perception/002-detection_delay-error | ||
type: warn-to-ok | ||
item: | ||
type: link | ||
link: /perception/002-detection_delay | ||
|
||
- path: /perception/001-topic_status/traffic_signals | ||
type: diag | ||
node: topic_state_monitor_traffic_light_recognition_traffic_signals | ||
name: perception_topic_status | ||
timeout: 1.0 | ||
|
||
- path: /perception/001-topic_status/objects | ||
type: diag | ||
node: topic_state_monitor_object_recognition_objects | ||
name: perception_topic_status | ||
timeout: 1.0 | ||
|
||
- path: /autoware/perception/topic_rate_check/pointcloud | ||
- path: /perception/001-topic_status/pointcloud | ||
type: diag | ||
node: topic_state_monitor_obstacle_segmentation_pointcloud | ||
name: perception_topic_status | ||
timeout: 1.0 | ||
|
||
- path: /perception/002-detection_delay | ||
type: diag | ||
node: multi_object_tracker | ||
name: Perception delay check from original header stamp | ||
timeout: 1.0 |
35 changes: 35 additions & 0 deletions
35
autoware_launch/config/system/system_diagnostic_monitor/sensing.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
units: | ||
- path: /sensing/autonomous_available | ||
type: and | ||
list: | ||
- { type: link, link: /sensing/emergency_stop } | ||
- { type: link, link: /sensing/pull_over } | ||
- { type: link, link: /sensing/comfortable_stop } | ||
|
||
- path: /sensing/pull_over_available | ||
type: and | ||
list: | ||
- { type: link, link: /sensing/emergency_stop } | ||
- { type: link, link: /sensing/comfortable_stop } | ||
|
||
- path: /sensing/comfortable_stop_available | ||
type: and | ||
list: | ||
- { type: link, link: /sensing/emergency_stop } | ||
|
||
# ******************************************************************************* | ||
# NOTE: Please modify this section according to your environment and requirements. | ||
# ******************************************************************************* | ||
- path: /sensing/emergency_stop | ||
type: and | ||
# - { type: link, link: /sensing/radar/001-connection } | ||
|
||
- path: /sensing/pull_over | ||
type: and | ||
|
||
- path: /sensing/comfortable_stop | ||
type: and | ||
|
||
- path: /sensing/none | ||
type: and | ||
|