├── KStackSampler ├── README └── kstacksampler.sh ├── LICENSE ├── ORA_KStackProfiler ├── Makefile ├── README ├── examples │ ├── ora_kstack_slob_slowio.svg │ ├── ora_kstack_slob_slowio.txt │ ├── ora_stack_fastio.svg │ └── ora_stack_fastio.txt ├── oracle_scripts │ ├── eventsname.sql │ └── find_pid_ksustim_ksuseopc.sql └── src │ ├── ora_kstackprofiler.c │ └── profiler.c ├── Ptrace_Profiler ├── Makefile ├── README ├── examples │ ├── ora_stack_fastio_userspace.svg │ └── ora_stack_fastio_userspace.txt ├── oracle_scripts │ ├── eventsname.sql │ └── find_pid_ksustim_ksuseopc.sql └── src │ ├── profiler.c │ ├── ptrace_profiler.c │ └── unwind_userspace.c └── README /KStackSampler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/KStackSampler/README -------------------------------------------------------------------------------- /KStackSampler/kstacksampler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/KStackSampler/kstacksampler.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/LICENSE -------------------------------------------------------------------------------- /ORA_KStackProfiler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/ORA_KStackProfiler/Makefile -------------------------------------------------------------------------------- /ORA_KStackProfiler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/ORA_KStackProfiler/README -------------------------------------------------------------------------------- /ORA_KStackProfiler/examples/ora_kstack_slob_slowio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/ORA_KStackProfiler/examples/ora_kstack_slob_slowio.svg -------------------------------------------------------------------------------- /ORA_KStackProfiler/examples/ora_kstack_slob_slowio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/ORA_KStackProfiler/examples/ora_kstack_slob_slowio.txt -------------------------------------------------------------------------------- /ORA_KStackProfiler/examples/ora_stack_fastio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/ORA_KStackProfiler/examples/ora_stack_fastio.svg -------------------------------------------------------------------------------- /ORA_KStackProfiler/examples/ora_stack_fastio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/ORA_KStackProfiler/examples/ora_stack_fastio.txt -------------------------------------------------------------------------------- /ORA_KStackProfiler/oracle_scripts/eventsname.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/ORA_KStackProfiler/oracle_scripts/eventsname.sql -------------------------------------------------------------------------------- /ORA_KStackProfiler/oracle_scripts/find_pid_ksustim_ksuseopc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/ORA_KStackProfiler/oracle_scripts/find_pid_ksustim_ksuseopc.sql -------------------------------------------------------------------------------- /ORA_KStackProfiler/src/ora_kstackprofiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/ORA_KStackProfiler/src/ora_kstackprofiler.c -------------------------------------------------------------------------------- /ORA_KStackProfiler/src/profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/ORA_KStackProfiler/src/profiler.c -------------------------------------------------------------------------------- /Ptrace_Profiler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/Ptrace_Profiler/Makefile -------------------------------------------------------------------------------- /Ptrace_Profiler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/Ptrace_Profiler/README -------------------------------------------------------------------------------- /Ptrace_Profiler/examples/ora_stack_fastio_userspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/Ptrace_Profiler/examples/ora_stack_fastio_userspace.svg -------------------------------------------------------------------------------- /Ptrace_Profiler/examples/ora_stack_fastio_userspace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/Ptrace_Profiler/examples/ora_stack_fastio_userspace.txt -------------------------------------------------------------------------------- /Ptrace_Profiler/oracle_scripts/eventsname.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/Ptrace_Profiler/oracle_scripts/eventsname.sql -------------------------------------------------------------------------------- /Ptrace_Profiler/oracle_scripts/find_pid_ksustim_ksuseopc.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/Ptrace_Profiler/oracle_scripts/find_pid_ksustim_ksuseopc.sql -------------------------------------------------------------------------------- /Ptrace_Profiler/src/profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/Ptrace_Profiler/src/profiler.c -------------------------------------------------------------------------------- /Ptrace_Profiler/src/ptrace_profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/Ptrace_Profiler/src/ptrace_profiler.c -------------------------------------------------------------------------------- /Ptrace_Profiler/src/unwind_userspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/Ptrace_Profiler/src/unwind_userspace.c -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucaCanali/Stack_Profiling/HEAD/README --------------------------------------------------------------------------------