From 0b421f0d19d4b3108bfc00a6da71964b4ab4feab Mon Sep 17 00:00:00 2001 From: RafaelGSS Date: Thu, 14 Oct 2021 16:18:56 -0300 Subject: [PATCH 1/2] docs: rename profiling to poor-performance --- documentation/{profiling => poor-performance}/README.md | 4 ++-- documentation/{profiling => poor-performance}/case_study.md | 0 .../step1/using_v8_profiler.md | 0 .../{profiling => poor-performance}/step2/using_linux_perf.md | 0 .../step3/using_native_tools.md | 0 documentation/profiling/investigation_flow.md | 1 - documentation/profiling/setup.md | 1 - 7 files changed, 2 insertions(+), 4 deletions(-) rename documentation/{profiling => poor-performance}/README.md (94%) rename documentation/{profiling => poor-performance}/case_study.md (100%) rename documentation/{profiling => poor-performance}/step1/using_v8_profiler.md (100%) rename documentation/{profiling => poor-performance}/step2/using_linux_perf.md (100%) rename documentation/{profiling => poor-performance}/step3/using_native_tools.md (100%) delete mode 100644 documentation/profiling/investigation_flow.md delete mode 100644 documentation/profiling/setup.md diff --git a/documentation/profiling/README.md b/documentation/poor-performance/README.md similarity index 94% rename from documentation/profiling/README.md rename to documentation/poor-performance/README.md index 6681352..ac2a10f 100644 --- a/documentation/profiling/README.md +++ b/documentation/poor-performance/README.md @@ -1,8 +1,8 @@ -# Profiling +# Poor Performance In this document you can learn about how to profile a Node.js process. -- [Profiling](#profiling) +- [Poor Performance](#poor-performance) - [My application has a poor performance](#my-application-has-a-poor-performance) - [Symptoms](#symptoms) - [Debugging](#debugging) diff --git a/documentation/profiling/case_study.md b/documentation/poor-performance/case_study.md similarity index 100% rename from documentation/profiling/case_study.md rename to documentation/poor-performance/case_study.md diff --git a/documentation/profiling/step1/using_v8_profiler.md b/documentation/poor-performance/step1/using_v8_profiler.md similarity index 100% rename from documentation/profiling/step1/using_v8_profiler.md rename to documentation/poor-performance/step1/using_v8_profiler.md diff --git a/documentation/profiling/step2/using_linux_perf.md b/documentation/poor-performance/step2/using_linux_perf.md similarity index 100% rename from documentation/profiling/step2/using_linux_perf.md rename to documentation/poor-performance/step2/using_linux_perf.md diff --git a/documentation/profiling/step3/using_native_tools.md b/documentation/poor-performance/step3/using_native_tools.md similarity index 100% rename from documentation/profiling/step3/using_native_tools.md rename to documentation/poor-performance/step3/using_native_tools.md diff --git a/documentation/profiling/investigation_flow.md b/documentation/profiling/investigation_flow.md deleted file mode 100644 index 8ad1dfb..0000000 --- a/documentation/profiling/investigation_flow.md +++ /dev/null @@ -1 +0,0 @@ -//TODO diff --git a/documentation/profiling/setup.md b/documentation/profiling/setup.md deleted file mode 100644 index 8ad1dfb..0000000 --- a/documentation/profiling/setup.md +++ /dev/null @@ -1 +0,0 @@ -//TODO From 0cf844a4b18bb1c66fc798906503dcfc54bf40de Mon Sep 17 00:00:00 2001 From: RafaelGSS Date: Thu, 14 Oct 2021 16:19:07 -0300 Subject: [PATCH 2/2] docs: add Excessive CPU usage as symptoms --- documentation/cpu/README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/documentation/cpu/README.md b/documentation/cpu/README.md index 70b786d..8eab8e2 100644 --- a/documentation/cpu/README.md +++ b/documentation/cpu/README.md @@ -1 +1,7 @@ -// TODO +# CPU + +In this document you can learn about how to diagnostic CPU usage in a Node.js process. + +## Excessive CPU usage + +TODO