Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bcc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
bcc
Commits
dd60805d
Commit
dd60805d
authored
May 26, 2016
by
Brenden Blanco
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #552 from evverx/install-tools-old
Install tools/old
parents
f67a7af5
1680b32a
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
0 deletions
+10
-0
man/man8/memleak.8
man/man8/memleak.8
+1
-0
man/man8/offcputime.8
man/man8/offcputime.8
+1
-0
man/man8/stackcount.8
man/man8/stackcount.8
+1
-0
man/man8/stacksnoop.8
man/man8/stacksnoop.8
+1
-0
tools/CMakeLists.txt
tools/CMakeLists.txt
+1
-0
tools/old/CMakeLists.txt
tools/old/CMakeLists.txt
+5
-0
No files found.
man/man8/memleak.8
View file @
dd60805d
...
@@ -16,6 +16,7 @@ memleak may introduce significant overhead when tracing processes that allocate
...
@@ -16,6 +16,7 @@ memleak may introduce significant overhead when tracing processes that allocate
and free many blocks very quickly. See the OVERHEAD section below.
and free many blocks very quickly. See the OVERHEAD section below.
This tool only works on Linux 4.6+. Stack traces are obtained using the new BPF_STACK_TRACE` APIs.
This tool only works on Linux 4.6+. Stack traces are obtained using the new BPF_STACK_TRACE` APIs.
For kernels older than 4.6, see the version under tools/old.
.SH REQUIREMENTS
.SH REQUIREMENTS
CONFIG_BPF and bcc.
CONFIG_BPF and bcc.
.SH OPTIONS
.SH OPTIONS
...
...
man/man8/offcputime.8
View file @
dd60805d
...
@@ -24,6 +24,7 @@ See http://www.brendangregg.com/FlameGraphs/offcpuflamegraphs.html
...
@@ -24,6 +24,7 @@ See http://www.brendangregg.com/FlameGraphs/offcpuflamegraphs.html
This tool only works on Linux 4.6+. It uses the new `BPF_STACK_TRACE` table
This tool only works on Linux 4.6+. It uses the new `BPF_STACK_TRACE` table
APIs to generate the in-kernel stack traces.
APIs to generate the in-kernel stack traces.
For kernels older than 4.6, see the version under tools/old.
.SH REQUIREMENTS
.SH REQUIREMENTS
CONFIG_BPF and bcc.
CONFIG_BPF and bcc.
.SH OPTIONS
.SH OPTIONS
...
...
man/man8/stackcount.8
View file @
dd60805d
...
@@ -13,6 +13,7 @@ The pattern is a string with optional '*' wildcards, similar to file globbing.
...
@@ -13,6 +13,7 @@ The pattern is a string with optional '*' wildcards, similar to file globbing.
If you'd prefer to use regular expressions, use the \-r option.
If you'd prefer to use regular expressions, use the \-r option.
This tool only works on Linux 4.6+. Stack traces are obtained using the new `BPF_STACK_TRACE` APIs.
This tool only works on Linux 4.6+. Stack traces are obtained using the new `BPF_STACK_TRACE` APIs.
For kernels older than 4.6, see the version under tools/old.
.SH REQUIREMENTS
.SH REQUIREMENTS
CONFIG_BPF and bcc.
CONFIG_BPF and bcc.
...
...
man/man8/stacksnoop.8
View file @
dd60805d
...
@@ -10,6 +10,7 @@ calls, and is a quick way to investigate low frequency kernel functions and
...
@@ -10,6 +10,7 @@ calls, and is a quick way to investigate low frequency kernel functions and
their cause. For high frequency kernel functions, see stackcount.
their cause. For high frequency kernel functions, see stackcount.
This tool only works on Linux 4.6+. Stack traces are obtained using the new BPF_STACK_TRACE` APIs.
This tool only works on Linux 4.6+. Stack traces are obtained using the new BPF_STACK_TRACE` APIs.
For kernels older than 4.6, see the version under tools/old.
.SH REQUIREMENTS
.SH REQUIREMENTS
CONFIG_BPF and bcc.
CONFIG_BPF and bcc.
.SH OPTIONS
.SH OPTIONS
...
...
tools/CMakeLists.txt
View file @
dd60805d
...
@@ -7,3 +7,4 @@ foreach(FIL ${PY_FILES})
...
@@ -7,3 +7,4 @@ foreach(FIL ${PY_FILES})
endforeach
()
endforeach
()
install
(
FILES
${
C_FILES
}
DESTINATION share/bcc/tools
)
install
(
FILES
${
C_FILES
}
DESTINATION share/bcc/tools
)
install
(
FILES
${
TXT_FILES
}
DESTINATION share/bcc/tools/doc
)
install
(
FILES
${
TXT_FILES
}
DESTINATION share/bcc/tools/doc
)
add_subdirectory
(
old
)
tools/old/CMakeLists.txt
0 → 100644
View file @
dd60805d
file
(
GLOB PY_FILES *.py
)
foreach
(
FIL
${
PY_FILES
}
)
get_filename_component
(
FIL_WE
${
FIL
}
NAME_WE
)
install
(
PROGRAMS
${
FIL
}
DESTINATION share/bcc/tools/old RENAME
${
FIL_WE
}
)
endforeach
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment