-p PID Display the USDT probes from all the libraries loaded by the specified process.
-l LIB Display the USDT probes from the specified library or executable. If the librar or executable can be found in the standard paths, a full path is not required.
-v Increase the verbosity level. Can be used to display the variables, locations, and arguments of tracepoints and USDT probes.
[filter] A wildcard expression that specifies which tracepoints or probes to print. For example, block:* will print all block tracepoints (block:block_rq_complete, etc.). Regular expressions are not supported.
Print all kernel tracepoints: # tplist
Print all net tracepoints with their format: # tplist -v 'net:*'
Print all USDT probes in libpthread: $ tplist -l pthread
Print all USDT probes in process 4717 from the libc provider: $ tplist -p 4717 'libc:*'
Print all the USDT probes in the node executable: $ tplist -l node