The documentation in android says
you can use the methods of the Trace class to add instrumentation to
your application code and see the results in a Systrace report.
I have added the below methods to my code
Trace.beginSection("test-trace");
// block of code
Trace.endSection();
Now where can I check the results of this section. I start the systrace tool from the android device monitor and recorded it for 30 secs(performed the button click that executes the above the block). It generates the trace.html file but how do i get the above section information from this html file