ROS diagnostics
ROS diagnostics gives you the ability to monitor your system. There are two components in its architecture:
- diagnostic_updater
- diagnostic_aggregator
The diagnostic_updater publishes diagnostic status messages on the /diagnostics
topic, and the aggregator listens to these statuses, aggregates them, and publishes the results on the /diagnostics_agg
topic.
diagnostic_updater
Provide an easy way to publish diagnostic information from node
diagnostic_aggregator
The aggregator collects, categorizes, and groups the statuses from all the system components. You can take a look at what is being published on the /diagnostics and /diagnostics_agg topics with the rqt_runtime_monitor and rqt_robot_monitor tools
install
diagnostics_msg
diagnostic_aggregator
Aggregator is a node that subscribes to /diagnostics
, processes it and republishes aggregated data on /diagnostics_agg
.
The aggregator creates a series of analyzers to handle incoming DiagnosticStatus
Demos
- Diagnostic status function - - minimal implementation as diagnostic function
- DiagnosticTask class - minimal implementation as diagnostic task class
- Builtin tasks (FrequencyStatus)
- Remove task
- Composite task