From 902f640c8061df63bab70d6a5cd5959f607f29e1 Mon Sep 17 00:00:00 2001 From: Tim Gross Date: Thu, 3 Aug 2023 16:05:53 -0400 Subject: [PATCH] docs: fix URL in agent pprof examples (#18142) --- website/content/api-docs/agent.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/content/api-docs/agent.mdx b/website/content/api-docs/agent.mdx index 4321d5d5e44..d592ea2f3a1 100644 --- a/website/content/api-docs/agent.mdx +++ b/website/content/api-docs/agent.mdx @@ -711,13 +711,13 @@ $ go tool pprof goroutine $ curl -O -J \ --header "X-Nomad-Token: 8176afd3-772d-0b71-8f85-7fa5d903e9d4" \ - https://localhost:4646/v1/agent/profile?seconds=5&node_id=a57b2adb-1a30-2dda-8df0-25abb0881952 + https://localhost:4646/v1/agent/pprof/profile?seconds=5&node_id=a57b2adb-1a30-2dda-8df0-25abb0881952 $ go tool pprof profile $ curl -O -J \ --header "X-Nomad-Token: 8176afd3-772d-0b71-8f85-7fa5d903e9d4" \ - https://localhost:4646/v1/agent/trace?&seconds=5&server_id=server1.global + https://localhost:4646/v1/agent/pprof/trace?&seconds=5&server_id=server1.global go tool trace trace ```