forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
V0.8 system launch (autowarefoundation#51)
* tmp rename launch file Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp> * Add system_monitor to system.launch (autowarefoundation#72) * Add system_monitor to system.launch Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Fix typo Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Add config file of system_monitor (autowarefoundation#115) Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Add config of diagnostic_aggregator (autowarefoundation#128) Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Add vehicle cmd gate config (autowarefoundation#136) * Add config_file of vehicle_cmd_gate Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Add use_emergency_stop Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Rename emergency_stop to external_emergency_stop Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Fix command_gate diag Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Add use_emergency_hold arg (autowarefoundation#142) Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Fix system.launch (autowarefoundation#161) Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * Revert "tmp rename launch file" This reverts commit d1bb989eac90f43bab2af6669b00638fd2147eeb. * fix launch file Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp> * fix minor bug Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp> * rename .yaml -> .param.yaml Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp> * fix invalid way to use eval Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp> * Add new line in yaml * add num_disks Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp> * rename .yaml to .param.yaml Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp> Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
- Loading branch information
1 parent
5347ed7
commit 596f775
Showing
4 changed files
with
78 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,5 @@ endif() | |
|
||
ament_auto_package(INSTALL_TO_SHARE | ||
launch | ||
config | ||
) |
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,45 @@ | ||
cpu_monitor: | ||
ros__parameters: | ||
temp_warn: 90.0 | ||
temp_error: 95.0 | ||
usage_warn: 0.90 | ||
usage_error: 1.00 | ||
usage_avg: true | ||
load1_warn: 0.90 | ||
load5_warn: 0.80 | ||
msr_reader_port: 7634 | ||
hdd_monitor: | ||
ros__parameters: | ||
hdd_reader_port: 7635 | ||
num_disks: 2 | ||
disks: # Until multi type lists are allowed, name N the disks as disk0...disk{N-1} | ||
disk0: | ||
name: /dev/sda | ||
temp_warn: 55.0 | ||
temp_error: 70.0 | ||
usage_warn: 0.95 | ||
usage_error: 0.99 | ||
mem_monitor: | ||
ros__parameters: | ||
usage_warn: 0.95 | ||
usage_error: 0.99 | ||
net_monitor: | ||
ros__parameters: | ||
devices: ["*"] | ||
usage_warn: 0.95 | ||
ntp_monitor: | ||
ros__parameters: | ||
server: ntp.nict.jp | ||
offset_warn: 0.1 | ||
offset_error: 5.0 | ||
process_monitor: | ||
ros__parameters: | ||
num_of_procs: 5 | ||
gpu_monitor: | ||
ros__parameters: | ||
temp_warn: 90.0 | ||
temp_error: 95.0 | ||
gpu_usage_warn: 0.90 | ||
gpu_usage_error: 1.00 | ||
memory_usage_warn: 0.95 | ||
memory_usage_error: 0.99 |
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