No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.
Package Summary
Tags | No category tags. |
Version | 3.2.6 |
License | Apache-2.0 |
Build type | AMENT_PYTHON |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/nvidia-isaac-ros/isaac_ros_mission_client.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-04-03 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
ROS2 service to monitor node status
Additional Links
No additional links.
Maintainers
- Isaac ROS Maintainers
Authors
- Yu Zhou
Isaac ROS Mega Node Monitor
Overview
The Isaac ROS Mega Node Monitor provides a ROS 2 service to monitor the status of both regular and lifecycle nodes. It is particularly useful for:
- Verifying navigation stack components are running
- Checking system health
- Debugging node startup issues
Usage
1. Launch with Navigation Stack
The monitor is automatically launched with the navigation stack:
ros2 launch nova_carter_bringup navigation_in_mega.launch.py mode:=mega enable_navigation:=true enable_3d_lidar_costmap:=true enable_2d_lidar_costmap:=true enable_nvblox_costmap:=false
2. Check Node Status
Call the service to check node status:
ros2 service call /check_nodes_alive std_srvs/srv/Trigger
Response Format
The service returns a JSON-formatted response with two fields:
-
success
(boolean):-
true
if all monitored nodes are alive and active -
false
if any nodes are dead or inactive
-
-
message
(JSON string):
{
"status": "healthy", // or "unhealthy"
"dead_nodes": [], // list of nodes that are not running
"inactive_lifecycle_nodes": [], // list of lifecycle nodes not in active state
"alive_nodes": [] // list of healthy nodes
}
Example responses:
success: False
message: {
"status": "unhealthy",
"dead_nodes": [
"front_3d_lidar/flatscan_to_laserscan",
"front_3d_lidar/pointcloud_to_flatscan",
"global_costmap/global_costmap",
"local_costmap/local_costmap"
],
"inactive_lifecycle_nodes": [
"behavior_server",
"bt_navigator",
"controller_server",
"planner_server",
"smoother_server",
"velocity_smoother",
"waypoint_follower"
],
"alive_nodes": [
"navigation_container",
"nova_container"
]
}
Configuration
The nodes to monitor are configured in:
config/node_monitor_config.yaml
mega_node_monitor_service:
ros__parameters:
# Regular nodes to monitor
monitored_nodes:
- "front_3d_lidar/flatscan_to_laserscan"
- "front_3d_lidar/pointcloud_to_flatscan"
- "navigation_container"
- "nova_container"
# Lifecycle nodes to monitor
monitored_lifecycle_nodes:
- "behavior_server"
- "bt_navigator"
- "controller_server"
- "planner_server"
- "smoother_server"
CHANGELOG
No CHANGELOG found.
Wiki Tutorials
This package does not provide any links to tutorials in it's rosindex metadata.
You can check on the ROS Wiki Tutorials page for the package.
Package Dependencies
Deps | Name |
---|---|
rclpy | |
std_srvs | |
ament_copyright | |
ament_flake8 | |
ament_pep257 |
System Dependencies
Name |
---|
python3-pytest |
Dependant Packages
Name | Deps |
---|---|
nova_carter_bringup |
Launch files
No launch files found
Messages
No message files found.
Services
No service files found
Plugins
No plugins found.
Recent questions tagged isaac_ros_mega_node_monitor at Robotics Stack Exchange
No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.