From 590147a2f78312b0e006b95eb0c422f612d60f41 Mon Sep 17 00:00:00 2001
From: Larvan2 <78135608+Larvan2@users.noreply.github.com>
Date: Fri, 14 Apr 2023 13:20:34 +0800
Subject: [PATCH] Destroyed How to use debug API (markdown)
---
How-to-use-debug-API.md | 37 -------------------------------------
1 file changed, 37 deletions(-)
delete mode 100644 How-to-use-debug-API.md
diff --git a/How-to-use-debug-API.md b/How-to-use-debug-API.md
deleted file mode 100644
index 75ebd45..0000000
--- a/How-to-use-debug-API.md
+++ /dev/null
@@ -1,37 +0,0 @@
-### Get this repo
-```shell
-git clone -b Alpha https://github.com/MetaCubeX/Clash.Meta.git clash-meta
-```
-
-### Build clash-meta
-```shell
-cd clash-meta
-go build -o clash-meta
-```
-
-### start clash-meta:
-put your config.yaml in this directory, set log level to **debug** and run:
-```shell
-./clash-meta -d ./
-```
-
-### Use debug API
-You can check available API on `http://127.0.0.1:xxxx/debug/pprof/`,
-`xxxx` refers to the `external-controller` port in your config.yaml.
-
-You may need to install [Graphviz](https://graphviz.org/download/) before you view the http debug API tools below:
-
-Heap details:
-```
-go tool pprof -http=:8080 http://127.0.0.1:xxxx/debug/pprof/heap
-````
-[Full image](https://raw.githubusercontent.com/MetaCubeX/Clash.Meta/Alpha/docs/heap.svg)
-
-
-Allocs details
-````
-go tool pprof -http=:8080 http://127.0.0.1:xxxx/debug/pprof/allocs
-````
-[Full image](https://raw.githubusercontent.com/MetaCubeX/Clash.Meta/Alpha/docs/allocs.svg)
-
-