From 59d7a1e78faa9f8979326d7210b017f7a637b884 Mon Sep 17 00:00:00 2001 From: Christophe Bedard Date: Tue, 31 Dec 2019 21:44:14 -0500 Subject: [PATCH 1/2] Update README after change load_file() to be able to convert trace --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5716d86..e182a72 100644 --- a/README.md +++ b/README.md @@ -44,8 +44,8 @@ from tracetools_analysis import loading from tracetools_analysis import processor from tracetools_analysis import utils -# Load converted trace file -events = loading.load_file('/path/to/converted/file') +# Load trace directory or converted trace file +events = loading.load_file('/path/to/trace/or/converted/file') # Process ros2_handler = processor.Ros2Handler() From 21b6612199242b7316bb8ba73ab8e61f86036d11 Mon Sep 17 00:00:00 2001 From: Christophe Bedard Date: Tue, 31 Dec 2019 21:45:43 -0500 Subject: [PATCH 2/2] Update link to design document --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e182a72..fa1f748 100644 --- a/README.md +++ b/README.md @@ -67,4 +67,4 @@ time_per_thread = cpu_util.get_time_per_thread() ## Design -See the [`ros2_tracing` design document](https://gitlab.com/micro-ROS/ros_tracing/ros2_tracing/blob/master/doc/design_ros_2.md), especially the [*Goals and requirements*](https://gitlab.com/micro-ROS/ros_tracing/ros2_tracing/blob/master/doc/design_ros_2.md#goals-and-requirements) and [*Analysis architecture*](https://gitlab.com/micro-ROS/ros_tracing/ros2_tracing/blob/master/doc/design_ros_2.md#analysis-architecture) sections. +See the [`ros2_tracing` design document](https://gitlab.com/micro-ROS/ros_tracing/ros2_tracing/blob/master/doc/design_ros_2.md), especially the [*Goals and requirements*](https://gitlab.com/micro-ROS/ros_tracing/ros2_tracing/blob/master/doc/design_ros_2.md#goals-and-requirements) and [*Analysis*](https://gitlab.com/micro-ROS/ros_tracing/ros2_tracing/blob/master/doc/design_ros_2.md#analysis) sections.