tracer: tools: add a brief tool description

This commit is contained in:
Stefan Sauer 2017-02-09 15:52:40 +01:00
parent 7da9662d3b
commit e88433a9ce
2 changed files with 5 additions and 0 deletions

View file

@ -1,5 +1,7 @@
#!/usr/bin/env python3
'''
Aggregate values for each tracer event type and print them with some statistics.
How to run:
1) generate some log
GST_DEBUG="GST_TRACER:7" GST_TRACERS="stats;rusage;latency" GST_DEBUG_FILE=trace.log <application>

View file

@ -1,5 +1,8 @@
#!/usr/bin/env python3
'''
Plot buffer pts and events in relation to the wall clock. The plots can be used
to spot anomalies, such as processing gaps.
How to run:
1) generate a log
GST_DEBUG="GST_TRACER:7" GST_TRACERS=stats GST_DEBUG_FILE=trace.log <application>