-h Print usage message.
-t Include a timestamp column.
--utc Include a timestamp column, use UTC timezone.
-x Exclude successful exits, exit( 0 )
-p PID Trace this process ID only (filtered in-kernel).
--label LABEL Label each line with LABEL (default 'exit') in first column (2nd if timestamp is present).
--per-thread Trace per thread termination
Trace all process termination # exitsnoop
Trace all process termination, and include timestamps: # exitsnoop -t
Exclude successful exits, only include non-zero exit codes and fatal signals: # exitsnoop -x
Trace PID 181 only: # exitsnoop -p 181
Label each output line with 'EXIT': # exitsnoop --label EXIT
Trace per thread termination # exitsnoop --per-thread
TIME-TZ Time of process termination HH:MM:SS.sss with milliseconds, where TZ is the local time zone, 'UTC' with --utc option.
LABEL The optional label if --label option is used. This is useful with the -t option for timestamps when the output of several tracing tools is sorted into one combined output.
PID Process ID
PPID The process ID of the process that will be notified of PID termination.
TID Thread ID.
EXIT_CODE The exit code for exit() or the signal number for a fatal signal.
Also look in the bcc distribution for a companion _examples.txt file containing example usage, output, and commentary for this tool.