ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
The rosbag tool already does basically what you ask, e.g.
rosbag record --all
It records topic data efficiently to disk, which allows you to do offline processing (using the rosbag library). Efficiency is important as it's generally not a good idea to subscribe to all topics (it creates a huge performance drain).