- 21 Apr, 2018 1 commit
-
-
Alastair Robertson authored
-
- 24 Mar, 2018 2 commits
-
-
Brendan Gregg authored
-
Brendan Gregg authored
-
- 08 Mar, 2018 1 commit
-
-
Brendan Gregg authored
-
- 07 Mar, 2018 2 commits
-
-
Alastair Robertson authored
fix for #18: initializing comm memory
-
Brendan Gregg authored
-
- 06 Mar, 2018 1 commit
-
-
Brendan Gregg authored
-
- 01 Mar, 2018 2 commits
-
-
Alastair Robertson authored
Static linking can be selected with -DSTATIC_LINKING:BOOL=ON
-
Alastair Robertson authored
BCC API for attaching tracing events has been cleaned up - no more perf readers
-
- 28 Feb, 2018 1 commit
-
-
Brendan Gregg authored
-
- 25 Feb, 2018 3 commits
-
-
Alastair Robertson authored
-
Alastair Robertson authored
-
Alastair Robertson authored
-
- 04 Feb, 2018 1 commit
-
-
Alastair Robertson authored
-
- 20 Dec, 2017 1 commit
-
-
Alastair Robertson authored
-
- 16 Dec, 2017 1 commit
-
-
Alastair Robertson authored
-
- 11 Nov, 2017 3 commits
-
-
Alastair Robertson authored
Store number of online CPUs, so we don't need to read /sys/devices/system/cpu/online while probes are running
-
Alastair Robertson authored
e.g. kprobe:[Ss]y[Ss]_read { ... }
-
Alastair Robertson authored
-
- 06 Nov, 2017 1 commit
-
-
Alastair Robertson authored
-
- 30 Oct, 2017 2 commits
-
-
Alastair Robertson authored
-
Alastair Robertson authored
-
- 10 Sep, 2017 8 commits
-
-
Alastair Robertson authored
-
Alastair Robertson authored
-
Alastair Robertson authored
tracepoint:random:*_read { ... } kprobe:sys_read, uprobe:/bin/bash:readline { ... }
-
Alastair Robertson authored
-
Alastair Robertson authored
-
Alastair Robertson authored
-
Alastair Robertson authored
-
Alastair Robertson authored
-
- 09 Sep, 2017 3 commits
-
-
Alastair Robertson authored
-
Alastair Robertson authored
Previously the auto-generated key type was the same as the value type, which made maps containing string values use far more stack memory than they should when accessing them.
-
Alastair Robertson authored
Commit 3dd703a5 didn't fix it as intended
-
- 06 Sep, 2017 5 commits
-
-
Alastair Robertson authored
-
Alastair Robertson authored
For count() maps, sort by value For others, sort by key
-
Alastair Robertson authored
BPF programs can't span multiple functions - add always inliner pass so multiple calls to strcmp will work. LLVM version-independent workaround from BCC
-
Alastair Robertson authored
e.g. @x = "a"; @y = @x;
-
Alastair Robertson authored
-
- 20 Aug, 2017 2 commits
-
-
Alastair Robertson authored
Fixes case where two printf statements might have the same format string but still require their outputs to be displayed differently. This can happen with the new func builtin, which is printed as a string, but passes through an address to be symbolicated. e.g. kprobe:sys_open { printf("hi %s\n", func); printf("hi %s\n", comm) }
-
Alastair Robertson authored
Improves accuracy and efficiency
-