Home
last modified time | relevance | path

Searched full:exitsnoop (Results 1 – 11 of 11) sorted by relevance

/external/bcc/man/man8/
Dexitsnoop.81 .TH exitsnoop 8 "2019-05-28" "USER COMMANDS"
3 exitsnoop \- Trace all process termination (exit, fatal signal). Uses Linux eBPF/bcc.
5 .B exitsnoop [\-h] [\-t] [\-\-utc] [\-x] [\-p PID] [\-\-label LABEL] [\-\-per\-thread]
7 exitsnoop traces process termination, showing the command name and reason for
45 .B exitsnoop
49 .B exitsnoop \-t
53 .B exitsnoop \-x
57 .B exitsnoop \-p 181
61 .B exitsnoop \-\-label EXIT
65 .B exitsnoop \-\-per\-thread
/external/bcc/tools/
Dexitsnoop_example.txt1 Demonstrations of exitsnoop.
14 # ./exitsnoop.py > exitlog &
19 ./exitsnoop.py > exitlog
49 # ./exitsnoop.py -t --utc -x --label= > exitlog &
54 ./exitsnoop.py -t --utc -x --label= > exitlog
69 # ./exitsnoop.py -h
70 usage: exitsnoop.py [-h] [-t] [--utc] [-p PID] [--label LABEL] [-x] [--per-thread]
84 exitsnoop # trace all process termination
85 exitsnoop -x # trace only fails, exclude exit(0)
86 exitsnoop -t # include timestamps (local time)
[all …]
Dexitsnoop.py17 # exitsnoop Trace all process termination (exit, fatal signal)
20 # USAGE: exitsnoop [-h] [-x] [-t] [--utc] [--label[=LABEL]] [-p PID]
23 exitsnoop # trace all process termination
24 exitsnoop -x # trace only fails, exclude exit(0)
25 exitsnoop -t # include timestamps (local time)
26 exitsnoop --utc # include timestamps (UTC)
27 exitsnoop -p 181 # only trace PID 181
28 exitsnoop --label=exit # label each output line with 'exit'
29 exitsnoop --per-thread # trace per thread termination
50 04-May-2019 Arturo Martin-de-Nicolas (Instana) Created exitsnoop
/external/bcc/libbpf-tools/
Dexitsnoop.c4 * exitsnoop Trace process termination.
8 * Based on exitsnoop(8) from BCC by Arturo Martin-de-Nicolas & Jeroen Soeters.
21 #include "exitsnoop.h"
22 #include "exitsnoop.skel.h"
43 const char *argp_program_version = "exitsnoop 0.1";
49 "USAGE: exitsnoop [-h] [-t] [-x] [-p PID] [-T] [-c CG]\n"
52 " exitsnoop # trace process exit events\n"
53 " exitsnoop -t # include timestamps\n"
54 " exitsnoop -x # trace error exits only\n"
55 " exitsnoop -p 1216 # only trace PID 1216\n"
[all …]
DAndroid.bp645 // The following tools viz. exitsnoop, biopattern and bitesize
657 name: "exitsnoop.bpf.o",
658 srcs: ["exitsnoop.bpf.c"],
663 name: "exitsnoop.skel.h",
664 srcs: [":exitsnoop.bpf.o"],
665 out: ["exitsnoop.skel.h"],
670 name: "exitsnoop",
671 srcs: ["exitsnoop.c"],
672 generated_headers: ["exitsnoop.skel.h"],
D.gitignore19 /exitsnoop
Dexitsnoop.bpf.c6 #include "exitsnoop.h"
DMakefile53 exitsnoop \
/external/bcc/snap/
Dsnapcraft.yaml155 exitsnoop:
156 command: bcc-wrapper exitsnoop
/external/bcc/
DREADME.md113 - tools/[exitsnoop](tools/exitsnoop.py): Trace process termination (exit and fatal signals). [Examp…
/external/bcc/debian/
Dchangelog94 * new libbpf-tools: filetop, exitsnoop, tcprtt