We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Parca agent doesn't handle "/" requests from parca-dev/parca-agent#2958.
go func() { mux := http.NewServeMux() mux.Handle("/metrics", promhttp.HandlerFor(reg, promhttp.HandlerOpts{})) mux.HandleFunc("/debug/pprof/", pprof.Index) mux.HandleFunc("/debug/pprof/symbol", pprof.Symbol) mux.HandleFunc("/debug/pprof/trace", pprof.Trace) //nolint:gosec if err = http.ListenAndServe(f.HTTPAddress, mux); err != nil { log.Errorf("Serving pprof on %s failed: %s", f.HTTPAddress, err) } }()
But the doc still mentions about access the agent webpage.
Now we can view the active profilers by visiting http://localhost:7071:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The Parca agent doesn't handle "/" requests from parca-dev/parca-agent#2958.
But the doc still mentions about access the agent webpage.
The text was updated successfully, but these errors were encountered: