-
Notifications
You must be signed in to change notification settings - Fork 288
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add system monitor param file for awsim (#568)
* feat: add system monitor param file for awsim Signed-off-by: tomoya.kimura <[email protected]> * feat: use system_error_monitor.awsim.param in e2e_simulator.launch Signed-off-by: tomoya.kimura <[email protected]> --------- Signed-off-by: tomoya.kimura <[email protected]>
- Loading branch information
Showing
4 changed files
with
62 additions
and
1 deletion.
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
autoware_launch/config/system/system_error_monitor/system_error_monitor.awsim.param.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,52 @@ | ||
# Description: | ||
# name: diag name | ||
# sf_at: diag level where it becomes Safe Fault | ||
# lf_at: diag level where it becomes Latent Fault | ||
# spf_at: diag level where it becomes Single Point Fault | ||
# auto_recovery: Determines whether the system will automatically recover when it recovers from an error. | ||
# | ||
# Note: | ||
# empty-value for sf_at, lf_at and spf_at is "none" | ||
# default values are: | ||
# sf_at: "none" | ||
# lf_at: "warn" | ||
# spf_at: "error" | ||
# auto_recovery: "true" | ||
--- | ||
/**: | ||
ros__parameters: | ||
required_modules: | ||
autonomous_driving: | ||
/autoware/control/autonomous_driving/node_alive_monitoring: default | ||
/autoware/control/autonomous_driving/performance_monitoring/lane_departure: default | ||
/autoware/control/control_command_gate/node_alive_monitoring: default | ||
|
||
/autoware/localization/node_alive_monitoring: default | ||
/autoware/localization/performance_monitoring/matching_score: { sf_at: "warn", lf_at: "none", spf_at: "none" } | ||
/autoware/localization/performance_monitoring/localization_accuracy: { sf_at: "warn", lf_at: "none", spf_at: "none" } | ||
|
||
/autoware/map/node_alive_monitoring: default | ||
|
||
/autoware/perception/node_alive_monitoring: default | ||
|
||
/autoware/planning/node_alive_monitoring: default | ||
/autoware/planning/performance_monitoring/trajectory_validation: default | ||
|
||
# /autoware/sensing/node_alive_monitoring: default | ||
|
||
/autoware/system/node_alive_monitoring: default | ||
/autoware/system/emergency_stop_operation: default | ||
/autoware/system/service_log_checker: { sf_at: "warn", lf_at: "none", spf_at: "none" } | ||
# /autoware/system/resource_monitoring: { sf_at: "warn", lf_at: "none", spf_at: "none" } | ||
|
||
/autoware/vehicle/node_alive_monitoring: default | ||
|
||
external_control: | ||
/autoware/control/control_command_gate/node_alive_monitoring: default | ||
/autoware/control/external_control/external_command_selector/node_alive_monitoring: default | ||
|
||
/autoware/system/node_alive_monitoring: default | ||
/autoware/system/emergency_stop_operation: default | ||
/autoware/system/service_log_checker: { sf_at: "warn", lf_at: "none", spf_at: "none" } | ||
|
||
/autoware/vehicle/node_alive_monitoring: default |
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
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