-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
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
Add UI docs #185
Merged
Merged
Add UI docs #185
Changes from 4 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
8de3085
Add UI docs
aljesusg 5e95f7f
Rename to Frontend/UI
aljesusg 8adf7a8
Comments addresed
aljesusg 73a2e06
Crop header in img
aljesusg dd9c0db
Moved frontend ui docs to deployment section
aljesusg 0f5409c
rename title to query service & ui
aljesusg 8179a0c
comments addresed
aljesusg 8249577
Rearrange the docs, fix formatting
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
--- | ||
title: Frontend/UI | ||
weight: 10 | ||
--- | ||
|
||
Jaeger Web UI is implemented in JavaScript using popular open source frameworks like React. | ||
|
||
## Embed Mode | ||
|
||
Starting with version **[TODO]**, Jaeger UI provides an "embedded" layout mode which is intended to support integrating Jaeger UI into other applications. Currently (as of `v0`), the approach taken is to remove various UI elements from the page to make the UI better suited for space-constrained layouts. | ||
|
||
The embedded mode is induced and configured via URL query parameters. | ||
|
||
To enter embedded mode, the `uiEmbed=v0` query parameter and value must be added to the URL. For example, the following URL will show the trace with ID `abc123` in embedded mode: | ||
|
||
``` | ||
https://example.com/trace/abc123?uiEmbed=v0 | ||
``` | ||
|
||
`uiEmbed=v0` is required. | ||
|
||
Further, each page supported has an <img src="/img/frontend-ui/embed-open-icon.png" style="width: 20px; height:20px;display:inline;" alt="Embed open window"> button added that will open the non-embedded page in a new tab. | ||
|
||
|
||
### Embedded Components | ||
|
||
* Search Trace Page | ||
* Trace Page | ||
|
||
#### Search Trace Page | ||
|
||
To integrate the Search Trace Page to our application we have to indicate to the Jaeger UI that we want to use the embed mode with `uiEmbed=v0`. | ||
|
||
For example: | ||
|
||
```sh | ||
<JAEGER UI URL>/search? | ||
end=1543921359557000& | ||
limit=20&lookback=1h& | ||
maxDuration& | ||
minDuration& | ||
service=jaeger-query& | ||
start=1543917759557000& | ||
uiEmbed=v0 | ||
``` | ||
|
||
![Embed Search Traces](/img/frontend-ui/embed-search-traces.png) | ||
|
||
##### Configuration options | ||
|
||
The following query parameter can be used to configure the layout of the search page : | ||
|
||
* uiSearchHideGraph=1 | ||
* Do not display the scatter plot above the search results | ||
|
||
```sh | ||
<JAEGER UI URL>/search? | ||
end=1543921359557000& | ||
limit=20&lookback=1h& | ||
maxDuration& | ||
minDuration& | ||
service=jaeger-query& | ||
start=1543917759557000& | ||
uiEmbed=v0& | ||
uiSearchHideGraph=1 | ||
``` | ||
|
||
![Embed Search Traces without Graph](/img/frontend-ui/embed-search-traces-hide-graph.png) | ||
|
||
#### Trace Page | ||
|
||
|
||
To integrate the Trace Page to our application we have to indicate to the Jaeger UI that we want to use the embed mode with `uiEmbed=v0`. | ||
|
||
For example: | ||
|
||
```sh | ||
<JAEGER UI URL>/trace/<TRACE ID>? | ||
uiEmbed=v0 | ||
``` | ||
![Embed Trace view](/img/frontend-ui/embed-trace-view.png) | ||
|
||
If we have navigated to this view from the search traces page we'll have a button to go back to the results page. | ||
|
||
![Embed Trace view](/img/frontend-ui/embed-trace-view-with-back-button.png) | ||
|
||
##### Configuration options | ||
|
||
The following query parameters can be used to configure the layout of the trace page : | ||
|
||
* uiTimelineCollapseTitle=1 | ||
* The trace header starts out collapsed, which hides the summary and minimap | ||
|
||
```sh | ||
<JAEGER UI URL>/trace/<TRACE ID>? | ||
uiEmbed=v0& | ||
uiTimelineCollapseTitle=1 | ||
``` | ||
![Embed Trace view](/img/frontend-ui/embed-trace-view-with-collapse.png) | ||
|
||
* uiTimelineHideMinimap=1 | ||
* Removes the minimap, entirely, regardless of whether the trace header is expanded or not | ||
|
||
```sh | ||
<JAEGER UI URL>/trace/<TRACE ID>? | ||
uiEmbed=v0& | ||
uiTimelineHideMinimap=1 | ||
``` | ||
![Embed Trace view](/img/frontend-ui/embed-trace-view-with-hide-minimap.png) | ||
|
||
* uiTimelineHideSummary=1 | ||
* Removes the trace summary information (number of services, etc.), entirely, regardless of whether the trace header is expanded or not | ||
|
||
```sh | ||
<JAEGER UI URL>/trace/<TRACE ID>? | ||
uiEmbed=v0& | ||
uiTimelineHideSummary=1 | ||
|
||
``` | ||
![Embed Trace view](/img/frontend-ui/embed-trace-view-with-hide-summary.png) | ||
|
||
We can also combine the options | ||
```sh | ||
<JAEGER UI URL>/trace/<TRACE ID>? | ||
uiEmbed=v0& | ||
uiTimelineHideMinimap=1& | ||
uiTimelineHideSummary=1 | ||
``` | ||
![Embed Trace view](/img/frontend-ui/embed-trace-view-with-hide-details-and-hide-minimap.png) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+251 KB
public/img/frontend-ui/embed-trace-view-with-hide-details-and-hide-minimap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+251 KB
static/img/frontend-ui/embed-trace-view-with-hide-details-and-hide-minimap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The image URLs need
/static/
prepended.The images will also need to be updated whenever we land on a final layout and design.