Using Debugging Endpoints

All of the control plane components (with the exception of Grafana) exposeruntime profiling information through the path /debug/pprof, using Go’spprof package.

You can consume the provided data with go tool pprof to generate output inmany formats (PDF, DOT, PNG, etc).

The following diagnostics are provided (a summary with links is provided at/debug/pprof):

  • allocs: A sampling of all past memory allocations
  • block: Stack traces that led to blocking on synchronization primitives
  • cmdline: The command line invocation of the current program
  • goroutine: Stack traces of all current goroutines
  • heap: A sampling of memory allocations of live objects. You can specify the gcGET parameter to run GC before taking the heap sample.
  • mutex: Stack traces of holders of contended mutexes
  • profile: CPU profile. You can specify the duration in the seconds GETparameter. After you get the profile file, use the go tool pprof command toinvestigate the profile.
  • threadcreate: Stack traces that led to the creation of new OS threads
  • trace: A trace of execution of the current program. You can specify theduration in the seconds GET parameter. After you get the trace file, use thego tool trace command to investigate the trace.

Example Usage

This data is served over the admin-http port.To find this port, you can examine the pod’s yaml, or for the identity pod forexample, issue a command like so:

  1. kubectl -n linkerd get po \
  2. $(kubectl -n linkerd get pod -l linkerd.io/control-plane-component=identity \
  3. -o jsonpath='{.items[0].metadata.name}') \
  4. -o=jsonpath='{.spec.containers[*].ports[?(@.name=="admin-http")].containerPort}'

Then use the kubectl port-forward command to access that port from outsidethe cluster (in this example the port is 9990):

  1. kubectl -n linkerd port-forward \
  2. $(kubectl -n linkerd get pod -l linkerd.io/control-plane-component=identity \
  3. -o jsonpath='{.items[0].metadata.name}') \
  4. 9990

It is now possible to use go tool to inspect this data. For example togenerate a graph in a PDF file describing memory allocations:

  1. go tool pprof -seconds 5 -pdf http://localhost:9990/debug/pprof/allocs