commit | b5d85cef9db8fcb72fe152d37ad098363141b008 | [log] [tgz] |
---|---|---|
author | Joel Fernandes <joelaf@google.com> | Thu Jun 29 14:28:07 2017 -0700 |
committer | Joel Fernandes <joelaf@google.com> | Thu Jun 29 14:28:07 2017 -0700 |
tree | 3bbc773b10a08b413c6866c998afa53c077db112 | |
parent | fd162b6790ae666d00624faa339e402a11e16e1d [diff] |
Revert "trappy: Speed up trappy parsing by 20% by skipping regex sub" This reverts commit c9243e261fb37be1b1149ae6d111e18745b75959.
TRAPpy (Trace Analysis and Plotting in Python) is a visualization tool to help analyze data generated on a device. It parses ftrace-like logs and creates in-memory data structures to be used for plotting and data analysis.
The following instructions are for Ubuntu 14.04 LTS but they should also work with Debian jessie. Older versions of Ubuntu or Debian (e.g. Ubuntu 12.04 or Debian wheezy) will likely require to install more packages from pip as the ones present in Ubuntu 12.04 or Debian wheezy will probably be too old.
$ sudo apt install trace-cmd kernelshark
$ sudo apt install python-pip python-dev
$ sudo apt install libfreetype6-dev libpng12-dev python-nose $ sudo pip install numpy matplotlib pandas ipython[all]
$ sudo pip install --upgrade trappy
Now launch the ipython notebook server:
$ ipython notebook
This should pop up a browser. If it doesn't, open a web browser and go to http://localhost:8888/tree/
In the doc/
folder there's a 00 - Quick start
which describes how to run TRAPpy. Other notebooks in that directory describe other functions of TRAPpy.
API reference can be found in https://pythonhosted.org/TRAPpy/
The code of the TRAPpy toolkit with all the supported tests and Notebooks can be cloned from the official GitHub repository with this command:
$ git clone https://github.com/ARM-software/trappy.git
An easy way to test your installation is to use the nosetests
command from TRAPpy's home directory:
$ nosetests
If the installation is correct all tests will succeed.