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
f266f4fc
Commit
f266f4fc
authored
Feb 07, 2016
by
Brendan Gregg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more advice in the man page
parent
a32fbafb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
man/man8/fsslower.8
man/man8/fsslower.8
+7
-0
tools/fsslower_example.txt
tools/fsslower_example.txt
+1
-1
No files found.
man/man8/fsslower.8
View file @
f266f4fc
...
@@ -87,6 +87,13 @@ instrumented events using the bcc funccount tool, eg:
...
@@ -87,6 +87,13 @@ instrumented events using the bcc funccount tool, eg:
# ./funccount.py -i 1 -r '^__vfs_(read|write)$'
# ./funccount.py -i 1 -r '^__vfs_(read|write)$'
.PP
.PP
This also costs overhead, but is somewhat less than fsslower.
This also costs overhead, but is somewhat less than fsslower.
.PP
If the overhead is prohibitive for your workload, I'd recommend moving
down-stack a little from VFS into the file system functions (ext4, xfs, etc).
Look for updates to bcc for specific file system tools that do this. The
advantage of a per-file system approach is that we can trace post-cache,
greatly reducing events and overhead. The disadvantage is needing custom
tracing approaches for each different file system (whereas VFS is generic).
.SH SOURCE
.SH SOURCE
This is from bcc.
This is from bcc.
.IP
.IP
...
...
tools/fsslower_example.txt
View file @
f266f4fc
...
@@ -97,7 +97,7 @@ TIME(s) COMM PID D BYTES LAT(ms) FILENAME
...
@@ -97,7 +97,7 @@ TIME(s) COMM PID D BYTES LAT(ms) FILENAME
2.977 supervise 1876 W 18 4.23 status.new
2.977 supervise 1876 W 18 4.23 status.new
This caught an individual I/O reaching 163.12 ms, for the "preconv" file. While
This caught an individual I/O reaching 163.12 ms, for the "preconv" file. While
the file system cache was flush, causing these to need to be read from disk,
the file system cache was flush
ed
, causing these to need to be read from disk,
the duration here may not be entirely disk I/O: it can include file system
the duration here may not be entirely disk I/O: it can include file system
locks, run queue latency, etc. These can be explored using other commands.
locks, run queue latency, etc. These can be explored using other commands.
...
...
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