Skip to content

Commit

Permalink
Update tracing.md (sourcegraph#29710)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonhawkharris committed Jan 13, 2022
1 parent d78ac34 commit d64e3d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/admin/observability/tracing.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The Jaeger UI should look something like this:
```
1. Go to Sourcegraph in your browser and do a search.
1. Open Chrome dev tools.
1. Append `&trace=1` to the end of the URL and hit `Enter`.
1. Append `?trace=1` to the end of the URL and hit `Enter`.
1. In the Chrome dev tools Network tab, find the `graphql?Search` or `stream?` request. Click it and click on the
`Headers` tab. The value of the `x-trace` Response Header should be a trace ID, e.g.,
`7edb43f744c42fbf`.
Expand Down Expand Up @@ -62,7 +62,7 @@ request and help pinpoint the source of high latency or errors. We generally fol
algorithm to root-cause issues with Jaeger:

1. Reproduce a slower user request (e.g., a search query that takes too long or times out).
1. Add `trace=1` to the slow URL and reload the page, so that traces will be collected.
1. Add `?trace=1` to the slow URL and reload the page, so that traces will be collected.
1. Open Chrome developer tools to the Network tab and find the corresponding GraphQL request that
takes a long time. If there are multiple requests that take a long time, investigate them one by
one.
Expand Down

0 comments on commit d64e3d2

Please sign in to comment.