aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pidstat.md
diff options
context:
space:
mode:
authorjohannst <johannes.stoelp@gmail.com>2020-04-19 22:13:44 +0200
committerjohannst <johannes.stoelp@gmail.com>2020-04-19 22:13:44 +0200
commitfef4d6ff2ad9f48e6dccde0f061453e6a3ac624e (patch)
treec21dfcf8e7c8895a94e1c72cb9588c94794656b1 /src/pidstat.md
parent43e402ba2320ced7972d33c9442b2745afe230f6 (diff)
downloadnotes-fef4d6ff2ad9f48e6dccde0f061453e6a3ac624e.tar.gz
notes-fef4d6ff2ad9f48e6dccde0f061453e6a3ac624e.zip
added new hierarchy
Diffstat (limited to 'src/pidstat.md')
-rw-r--r--src/pidstat.md31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/pidstat.md b/src/pidstat.md
deleted file mode 100644
index b57f231..0000000
--- a/src/pidstat.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# pidstat(1)
-
-```markdown
-pidstat [opt] [interval] [cont]
- -U [user] show username instead UID, optionally only show for user
- -r memory statistics
- -d I/O statistics
- -h single line per process and no lines with average
-```
-
-# Page fault and memory utilization
-```markdown
-pidstat -r -p <pid> [interval] [count]
-```
-
-```markdown
-minor_pagefault: Happens when the page needed is already in memory but not
- allocated to the faulting process, in that case the kernel
- only has to create a new page-table entry pointing to the
- shared physical page (not required to load a memory page from
- disk).
-
-major_pagefault: Happens when the page needed is NOT in memory, the kernel
- has to create a new page-table entry and populate the
- physical page (required to load a memory page from disk).
-```
-
-# I/O statistics
-```markdown
-pidstat -d -p <pid> [interval] [count]
-```