forked from LucaCanali/Stack_Profiling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
30 lines (23 loc) · 1.16 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
This repository aggregates a few small tools and scripts for stack profiling intended
for Linux process troubleshooting and Oracle troubleshooting.
Author [email protected]
Created: November 2015
http://externaltable.blogspot.com/2015/12/extended-stack-profiling-ideas-tools.html
- KStackSampler
a simple kernel stack profiler
http://externaltable.blogspot.com/2015/10/linux-kernel-stack-profiling-and-flame.html
Use to investigate processes that are often Off-CPU/Kernel-busy
Use together with Flame Graphs
- ORA_KStackProfiler
a simple kernel stack profiler extended with the option of sampling Oracle wait
event information from SGA
http://externaltable.blogspot.com/2015/11/oracle-wait-events-investigated-with.html
Use to drill down into Oracle wait events and/or to troubleshoot processes that are
often Off-CPU/Kernel-busy
Use together with Flame Graphs
- Ptrace_Profiler
a simple stack profiler for userspace and kernel stack extended with the option of
sampling Oracle wait event
Use to drill down into process execution (both userspace and kernel)
Use together with Flame Graphs
See README files in each directory for further details.