It can be useful to launch directly into a trace waterfall from a Trace ID from third party services. For example, you might wire an error reporting tool to launch directly into a trace in Honeycomb.
For Secure Tenancy users, constructing links to traces from the trace ID cannot work because trace IDs are encrypted. However, the URLs of links to traces displayed in the browser are valid.
Construct a URL with this template:
http://ui.honeycomb.io/<team>/datasets/<dataset>/trace?trace_id=<traceId>
&trace_start_ts=<ts>
&trace_end_ts=<ts>
In this URL:
team
and dataset
are the usual fields seen in Honeycomb URLstrace_id
specifies the (URL-encoded, if necessary) unique trace ID for that tracetrace_start_ts
and trace_end_ts
describe roughly the time range to look for the trace. They are specified in UNIX/Epoch-style integer timestamps.The query engine will look for traces with this trace_id
in the specified time range.
If no time range is specified, it will look from the current time to two hours ago.
If only a trace_start_ts
is provided with no trace_end_ts
value, then the query engine will look for traces within ten minutes of the starting time of the start.
Note that the trace waterfall may miss some spans if the query range is too narrow. On the other hand, the query engine may take longer to look across broader time periods.
Embedding Trace waterfalls (or other Honeycomb pages) within an iframe
is currently not supported.
Did you find what you were looking for?