Skip to content

Commit

Permalink
Merge pull request #781 from andreasgerstmayr/add-missing-jaeger-ui-r…
Browse files Browse the repository at this point in the history
…outes

Register missing Jaeger UI routes
  • Loading branch information
pavolloffay authored Nov 5, 2024
2 parents abe9e32 + 6a7e892 commit 28e4c83
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions api/traces/v1/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,15 @@ func NewV2Handler(read *url.URL, readTemplate string, tempo *url.URL, writeOTLPH
r.Get("/search*", c.instrument.NewHandler(
prometheus.Labels{"group": "tracesv1ui", "handler": "ui"},
proxyRead))
r.Get("/trace/*", c.instrument.NewHandler(
prometheus.Labels{"group": "tracesv1ui", "handler": "ui"},
proxyRead))
r.Get("/dependencies", c.instrument.NewHandler(
prometheus.Labels{"group": "tracesv1ui", "handler": "ui"},
proxyRead))
r.Get("/monitor", c.instrument.NewHandler(
prometheus.Labels{"group": "tracesv1ui", "handler": "ui"},
proxyRead))
r.Get("/favicon.ico", c.instrument.NewHandler(
prometheus.Labels{"group": "tracesv1ui", "handler": "ui"},
proxyRead))
Expand Down

0 comments on commit 28e4c83

Please sign in to comment.