Back to home page

OSCL-LXR

 
 

    


0001 RTLA: Real-Time Linux Analysis tools
0002 
0003 The rtla meta-tool includes a set of commands that aims to analyze
0004 the real-time properties of Linux. Instead of testing Linux as a black box,
0005 rtla leverages kernel tracing capabilities to provide precise information
0006 about the properties and root causes of unexpected results.
0007 
0008 Installing RTLA
0009 
0010 RTLA depends on the following libraries and tools:
0011 
0012  - libtracefs
0013  - libtraceevent
0014 
0015 It also depends on python3-docutils to compile man pages.
0016 
0017 For development, we suggest the following steps for compiling rtla:
0018 
0019   $ git clone git://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git
0020   $ cd libtraceevent/
0021   $ make
0022   $ sudo make install
0023   $ cd ..
0024   $ git clone git://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git
0025   $ cd libtracefs/
0026   $ make
0027   $ sudo make install
0028   $ cd ..
0029   $ cd $rtla_src
0030   $ make
0031   $ sudo make install
0032 
0033 For further information, please refer to the rtla man page.