forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: remake diagnostic graph packages (autowarefoundation#6715)
Signed-off-by: Takagi, Isamu <[email protected]>
- Loading branch information
1 parent
8adf18e
commit 4917b54
Showing
108 changed files
with
3,429 additions
and
2,292 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
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,7 +1,6 @@ | ||
/**: | ||
ros__parameters: | ||
use_operation_mode_availability: true | ||
use_debug_mode: false | ||
rate: 10.0 | ||
input_qos_depth: 1000 | ||
graph_qos_depth: 1 |
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,10 +1,10 @@ | ||
# Remove | ||
|
||
The `remove` object is a edit that removes other nodes. | ||
The `remove` object is a edit that removes other units. | ||
|
||
## Format | ||
|
||
| Name | Type | Required | Description | | ||
| ------ | -------- | -------- | ---------------------------------------- | | ||
| `type` | `string` | yes | Specify `remove` when using this object. | | ||
| `path` | `string` | yes | The path of the node to remove. | | ||
| `path` | `string` | yes | The path of the unit to remove. | |
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
21 changes: 0 additions & 21 deletions
21
system/diagnostic_graph_aggregator/doc/format/node/remap.md
This file was deleted.
Oops, something went wrong.
18 changes: 9 additions & 9 deletions
18
...ostic_graph_aggregator/doc/format/node.md → ...ostic_graph_aggregator/doc/format/unit.md
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
4 changes: 2 additions & 2 deletions
4
...c_graph_aggregator/doc/format/node/and.md → ...c_graph_aggregator/doc/format/unit/and.md
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
2 changes: 1 addition & 1 deletion
2
...graph_aggregator/doc/format/node/const.md → ...graph_aggregator/doc/format/unit/const.md
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
2 changes: 1 addition & 1 deletion
2
..._graph_aggregator/doc/format/node/diag.md → ..._graph_aggregator/doc/format/unit/diag.md
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
4 changes: 2 additions & 2 deletions
4
..._graph_aggregator/doc/format/node/link.md → ..._graph_aggregator/doc/format/unit/link.md
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,10 +1,10 @@ | ||
# Link | ||
|
||
The `link` object is a node that refers to other nodes. | ||
The `link` object is a unit that refers to another unit. | ||
|
||
## Format | ||
|
||
| Name | Type | Required | Description | | ||
| ------ | -------- | -------- | -------------------------------------- | | ||
| `type` | `string` | yes | Specify `link` when using this object. | | ||
| `link` | `string` | yes | The path of the node to reference. | | ||
| `link` | `string` | yes | The path of the unit to reference. | |
4 changes: 2 additions & 2 deletions
4
...ic_graph_aggregator/doc/format/node/or.md → ...ic_graph_aggregator/doc/format/unit/or.md
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,11 +1,11 @@ | ||
# Or | ||
|
||
The `or` object is a node that is evaluated as the minimum error level of the input nodes. | ||
The `or` object is a unit that is evaluated as the minimum error level of the input units. | ||
Note that error level `stale` is treated as `error`. | ||
|
||
## Format | ||
|
||
| Name | Type | Required | Description | | ||
| ------ | -------------------------------------- | -------- | ------------------------------------ | | ||
| `type` | <code>string</code> | yes | Specify `or` when using this object. | | ||
| `list` | <code>list\[[node](../node.md)]</code> | yes | List of input node objects. | | ||
| `list` | <code>list\[[unit](../unit.md)]</code> | yes | List of input unit objects. | |
21 changes: 21 additions & 0 deletions
21
system/diagnostic_graph_aggregator/doc/format/unit/remap.md
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,21 @@ | ||
# Constant | ||
|
||
!!! warning | ||
|
||
This object is under development. It may be removed in the future. | ||
|
||
The remapping object is a unit that converts error levels. | ||
|
||
## Format | ||
|
||
| Name | Type | Required | Description | | ||
| ------ | ------------------------------- | -------- | ---------------------------------------------- | | ||
| `type` | `string` | yes | Specify remapping type when using this object. | | ||
| `item` | <code>[unit](../unit.md)</code> | yes | Input unit object. | | ||
|
||
## Remapping types | ||
|
||
The supported remapping types are as follows. | ||
|
||
- `warn-to-ok` | ||
- `warn-to-error` |
Oops, something went wrong.