-
Notifications
You must be signed in to change notification settings - Fork 484
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
Move filter to query param and highlight filter matches on graphs #310
Move filter to query param and highlight filter matches on graphs #310
Commits on Jan 16, 2019
-
Add a TraceGraph view (jaegertracing#273) (jaegertracing#276)
Add alternative view in TracePage which allows to see count, avg. time, total time and self time for a given trace grouped by service and operation. Signed-off-by: Patrick Coray <[email protected]> Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for bdc0220 - Browse repository at this point
Copy the full SHA bdc0220View commit details -
Revisions for search and trace detail embed mode (jaegertracing#286)
* Misc tweaks for search and trace detail embed mode Mostly from prior comments. - Rename query parameter for embedding to start with "ui" and use the page as the first word, e.g. "uiSearchHideGraph" - Change query parameters for the minimap and trace details from hiding to showing, e.g. "hidemap" -> "uiTimelineShowMap" - Save the embed query params in Redux state instead of passing them around - Use a Link with an icon instead of text buttons for opening the standalone view of the page - Propagate whether the trace detail page is from the search page or not via the Location#state member on the React Router Location - When returning to the search page use the previous results instead of executing a new search. This is done by storing the query with the search results. - Adjusted aesthetic of "Back to Search" button on trace detail page - Sequester parsing and stripping query parameters for the embed mode to a util - In various places switch to using the component/*/url.js#getUrl functions instead of prefixUrl(...) Signed-off-by: Joe Farro <[email protected]> * Fix test break from merging master Signed-off-by: Joe Farro <[email protected]> * Keep redux search query synced with results - Keep redux search query synced with redux search result (and their processing). Also fixes jaegertracing#288. - Bolster unit tests Signed-off-by: Joe Farro <[email protected]> * Fix typo Signed-off-by: Joe Farro <[email protected]> * Make TracePageHeader collapsible when embedded - Reconfigured embed query parameters for timeline: - uiTimelineCollapseTitle=1 - TracePageHeader starts out collapsed - uiTimelineHideMinimap=1 - TracePageHeader does not show the minimap - uiTimelineHideSummary=1 - TracePageHeader does not show the trace summary - Consolidate TracePageHeader and TracePageHeaderEmbed - Style changes to TracePageHeader - Embedded TracePageHeader can now be expanded and collapsed - Misc cleanup in TracePageHeader - Better comparisons for search page query to prevent re-fetching when returning to the search page Signed-off-by: Joe Farro <[email protected]> * Fix typo disableComparisions Signed-off-by: Joe Farro <[email protected]> * Use public registry to newly installed packages Signed-off-by: Joe Farro <[email protected]> * Test improvements Signed-off-by: Joe Farro <[email protected]> Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4112482 - Browse repository at this point
Copy the full SHA 4112482View commit details -
Unfocus unit test (jaegertracing#298)
Signed-off-by: Joe Farro <[email protected]> Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2baf075 - Browse repository at this point
Copy the full SHA 2baf075View commit details -
Add a Button to Reset Viewing Layer Zoom (jaegertracing#215) (jaegert…
…racing#290) * Add button to reset viewing layer zoom (jaegertracing#215) Signed-off-by: Everett Ross <[email protected]> * Adhere to className pattern, sort imports, remove event handling Signed-off-by: Everett Ross <[email protected]> Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d90d042 - Browse repository at this point
Copy the full SHA d90d042View commit details -
Add a copy icon to entries in KeyValuesTable (jaegertracing#204) (jae…
…gertracing#292) * Add a copy icon to entries in KeyValuesTable (jaegertracing#204) Signed-off-by: Everett Ross <[email protected]> * Add a tooltip to copy icon in KeyValuesTable Signed-off-by: Everett Ross <[email protected]> * Fix copied test name, add test for KeyValuesTable state change on tooltip hide Signed-off-by: Everett Ross <[email protected]> * Add eslint rule to prevent unnecessary braces in jsx Signed-off-by: Everett Ross <[email protected]> * Add classname to tr to remove element selector, fix yarn.lock Signed-off-by: Everett Ross <[email protected]> Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 29b340d - Browse repository at this point
Copy the full SHA 29b340dView commit details -
Add popover and prevent submit if duration params are invalid (jaeger…
…tracing#244) (jaegertracing#291) * Add validation for duration fields in SearchForm (jaegertracing#244) Signed-off-by: Everett Ross <[email protected]> * Add tests for redux-form-field-adapter Signed-off-by: Everett Ross <[email protected]> * Fix boolean prop type Signed-off-by: Everett Ross <[email protected]> * Add boolean for input validation, change popover to show when inactive Signed-off-by: Everett Ross <[email protected]> * Add tests for onChangeAdapter Signed-off-by: Everett Ross <[email protected]> * Create separate ValidatedAdaptedInput for duration fields Signed-off-by: Everett Ross <[email protected]> * Remove unnecessary curly braces Signed-off-by: Everett Ross <[email protected]> Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e0f34e4 - Browse repository at this point
Copy the full SHA e0f34e4View commit details -
Add indent guides to trace timeline view (jaegertracing#172) (jaegert…
…racing#297) * Add indent guides to trace timeline view (jaegertracing#172) Signed-off-by: Everett Ross <[email protected]> * Add tests for connect functions, add more flow types Signed-off-by: Everett Ross <[email protected]> * Consolidate ducks, remove redudant PropTypes, add event type Signed-off-by: Everett Ross <[email protected]> * Rename hoverSpanId to hoverIndentGuideId Signed-off-by: Everett Ross <[email protected]> * Derive props from span, use dataset over getAttribute Signed-off-by: Everett Ross <[email protected]> Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for bf70c14 - Browse repository at this point
Copy the full SHA bf70c14View commit details -
Add ability to search for nodes in TraceDiffGraph and TraceGraph (jae…
…gertracing#307) Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 07c7f4f - Browse repository at this point
Copy the full SHA 07c7f4fView commit details -
Style GraphSearch, Debounce query param updating
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1953db5 - Browse repository at this point
Copy the full SHA 1953db5View commit details -
Use hex instead of html colors, remove commented code
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e918deb - Browse repository at this point
Copy the full SHA e918debView commit details -
Handle falsy graphSearch value in state, improve typing
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 181562c - Browse repository at this point
Copy the full SHA 181562cView commit details -
Move GraphSearch and use as utility
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for edf4805 - Browse repository at this point
Copy the full SHA edf4805View commit details -
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d1e05d6 - Browse repository at this point
Copy the full SHA d1e05d6View commit details -
Update create-react-app to 2.1.2 (jaegertracing#302)
* WIP upgrade to create-react-app v2.1.2 Requires changes from PR jaegertracing#346 which are published as [email protected] timarney/react-app-rewired#346 Signed-off-by: Joe Farro <[email protected]> * Use node 8, less liberal browser support, fix test Signed-off-by: Joe Farro <[email protected]> * Use eslintrc, fix CI build, fix pre-commit hook Make sure the ./packages/jaeger-ui uses the ./.eslintrc. Make sure all tests are run in pre-commit hook. CRA is now failing builds in CI if there are any webpack build warnings: https://github.com/facebook/create-react-app/blob/73e3d0ebf1f2834e1c8c41d3a25ae5e0e99e6f14/packages/react-scripts/scripts/build.js#L171-L184 Signed-off-by: Joe Farro <[email protected]> * Skip react-vis.css format check, fail-fast in CI Signed-off-by: Joe Farro <[email protected]> * Don't collect coverage from dev proxy setup Signed-off-by: Joe Farro <[email protected]> * Upgrade react-app-rewired to 2.0.1 Avoid issue yarnpkg/yarn#6300 Signed-off-by: Joe Farro <[email protected]> * Cleanup npm packages in packages/jaeger-ui Signed-off-by: Joe Farro <[email protected]> Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6ea7d6a - Browse repository at this point
Copy the full SHA 6ea7d6aView commit details -
Add tests for consuming GraphSearch, Add tests for filter-spans
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5fa907b - Browse repository at this point
Copy the full SHA 5fa907bView commit details -
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0122fd7 - Browse repository at this point
Copy the full SHA 0122fd7View commit details -
Ability to open additional menu links in same tab (Resolves jaegertra…
…cing#275) (jaegertracing#278) * Ability to open additional menu links in same tab (jaegertracing#275) Signed-off-by: Vitaliy Zabolotskyy <[email protected]> * Add negative test case Signed-off-by: Vitaliy Zabolotskyy <[email protected]> * Add helper function to create item links Signed-off-by: Vitaliy Zabolotskyy <[email protected]> * Fix no-use-before-define lint error Signed-off-by: Vitaliy Zabolotskyy <[email protected]> * Use anchorTarget in custom menu configuration Signed-off-by: Joe Farro <[email protected]> * Fix typo in test case Signed-off-by: Joe Farro <[email protected]> Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f08a609 - Browse repository at this point
Copy the full SHA f08a609View commit details -
Revive the changelog (jaegertracing#300)
* Revive the changelog Signed-off-by: Joe Farro <[email protected]> * Add helper script to generate CHANGELOG entries Signed-off-by: Joe Farro <[email protected]> * One more changelog item, fix date typo Signed-off-by: Joe Farro <[email protected]> * Fix phrasing in changelog Signed-off-by: Joe Farro <[email protected]> Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8e2df85 - Browse repository at this point
Copy the full SHA 8e2df85View commit details -
Add SpanID support to filter-spans, Consolidate textFilter & GraphSearch
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7ea05f4 - Browse repository at this point
Copy the full SHA 7ea05f4View commit details -
Unify uiFind name, fix refs, improve types, remove commented code
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2bf1b43 - Browse repository at this point
Copy the full SHA 2bf1b43View commit details -
Add tests to new & tested files, merge common/GraphSearch into user
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 353d69c - Browse repository at this point
Copy the full SHA 353d69cView commit details -
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 99b7a6c - Browse repository at this point
Copy the full SHA 99b7a6cView commit details -
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 10b5194 - Browse repository at this point
Copy the full SHA 10b5194View commit details -
Merge branch 'jaegertracingmaster' into issue-307-add-node-search-to-…
…tracegraph-and-tracediffgraph Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for dd9f14c - Browse repository at this point
Copy the full SHA dd9f14cView commit details -
Use uppercase types, remove constructor for initial state
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0c5b591 - Browse repository at this point
Copy the full SHA 0c5b591View commit details
Commits on Jan 25, 2019
-
Update enzyme, Re-enable and add TracePage/index.test.js tests
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 50db264 - Browse repository at this point
Copy the full SHA 50db264View commit details -
Merge branch 'jaegertracingmaster' into issue-307-add-node-search-to-…
…tracegraph-and-tracediffgraph Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9a7e0c1 - Browse repository at this point
Copy the full SHA 9a7e0c1View commit details -
Merge branch 'issue-307-add-node-search-to-tracegraph-and-tracediffgr…
…aph' into issue-239-fix-TracePageHeader-tests-once-new-version-of-enzyme-is-released Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ef880c7 - Browse repository at this point
Copy the full SHA ef880c7View commit details
Commits on Feb 6, 2019
-
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e531d6e - Browse repository at this point
Copy the full SHA e531d6eView commit details
Commits on Feb 7, 2019
-
Treat all span relationships equally, make ui-find-match css more obv…
…ious Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fe420c6 - Browse repository at this point
Copy the full SHA fe420c6View commit details -
Fix node/edge layering, simplify ui-find-match css
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a5178e0 - Browse repository at this point
Copy the full SHA a5178e0View commit details
Commits on Feb 15, 2019
-
Change diffNode ui match color, scale ui match outline size
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 66f080d - Browse repository at this point
Copy the full SHA 66f080dView commit details
Commits on Feb 20, 2019
-
Calculate box-shadow size on nodesContainer not drawNode
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9dc1a4e - Browse repository at this point
Copy the full SHA 9dc1a4eView commit details
Commits on Feb 21, 2019
-
Fix color attributes to preserve node text color
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f685d47 - Browse repository at this point
Copy the full SHA f685d47View commit details -
Rename UIFind to UiFind, Update TraceDiffFind
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b6b40c0 - Browse repository at this point
Copy the full SHA b6b40c0View commit details
Commits on Feb 25, 2019
-
Finish DiffGraph find css, Render 0 count suffix
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for acd3e66 - Browse repository at this point
Copy the full SHA acd3e66View commit details -
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2434056 - Browse repository at this point
Copy the full SHA 2434056View commit details
Commits on Feb 26, 2019
-
Fix git case insensitivity issue
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 51337fb - Browse repository at this point
Copy the full SHA 51337fbView commit details -
Merge branch 'issue-307-add-node-search-to-tracegraph-and-tracediffgr…
…aph' into issue-239-fix-TracePageHeader-tests-once-new-version-of-enzyme-is-released
Configuration menu - View commit details
-
Copy full SHA for 4313988 - Browse repository at this point
Copy the full SHA 4313988View commit details -
Merge updated graph find, maintain increased test coverage
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1f5421d - Browse repository at this point
Copy the full SHA 1f5421dView commit details
Commits on Mar 1, 2019
-
Remove redundant find, Fix TraceGraph suffix, Fix flow complaint, WIP
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 69a576a - Browse repository at this point
Copy the full SHA 69a576aView commit details
Commits on Mar 5, 2019
-
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 259cd13 - Browse repository at this point
Copy the full SHA 259cd13View commit details -
Clean up CSS, Track only TracePage, Fix span-ancestor-ids logic
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 15c51d5 - Browse repository at this point
Copy the full SHA 15c51d5View commit details -
Ensure scroll to bottom scrolls to last visible span
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a1f5e59 - Browse repository at this point
Copy the full SHA a1f5e59View commit details -
Move addToUiFind logic to VirtualizedTraceView
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for aa3f2e5 - Browse repository at this point
Copy the full SHA aa3f2e5View commit details -
Merge branch 'master' into issue-307-add-node-search-to-tracegraph-an…
…d-tracediffgraph
Configuration menu - View commit details
-
Copy full SHA for df9bafd - Browse repository at this point
Copy the full SHA df9bafdView commit details
Commits on Mar 6, 2019
-
Merge branch 'issue-307-add-node-search-to-tracegraph-and-tracediffgr…
…aph' into issue-239-fix-TracePageHeader-tests-once-new-version-of-enzyme-is-released
Configuration menu - View commit details
-
Copy full SHA for 7422720 - Browse repository at this point
Copy the full SHA 7422720View commit details
Commits on Mar 7, 2019
-
Process FOLLOWS_FROM spans in TraceView (jaegertracing#335)
* Process FOLLOWS_FROM spans in TraceView Signed-off-by: Ruben Vargas <[email protected]> * Add test for FOLLOWS_FROM span relation for SpanTreeOffset Signed-off-by: Ruben Vargas <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c5034fa - Browse repository at this point
Copy the full SHA c5034faView commit details -
Move graph utils to new file, Clean up span-ancestor-id loop
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 95026f9 - Browse repository at this point
Copy the full SHA 95026f9View commit details
Commits on Mar 8, 2019
-
Configuration menu - View commit details
-
Copy full SHA for c3d4d14 - Browse repository at this point
Copy the full SHA c3d4d14View commit details -
Merge branch 'issue-307-add-node-search-to-tracegraph-and-tracediffgr…
…aph' into issue-239-fix-TracePageHeader-tests-once-new-version-of-enzyme-is-released
Configuration menu - View commit details
-
Copy full SHA for bf3386f - Browse repository at this point
Copy the full SHA bf3386fView commit details -
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b4afe2d - Browse repository at this point
Copy the full SHA b4afe2dView commit details -
Merge pull request #1 from everett980/issue-239-fix-TracePageHeader-t…
…ests-once-new-version-of-enzyme-is-released Update enzyme, Re-enable and add TraceDiff and TracePage tests
Configuration menu - View commit details
-
Copy full SHA for de6571f - Browse repository at this point
Copy the full SHA de6571fView commit details
Commits on Mar 11, 2019
-
Clean up and DRY out tests, Change trackFilter to function
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5386868 - Browse repository at this point
Copy the full SHA 5386868View commit details -
Merge branch 'jaegertracingmaster' into issue-307-add-node-search-to-…
…tracegraph-and-tracediffgraph
Configuration menu - View commit details
-
Copy full SHA for 5971072 - Browse repository at this point
Copy the full SHA 5971072View commit details -
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c5f40c8 - Browse repository at this point
Copy the full SHA c5f40c8View commit details -
Fix yarn.lock change %2f back to /
Signed-off-by: Everett Ross <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8a4b0fb - Browse repository at this point
Copy the full SHA 8a4b0fbView commit details
Commits on Mar 12, 2019
-
Merge branch 'master' into issue-307-add-node-search-to-tracegraph-an…
…d-tracediffgraph
Configuration menu - View commit details
-
Copy full SHA for d3965dc - Browse repository at this point
Copy the full SHA d3965dcView commit details