34 lines · plain
1RTLA: Real-Time Linux Analysis tools2 3The rtla meta-tool includes a set of commands that aims to analyze4the real-time properties of Linux. Instead of testing Linux as a black box,5rtla leverages kernel tracing capabilities to provide precise information6about the properties and root causes of unexpected results.7 8Installing RTLA9 10RTLA depends on the following libraries and tools:11 12 - libtracefs13 - libtraceevent14 15It also depends on python3-docutils to compile man pages.16 17For development, we suggest the following steps for compiling rtla:18 19 $ git clone git://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git20 $ cd libtraceevent/21 $ make22 $ sudo make install23 $ cd ..24 $ git clone git://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git25 $ cd libtracefs/26 $ make27 $ sudo make install28 $ cd ..29 $ cd $rtla_src30 $ make31 $ sudo make install32 33For further information, please refer to the rtla man page.34