]> source.dussan.org Git - gitea.git/commitdiff
Improve pprof doc (#20463)
authorwxiaoguang <wxiaoguang@gmail.com>
Sat, 23 Jul 2022 17:33:55 +0000 (01:33 +0800)
committerGitHub <noreply@github.com>
Sat, 23 Jul 2022 17:33:55 +0000 (01:33 +0800)
cmd/web.go
docs/content/doc/advanced/config-cheat-sheet.en-us.md
docs/content/doc/help/seek-help.en-us.md

index 43bb0ada911e79e6f828bca8b1afc271a98c3a5f..3bc61b04433f49c7966a794bd8732ece8c0bd797 100644 (file)
@@ -148,8 +148,9 @@ func runWeb(ctx *cli.Context) error {
                go func() {
                        http.DefaultServeMux.Handle("/debug/fgprof", fgprof.Handler())
                        _, _, finished := process.GetManager().AddTypedContext(context.Background(), "Web: PProf Server", process.SystemProcessType, true)
+                       // The pprof server is for debug purpose only, it shouldn't be exposed on public network. At the moment it's not worth to introduce a configurable option for it.
                        log.Info("Starting pprof server on localhost:6060")
-                       log.Info("%v", http.ListenAndServe("localhost:6060", nil))
+                       log.Info("Stopped pprof server: %v", http.ListenAndServe("localhost:6060", nil))
                        finished()
                }()
        }
index a0e6fb8f13b1b1ea9d1b36fe48b0b8b944f34aa1..4df104419af3d967fb3e73a84a359aead1923db5 100644 (file)
@@ -300,7 +300,7 @@ The following configuration set `Content-Type: application/vnd.android.package-a
 - `APP_DATA_PATH`: **data** (**/data/gitea** on docker): Default path for application data.
 - `STATIC_CACHE_TIME`: **6h**: Web browser cache time for static resources on `custom/`, `public/` and all uploaded avatars. Note that this cache is disabled when `RUN_MODE` is "dev".
 - `ENABLE_GZIP`: **false**: Enable gzip compression for runtime-generated content, static resources excluded.
-- `ENABLE_PPROF`: **false**: Application profiling (memory and cpu). For "web" command it listens on localhost:6060. For "serv" command it dumps to disk at `PPROF_DATA_PATH` as `(cpuprofile|memprofile)_<username>_<temporary id>`
+- `ENABLE_PPROF`: **false**: Application profiling (memory and cpu). For "web" command it listens on `localhost:6060`. For "serv" command it dumps to disk at `PPROF_DATA_PATH` as `(cpuprofile|memprofile)_<username>_<temporary id>`
 - `PPROF_DATA_PATH`: **data/tmp/pprof**: `PPROF_DATA_PATH`, use an absolute path when you start Gitea as service
 - `LANDING_PAGE`: **home**: Landing page for unauthenticated users \[home, explore, organizations, login, **custom**\]. Where custom would instead be any URL such as "/org/repo" or even `https://anotherwebsite.com`
 - `LFS_START_SERVER`: **false**: Enables Git LFS support.
index 3ee160f4316fde9830f10251d5a8e02219589c88..f1a93eacea80ad688a51c4f7c146a93535b34196 100644 (file)
@@ -44,12 +44,13 @@ menu:
     * This will greatly improve the chance that the root of the issue can be quickly discovered and resolved.
 5. If you meet slow/hanging/deadlock problems, please report the stack trace when the problem occurs:
     1. Enable pprof in `app.ini` and restart Gitea
-    ```
+    ```ini
     [server]
     ENABLE_PPROF = true
     ```
-    2. Trigger the bug, when Gitea gets stuck, use curl or browser to visit: `http://127.0.0.1:6060/debug/pprof/goroutine?debug=1` (IP is `127.0.0.1` and port is `6060`)
-    3. Report the output (the stack trace doesn't contain sensitive data)
+    2. Trigger the bug, when Gitea gets stuck, use curl or browser to visit: `http://127.0.0.1:6060/debug/pprof/goroutine?debug=1` (IP must be `127.0.0.1` and port must be `6060`). 
+    3. If you are using Docker, please use `docker exec -it <container-name> curl "http://127.0.0.1:6060/debug/pprof/goroutine?debug=1"`.
+    4. Report the output (the stack trace doesn't contain sensitive data)
 
 ## Bugs