Difference between revisions of "Advantech Robotic Suite/ROS2 DBMS"
Eric.liang (talk | contribs) (→Step 3: List all ros2 bag files storaged on DBMS server.) |
m (Ray.zheng moved page Robotic Dev SDK/ROS2 DBMS to Advantech Robotic Suite/ROS2 DBMS) |
||
(7 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | + | = Introduction = | |
− | + | <span style="font-size:large;">ros2bag is a command line tool for recording data published on topics in your system, it provide record and replay ROS data of all types to data analysis and debugging purposes, given various use cases for this data logging, rosbags can contain either very simple data such as a trajectory of a robotics end effector up to highly complex data such as autonomous vehicle with multiple redundant high resolution sensors, recording topics is also a great way to share your work and allow others to recreate it.</span> | |
− | + | <div><span style="font-size:x-large;">'''Features:'''</span></div> | |
− | + | *<span style="font-size:large;">Start / Stop recording </span> | |
− | + | *<span style="font-size:large;">Recycle mode ( it will keep recording data every hour and delete bag files older than 24 hours ) </span> | |
− | *Start / Stop recording < | + | *<span style="font-size:large;">List all of recording files </span> |
+ | *<span style="font-size:large;">Export recording data </span> | ||
| | ||
Line 22: | Line 23: | ||
[[File:ROS2 DBMS RESTful API.png|none|ROS2 DBMS RESTful API]] | [[File:ROS2 DBMS RESTful API.png|none|ROS2 DBMS RESTful API]] | ||
− | {| | + | {| |
− | + | |- | |
− | + | | | |
− | |||
== <big>Step 1: Check ros2bag service status.</big> == | == <big>Step 1: Check ros2bag service status.</big> == | ||
Line 46: | Line 46: | ||
== <big>Step 3: List all ros2 bag files storaged on DBMS server.</big> == | == <big>Step 3: List all ros2 bag files storaged on DBMS server.</big> == | ||
− | These bag files will be named and sorted by standard UNIX timestamp ( Example: 2022-12-26-16-14-209_0 ) . | + | These bag files will be named and sorted by standard UNIX timestamp ( Example: 2022-12-26-16-14-209_0 ) . |
[[File:ROS2 DBMS step3.png|1200x900px|ROS2 DBMS step3]] | [[File:ROS2 DBMS step3.png|1200x900px|ROS2 DBMS step3]] | ||
− | == <big>Step 4: Get the specified ros2 bag | + | == <big>Step 4: Get the specified ros2 bag file information.</big> == |
[[File:ROS2 DBMS step4.png|1200x900px|ROS2 DBMS step4]] | [[File:ROS2 DBMS step4.png|1200x900px|ROS2 DBMS step4]] | ||
Line 57: | Line 57: | ||
[[File:ROS2 DBMS step5.png|1200x900px|ROS2 DBMS step5]] | [[File:ROS2 DBMS step5.png|1200x900px|ROS2 DBMS step5]] | ||
+ | |||
+ | |- | ||
+ | | | ||
+ | |} |
Latest revision as of 03:24, 5 March 2024
Contents
Introduction
ros2bag is a command line tool for recording data published on topics in your system, it provide record and replay ROS data of all types to data analysis and debugging purposes, given various use cases for this data logging, rosbags can contain either very simple data such as a trajectory of a robotics end effector up to highly complex data such as autonomous vehicle with multiple redundant high resolution sensors, recording topics is also a great way to share your work and allow others to recreate it.
- Start / Stop recording
- Recycle mode ( it will keep recording data every hour and delete bag files older than 24 hours )
- List all of recording files
- Export recording data
How To
User can access the ros2 bag to record ROS 2 data by DBMS/ros2bag RESTful APIs.
DBMS/ros2bag API Documentation
URL : http://ServerIP:8080/dbms/ros/api-docs
Step 1: Check ros2bag service status.If "record": "start" it means ros2bag is recording, if "record": "stop" it means ros2bag is stop recording.
Step 2: Start record.Enter topics you want to record, you can enter multiple topics separated by blank. Then the ros2bag service status will become "record": "start". Step 3: List all ros2 bag files storaged on DBMS server.These bag files will be named and sorted by standard UNIX timestamp ( Example: 2022-12-26-16-14-209_0 ) . Step 4: Get the specified ros2 bag file information.Step 5: Download the specified ros2 bag file. |