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
43e87c1d
Commit
43e87c1d
authored
Jan 11, 2017
by
Brendan Gregg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
profile: increase unique stack default to 10k
parent
1655fcd3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
man/man8/profile.8
man/man8/profile.8
+1
-1
tools/profile.py
tools/profile.py
+1
-1
No files found.
man/man8/profile.8
View file @
43e87c1d
...
...
@@ -49,7 +49,7 @@ Show stacks from kernel space only (no user space stacks).
.TP
\-\-stack-storage-size COUNT
The maximum number of unique stack traces that the kernel will count (default
2048
). If the sampled count exceeds this, a warning will be printed.
10240
). If the sampled count exceeds this, a warning will be printed.
.TP
duration
Duration to trace, in seconds.
...
...
tools/profile.py
View file @
43e87c1d
...
...
@@ -90,7 +90,7 @@ parser.add_argument("-a", "--annotations", action="store_true",
help
=
"add _[k] annotations to kernel frames"
)
parser
.
add_argument
(
"-f"
,
"--folded"
,
action
=
"store_true"
,
help
=
"output folded format, one line per stack (for flame graphs)"
)
parser
.
add_argument
(
"--stack-storage-size"
,
default
=
2048
,
parser
.
add_argument
(
"--stack-storage-size"
,
default
=
10240
,
type
=
positive_nonzero_int
,
help
=
"the number of unique stack traces that can be stored and "
"displayed (default 2048)"
)
...
...
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