A JS platform that can read TVPP logs and draw its respective graphs.
Install git & node:
apt-get install git nodejs
Clone repo:
git clone https://github.com/ADCDS/tvpp-log-parser.git
Install dependencies:
cd tvpp-log-parser/
npm install
Run:
gulp
Will start a webserver on the port 3000
After loading the page at http://localhost:3000, load the overlay log first, and then the performance log. Example logs can be found at logs/
There is some fancy (kinda multithreaded) implementation of Yen's KSP Algorithm in https://github.com/ADCDS/tvpp-log-parser/blob/master/src/parserLib/Graph/Filter/Tree/Yen/YenKSP.js and Dijkstra's Shortest Path Algorithm in https://github.com/ADCDS/tvpp-log-parser/blob/master/src/parserLib/Graph/Filter/Tree/Dijkstra/DijkstraFilter.js
MIT © Adriel Santos