-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove gperftools, use jemalloc (#865)
* Remove gperftools, use jemalloc Signed-off-by: Benjamin Leggett <benjamin.leggett@solo.io> * Throw this in Signed-off-by: Benjamin Leggett <benjamin.leggett@solo.io> * Lint Signed-off-by: Benjamin Leggett <benjamin.leggett@solo.io> * Remove leftover cruft Signed-off-by: Benjamin Leggett <benjamin.leggett@solo.io> * Lints Signed-off-by: Benjamin Leggett <benjamin.leggett@solo.io> * lints part deux Signed-off-by: Benjamin Leggett <benjamin.leggett@solo.io> --------- Signed-off-by: Benjamin Leggett <benjamin.leggett@solo.io>
- Loading branch information
Showing
5 changed files
with
220 additions
and
111 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Profiling ztunnel | ||
|
||
## CPU | ||
|
||
1. Port-forward admin port (15000): | ||
|
||
```sh | ||
k port-forward -n istio-system ztunnel-qkvdj 15000:15000 | ||
``` | ||
|
||
1. Either open `localhost:15000` in a browser for help, or just `curl` the CPU profile: | ||
|
||
```sh | ||
curl localhost:15000/debug/pprof/profile > profile.prof | ||
``` | ||
|
||
1. Observe in your tooling of choice, such as [flamegraph](https://flamegraph.com/) | ||
|
||
## Memory | ||
|
||
1. Build `ztunnel` with the `jemalloc` feature (disabled by default, see `Cargo.toml`) | ||
|
||
1. Port-forward admin port (15000): | ||
|
||
```sh | ||
k port-forward -n istio-system ztunnel-qkvdj 15000:15000 | ||
``` | ||
|
||
1. Either open `localhost:15000` in a browser for help, or just `curl` the memory profile: | ||
|
||
```sh | ||
curl localhost:15000/debug/pprof/heap > mem.pb.gz | ||
``` | ||
|
||
1. If working remotely, copy container binaries to local path for symbol resolution: | ||
|
||
```sh | ||
# ztunnel main binary | ||
kubectl cp kube-system/ztunnel-qkvdj:/usr/local/bin/ztunnel ../../ztunnel-libs-pprof/ztunnel | ||
# stdlibs (optional) | ||
kubectl cp kube-system/ztunnel-qkvdj:/usr/lib/$BINARY_COMPILED_ARCH/ ../../ztunnel-libs-pprof/ | ||
``` | ||
|
||
1. Observe in your tooling of choice, such as golang's `pprof`: | ||
|
||
```sh | ||
PPROF_BINARY_PATH=../../ztunnel-libs-pprof pprof -http=:8080 mem.pb.gz | ||
``` |
Oops, something went wrong.