aboutsummaryrefslogtreecommitdiff
path: root/_posts/2017-03-07-golang-profiling-simplified.md
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2019-01-08 16:08:02 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2019-01-08 16:08:02 +0100
commit5845a5be3c0cc86d6fca3c44e26f9cbf77931a05 (patch)
tree658a7bc8e91554f10c154573b56a2c440ca16b09 /_posts/2017-03-07-golang-profiling-simplified.md
parent1d321a51fdadf4c409d7e7d00096c51754bd0113 (diff)
downloadmitjafelicijan.com-5845a5be3c0cc86d6fca3c44e26f9cbf77931a05.tar.gz
Added author and update on editor
Diffstat (limited to '_posts/2017-03-07-golang-profiling-simplified.md')
-rw-r--r--_posts/2017-03-07-golang-profiling-simplified.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/_posts/2017-03-07-golang-profiling-simplified.md b/_posts/2017-03-07-golang-profiling-simplified.md
index 2b5a262..4c7266c 100644
--- a/_posts/2017-03-07-golang-profiling-simplified.md
+++ b/_posts/2017-03-07-golang-profiling-simplified.md
@@ -1,7 +1,9 @@
1--- 1---
2
2layout: post 3layout: post
3title: Golang profiling simplified 4title: Golang profiling simplified
4description: Golang profiling made easy 5description: Golang profiling made easy
6
5--- 7---
6 8
7**Table of contents** 9**Table of contents**
@@ -9,9 +11,9 @@ description: Golang profiling made easy
91. [Where are my pprof files?](#where-are-my-pprof-files) 111. [Where are my pprof files?](#where-are-my-pprof-files)
102. [Why is my cpu profile empty?](#why-is-my-cpu-profile-empty) 122. [Why is my cpu profile empty?](#why-is-my-cpu-profile-empty)
113. [Profiling](#profiling) 133. [Profiling](#profiling)
12 1. [Memory profiling](#memory-profiling) 14 1. [Memory profiling](#memory-profiling)
13 2. [CPU profiling](#cpu-profiling) 15 2. [CPU profiling](#cpu-profiling)
14 3. [Generating profiling reports](#generating-profiling-reports) 16 3. [Generating profiling reports](#generating-profiling-reports)
15 17
16Many posts have been written regarding profiling in Golang and I haven’t found proper tutorial regarding this. Almost all of them are missing some part of important information and it gets pretty frustrating when you have a deadline and are not finding simple distilled solution. 18Many posts have been written regarding profiling in Golang and I haven’t found proper tutorial regarding this. Almost all of them are missing some part of important information and it gets pretty frustrating when you have a deadline and are not finding simple distilled solution.
17 19