Scroll to navigation

UFTRACE-TUI(1) UFTRACE-TUI(1)

NAME

uftrace-tui - (Interactive) Text-based User Interface

SYNOPSIS

uftrace tui [options]

DESCRIPTION

This command starts an interactive window on a terminal which can show same output of other commands like graph, report and info. Users can navigate the result easily with key presses. The command line options are used to limit the initial data loading.

OPTIONS

-F FUNC, --filter=FUNC
Set filter to trace selected functions only. This option can be used more than once. See uftrace-replay(1) for an explanation of filters.
-N FUNC, --notrace=FUNC
Set filter not to trace selected functions (or the functions called underneath them). This option can be used more than once. See uftrace-replay(1) for an explanation of filters.
-T TRG, --trigger=TRG
Set trigger on selected functions. This option can be used more than once. See uftrace-replay(1) for an explanation of triggers.
-t TIME, --time-filter=TIME
Do not show functions which run under the time threshold. If some functions explicitly have the `trace' trigger applied, those are always traced regardless of execution time.
--tid=TID[,TID,...]
Only print functions called by the given threads. To see the list of threads in the data file, you can use uftrace report --threads or uftrace info. This option can also be used more than once.
-D DEPTH, --depth DEPTH
Set trace limit in nesting level.
-r RANGE, --time-range=RANGE
Only show functions executed within the time RANGE. The RANGE can be <start>~<stop> (separated by “~”) and one of <start> and <stop> can be omitted. The <start> and <stop> are timestamp or elapsed time if they have <time_unit> postfix, for example `100us'. The timestamp or elapsed time can be shown with -f time or -f elapsed option respectively in uftrace replay(1).
--demangle=TYPE
Use demangled C++ symbol names for filters, triggers, arguments and/or return values. Possible values are “full”, “simple” and “no”. Default is “simple” which ignores function arguments and template parameters.
–match=TYPE
Use pattern match using TYPE. Possible types are regex and glob. Default is regex.
--no-event
Do not show any events.

OUTLINE

If there's only one session (the usual case) it'll start with the graph mode to show a full (function) call graph of the session. Users can change to different mode by pressing some keys. The h key always is available for help.

The current line (marked with `>' below) is displayed with inverted color and arrow keys are used to move the cursor to a different location.


 TOTAL TIME : FUNCTION
>  7.548 us : (1) t-abc
   1.811 us :  ├─(1) __monstartup
            :  │
   1.266 us :  ├─(1) __cxa_atexit
            :  │
   4.471 us :  └─(1) main
   3.743 us :    (1) a
   3.194 us :    (1) b
   2.454 us :    (1) c
   1.000 us :    (1) getpid
 
 uftrace graph: session 2a22812ebbd06f40 (/tmp/uftrace/tests/t-abc)

    

If there're more than one session, it'll start with session selection mode. The graph mode is separated for each session but report mode is merged for the whole sessions.


 Key uftrace command
> G  call Graph for session #1: t-forkexec
     call Graph for session #2: t-abc
  R  Report functions
  I  uftrace Info
  h  Help message
  q  quit
 
 session a27acff69aec5c9c:  exe image: /tmp/uftrace/tests/t-forkexec

    

KEYS

Following keys can be used in the TUI window:
Up, Down: Move cursor up/down
PageUp, PageDown: Move page up/down
Home, End: Move to the first/last entry
Enter: Select. Fold/Unfold current function (in graph mode)
G: Show full graph of the current session
g: Show backtrace and call graph of the current function
R: Show uftrace report
I: Show uftrace info
S: Show session list
O: Open editor for current function
c/e: Collapse/Expand graph node
n/p: Move to next/prev sibling (in graph mode)
u: Move up to parent (in graph mode)
l: Move to the longest executed child (in graph mode)
j/k: Move cursor up/down (like vi)
/: Start search
</P: Search previous match
>/N: Search next match
v: Show debug message
h/?: Show help window
q: Quit

SEE ALSO

uftrace(1), uftrace-graph(1), uftrace-report(1), uftrace-info(1), uftrace-replay(1)

AUTHORS

Namhyung Kim <namhyung@gmail.com>.
Jun, 2018 Uftrace User Manuals