-
Notifications
You must be signed in to change notification settings - Fork 277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(system_diagnostic_monitor): set concrete diag settings for planning/control/vehicle #1239
base: main
Are you sure you want to change the base?
feat(system_diagnostic_monitor): set concrete diag settings for planning/control/vehicle #1239
Conversation
Signed-off-by: Yuki Takagi <[email protected]>
- path: /autoware/modes/local | ||
type: and | ||
list: | ||
- { type: link, link: /autoware/vehicle } | ||
- { type: link, link: /autoware/system } | ||
- { type: link, link: /autoware/control/local } | ||
type: stale | ||
|
||
- path: /autoware/modes/remote | ||
type: and | ||
list: | ||
- { type: link, link: /autoware/vehicle } | ||
- { type: link, link: /autoware/system } | ||
- { type: link, link: /autoware/control/remote } | ||
type: stale |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do not set these types to stale as this will disable local and remote modes.
- { type: link, link: /planning/001-topic_status/route-error } | ||
- { type: link, link: /planning/001-topic_status/trajectory-error } | ||
- { type: link, link: /planning/003-trajectory_finite_validation-error } | ||
- { type: link, link: /planning/004-trajectory_interval_validation-error } | ||
- { type: link, link: /planning/005-trajectory_curvature_validation-error } | ||
- { type: link, link: /planning/006-trajectory_relative_angle_validation-error } | ||
- { type: link, link: /planning/007-trajectory_lateral_acceleration_validation-error } | ||
- { type: link, link: /planning/008-trajectory_acceleration_validation-error } | ||
- { type: link, link: /planning/009-trajectory_deceleration_validation-error } | ||
- { type: link, link: /planning/010-trajectory_steering_validation-error } | ||
- { type: link, link: /planning/011-trajectory_steering_rate_validation-error } | ||
- { type: link, link: /planning/012-trajectory_velocity_deviation_validation-error } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does this number indicate?
@@ -1,90 +1,203 @@ | |||
units: | |||
- path: /autoware/planning | |||
type: short-circuit-and |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The short-circuit-and type means that if an element has an error, the diagnostics for the following elements should not be evaluated. This does not seem to be maintained in the new configuration.
Description
This PR provides concrete diag settings for planning/control/vehicle components
Related links
This PR is a part of #1221
Tests performed
psim and scenario tests
Notes for reviewers
Interface changes
ROS Topic Changes
ROS Parameter Changes
Effects on system behavior
Pre-review checklist for the PR author
The PR author must check the checkboxes below when creating the PR.
In-review checklist for the PR reviewers
The PR reviewers must check the checkboxes below before approval.
Post-review checklist for the PR author
The PR author must check the checkboxes below before merging.
After all checkboxes are checked, anyone who has write access can merge the PR.