├── .config ├── .cprc.json ├── .eslintrc ├── .prettierrc.js ├── Dockerfile ├── README.md ├── docker-compose-base.yaml ├── entrypoint.sh ├── jest-setup.js ├── jest.config.js ├── jest │ ├── mocks │ │ └── fileMock.js │ └── utils.js ├── supervisord │ └── supervisord.conf ├── tsconfig.json ├── types │ ├── bundler-rules.d.ts │ ├── custom.d.ts │ └── webpack-plugins.d.ts └── webpack │ ├── BuildModeWebpackPlugin.ts │ ├── constants.ts │ ├── utils.ts │ └── webpack.config.ts ├── .cprc.json ├── .eslintrc ├── .eslintrc.js ├── .github └── workflows │ ├── bundle-stats.yml │ ├── bundle-types.yml │ ├── ci.yml │ ├── conventional-commits.yml │ ├── is-compatible.yml │ ├── publish-technical-documentation-next.yml │ ├── release.yml │ └── update-make-docs.yml ├── .gitignore ├── .levignore.js ├── .nvmrc ├── .prettierrc.js ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cspell.config.json ├── cypress.json ├── devenv ├── docker-compose.e2e.yaml ├── docker-compose.yaml └── tempo.yaml ├── docs ├── Makefile ├── README.md ├── docs.mk ├── make-docs ├── sources │ ├── _index.md │ ├── access │ │ └── index.md │ ├── choose-a-view │ │ └── index.md │ ├── concepts │ │ └── _index.md │ ├── determine-use-case │ │ └── index.md │ ├── explore-traces-homescreen.png │ ├── get-started │ │ └── _index.md │ ├── investigate │ │ ├── _index.md │ │ ├── add-filters.md │ │ ├── analyze-tracing-data.md │ │ ├── choose-red-metric.md │ │ ├── choose-span-data.md │ │ └── view-exemplars.md │ └── ui-reference │ │ └── _index.md └── variables.mk ├── e2e ├── components.spec.ts ├── fixtures │ └── explore.ts └── navigation.spec.ts ├── jest-setup.js ├── jest.config.js ├── package.json ├── playwright.config.ts ├── provisioning ├── README.md ├── datasources │ └── default.yaml └── plugins │ └── app.yaml ├── renovate.json ├── src ├── README.md ├── addedComponents │ ├── EntityAssertionsWidget │ │ └── EntityAssertionsWidget.tsx │ └── InsightsTimelineWidget │ │ └── InsightsTimelineWidget.tsx ├── components │ ├── App │ │ └── App.tsx │ ├── AppConfig │ │ └── AppConfig.tsx │ ├── Explore │ │ ├── AttributesSidebar.test.tsx │ │ ├── AttributesSidebar.tsx │ │ ├── ByFrameRepeater.test.ts │ │ ├── ByFrameRepeater.tsx │ │ ├── LayoutSwitcher.test.tsx │ │ ├── LayoutSwitcher.tsx │ │ ├── Search.tsx │ │ ├── StreamingIndicator.tsx │ │ ├── TraceQLIssueDetector.tsx │ │ ├── TracesByService │ │ │ ├── DurationComparisonControl.tsx │ │ │ ├── MiniREDPanel.tsx │ │ │ ├── REDPanel.tsx │ │ │ ├── Tabs │ │ │ │ ├── Breakdown │ │ │ │ │ ├── AttributesBreakdownScene.tsx │ │ │ │ │ ├── AttributesDescription.tsx │ │ │ │ │ ├── BreakdownScene.tsx │ │ │ │ │ └── PercentilesSelect.tsx │ │ │ │ ├── Comparison │ │ │ │ │ ├── AttributesComparisonScene.tsx │ │ │ │ │ └── ComparisonScene.tsx │ │ │ │ ├── Exceptions │ │ │ │ │ ├── ExceptionUtils.test.ts │ │ │ │ │ ├── ExceptionUtils.ts │ │ │ │ │ └── ExceptionsScene.tsx │ │ │ │ ├── Spans │ │ │ │ │ ├── SpanListScene.tsx │ │ │ │ │ └── SpansScene.tsx │ │ │ │ ├── Structure │ │ │ │ │ └── StructureScene.tsx │ │ │ │ └── TabsBarScene.tsx │ │ │ ├── TraceDrawerScene.tsx │ │ │ ├── TracesByServiceScene.test.tsx │ │ │ └── TracesByServiceScene.tsx │ │ ├── actions │ │ │ ├── AddToFiltersAction.test.tsx │ │ │ ├── AddToFiltersAction.tsx │ │ │ ├── AddToInvestigationButton.tsx │ │ │ ├── InspectAttributeAction.tsx │ │ │ ├── ShareExplorationAction.test.tsx │ │ │ └── ShareExplorationAction.tsx │ │ ├── behaviors │ │ │ └── syncYaxis.tsx │ │ ├── layouts │ │ │ ├── HighestDifferencePanel.tsx │ │ │ ├── allComparison.ts │ │ │ ├── attributeBreakdown.ts │ │ │ └── attributeComparison.ts │ │ ├── panels │ │ │ ├── PanelMenu.tsx │ │ │ ├── TraceViewPanelScene.tsx │ │ │ ├── barsPanel.ts │ │ │ ├── histogram.ts │ │ │ └── linesPanel.ts │ │ └── queries │ │ │ ├── StepQueryRunner.ts │ │ │ ├── comparisonQuery.ts │ │ │ ├── exceptions.ts │ │ │ ├── generateMetricsQuery.test.ts │ │ │ ├── generateMetricsQuery.ts │ │ │ ├── histogram.ts │ │ │ └── queries.test.ts │ ├── Home │ │ ├── AttributePanel.tsx │ │ ├── AttributePanelRow.test.tsx │ │ ├── AttributePanelRow.tsx │ │ ├── AttributePanelRows.test.tsx │ │ ├── AttributePanelRows.tsx │ │ ├── AttributePanelScene.tsx │ │ ├── ErroredServicesRows.tsx │ │ ├── HeaderScene.tsx │ │ ├── SlowestServicesRows.tsx │ │ └── SlowestTracesRows.tsx │ ├── Routes │ │ ├── Routes.tsx │ │ └── index.tsx │ └── states │ │ ├── EmptyState │ │ ├── EmptyState.tsx │ │ ├── EmptyStateScene.tsx │ │ ├── GrotNotFound.tsx │ │ ├── img │ │ │ ├── grot-404-dark.svg │ │ │ └── grot-404-light.svg │ │ └── useMousePosition.ts │ │ ├── ErrorState │ │ └── ErrorStateScene.tsx │ │ └── LoadingState │ │ └── LoadingStateScene.tsx ├── exposedComponents │ ├── EmbeddedTraceExploration │ │ └── EmbeddedTraceExploration.tsx │ ├── OpenInExploreTracesButton │ │ └── OpenInExploreTracesButton.tsx │ ├── index.tsx │ └── types.ts ├── hooks │ ├── index.ts │ └── useFavoriteAttributes.ts ├── img │ ├── errors-metric-flow.png │ ├── errors-root-cause.png │ ├── histogram-breakdown.png │ └── logo.svg ├── module.tsx ├── pages │ ├── Explore │ │ ├── AttributeFiltersVariable.tsx │ │ ├── DataLinksCustomContext.tsx │ │ ├── Drawer.tsx │ │ ├── PrimarySignalVariable.tsx │ │ ├── SmartDrawer.tsx │ │ ├── TraceExploration.tsx │ │ ├── TraceExplorationPage.tsx │ │ ├── index.tsx │ │ └── primary-signals.ts │ └── Home │ │ ├── Home.tsx │ │ ├── HomePage.tsx │ │ ├── bookmarks │ │ ├── BookmarkIcon.tsx │ │ ├── BookmarkItem.test.tsx │ │ ├── BookmarkItem.tsx │ │ ├── Bookmarks.test.tsx │ │ ├── Bookmarks.tsx │ │ ├── utils.test.ts │ │ └── utils.ts │ │ ├── utils.test.ts │ │ └── utils.ts ├── plugin.json ├── types.ts └── utils │ ├── analytics.ts │ ├── comparison.test.ts │ ├── comparison.ts │ ├── dates.test.ts │ ├── dates.ts │ ├── exemplars.ts │ ├── filters-renderer.test.ts │ ├── filters-renderer.ts │ ├── frames.ts │ ├── links.test.ts │ ├── links.ts │ ├── rockets.tsx │ ├── shared.ts │ ├── testIds.ts │ ├── trace-merge │ ├── merge.test.ts │ ├── merge.ts │ ├── test-responses │ │ └── service-struct.json │ ├── tree-node.ts │ └── utils.ts │ └── utils.ts ├── tsconfig-for-bundle-types.json ├── tsconfig.json ├── webpack.config.ts └── yarn.lock /.config/.cprc.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "5.25.8" 3 | } 4 | -------------------------------------------------------------------------------- /.config/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/.eslintrc -------------------------------------------------------------------------------- /.config/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/.prettierrc.js -------------------------------------------------------------------------------- /.config/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/Dockerfile -------------------------------------------------------------------------------- /.config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/README.md -------------------------------------------------------------------------------- /.config/docker-compose-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/docker-compose-base.yaml -------------------------------------------------------------------------------- /.config/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/entrypoint.sh -------------------------------------------------------------------------------- /.config/jest-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/jest-setup.js -------------------------------------------------------------------------------- /.config/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/jest.config.js -------------------------------------------------------------------------------- /.config/jest/mocks/fileMock.js: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /.config/jest/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/jest/utils.js -------------------------------------------------------------------------------- /.config/supervisord/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/supervisord/supervisord.conf -------------------------------------------------------------------------------- /.config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/tsconfig.json -------------------------------------------------------------------------------- /.config/types/bundler-rules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/types/bundler-rules.d.ts -------------------------------------------------------------------------------- /.config/types/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/types/custom.d.ts -------------------------------------------------------------------------------- /.config/types/webpack-plugins.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/types/webpack-plugins.d.ts -------------------------------------------------------------------------------- /.config/webpack/BuildModeWebpackPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/webpack/BuildModeWebpackPlugin.ts -------------------------------------------------------------------------------- /.config/webpack/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/webpack/constants.ts -------------------------------------------------------------------------------- /.config/webpack/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/webpack/utils.ts -------------------------------------------------------------------------------- /.config/webpack/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.config/webpack/webpack.config.ts -------------------------------------------------------------------------------- /.cprc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.cprc.json -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./.config/.eslintrc" 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/bundle-stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.github/workflows/bundle-stats.yml -------------------------------------------------------------------------------- /.github/workflows/bundle-types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.github/workflows/bundle-types.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/conventional-commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.github/workflows/conventional-commits.yml -------------------------------------------------------------------------------- /.github/workflows/is-compatible.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.github/workflows/is-compatible.yml -------------------------------------------------------------------------------- /.github/workflows/publish-technical-documentation-next.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.github/workflows/publish-technical-documentation-next.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/update-make-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.github/workflows/update-make-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.gitignore -------------------------------------------------------------------------------- /.levignore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.levignore.js -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/README.md -------------------------------------------------------------------------------- /cspell.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/cspell.config.json -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "video": false 3 | } 4 | -------------------------------------------------------------------------------- /devenv/docker-compose.e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/devenv/docker-compose.e2e.yaml -------------------------------------------------------------------------------- /devenv/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/devenv/docker-compose.yaml -------------------------------------------------------------------------------- /devenv/tempo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/devenv/tempo.yaml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/docs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/docs.mk -------------------------------------------------------------------------------- /docs/make-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/make-docs -------------------------------------------------------------------------------- /docs/sources/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/sources/_index.md -------------------------------------------------------------------------------- /docs/sources/access/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/sources/access/index.md -------------------------------------------------------------------------------- /docs/sources/choose-a-view/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/sources/choose-a-view/index.md -------------------------------------------------------------------------------- /docs/sources/concepts/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/sources/concepts/_index.md -------------------------------------------------------------------------------- /docs/sources/determine-use-case/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/sources/determine-use-case/index.md -------------------------------------------------------------------------------- /docs/sources/explore-traces-homescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/sources/explore-traces-homescreen.png -------------------------------------------------------------------------------- /docs/sources/get-started/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/sources/get-started/_index.md -------------------------------------------------------------------------------- /docs/sources/investigate/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/sources/investigate/_index.md -------------------------------------------------------------------------------- /docs/sources/investigate/add-filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/sources/investigate/add-filters.md -------------------------------------------------------------------------------- /docs/sources/investigate/analyze-tracing-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/sources/investigate/analyze-tracing-data.md -------------------------------------------------------------------------------- /docs/sources/investigate/choose-red-metric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/sources/investigate/choose-red-metric.md -------------------------------------------------------------------------------- /docs/sources/investigate/choose-span-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/sources/investigate/choose-span-data.md -------------------------------------------------------------------------------- /docs/sources/investigate/view-exemplars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/sources/investigate/view-exemplars.md -------------------------------------------------------------------------------- /docs/sources/ui-reference/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/sources/ui-reference/_index.md -------------------------------------------------------------------------------- /docs/variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/docs/variables.mk -------------------------------------------------------------------------------- /e2e/components.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/e2e/components.spec.ts -------------------------------------------------------------------------------- /e2e/fixtures/explore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/e2e/fixtures/explore.ts -------------------------------------------------------------------------------- /e2e/navigation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/e2e/navigation.spec.ts -------------------------------------------------------------------------------- /jest-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/jest-setup.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /provisioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/provisioning/README.md -------------------------------------------------------------------------------- /provisioning/datasources/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/provisioning/datasources/default.yaml -------------------------------------------------------------------------------- /provisioning/plugins/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/provisioning/plugins/app.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/renovate.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/README.md -------------------------------------------------------------------------------- /src/addedComponents/EntityAssertionsWidget/EntityAssertionsWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/addedComponents/EntityAssertionsWidget/EntityAssertionsWidget.tsx -------------------------------------------------------------------------------- /src/addedComponents/InsightsTimelineWidget/InsightsTimelineWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/addedComponents/InsightsTimelineWidget/InsightsTimelineWidget.tsx -------------------------------------------------------------------------------- /src/components/App/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/App/App.tsx -------------------------------------------------------------------------------- /src/components/AppConfig/AppConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/AppConfig/AppConfig.tsx -------------------------------------------------------------------------------- /src/components/Explore/AttributesSidebar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/AttributesSidebar.test.tsx -------------------------------------------------------------------------------- /src/components/Explore/AttributesSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/AttributesSidebar.tsx -------------------------------------------------------------------------------- /src/components/Explore/ByFrameRepeater.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/ByFrameRepeater.test.ts -------------------------------------------------------------------------------- /src/components/Explore/ByFrameRepeater.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/ByFrameRepeater.tsx -------------------------------------------------------------------------------- /src/components/Explore/LayoutSwitcher.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/LayoutSwitcher.test.tsx -------------------------------------------------------------------------------- /src/components/Explore/LayoutSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/LayoutSwitcher.tsx -------------------------------------------------------------------------------- /src/components/Explore/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/Search.tsx -------------------------------------------------------------------------------- /src/components/Explore/StreamingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/StreamingIndicator.tsx -------------------------------------------------------------------------------- /src/components/Explore/TraceQLIssueDetector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TraceQLIssueDetector.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/DurationComparisonControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/DurationComparisonControl.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/MiniREDPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/MiniREDPanel.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/REDPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/REDPanel.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/Tabs/Breakdown/AttributesBreakdownScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/Tabs/Breakdown/AttributesBreakdownScene.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/Tabs/Breakdown/AttributesDescription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/Tabs/Breakdown/AttributesDescription.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/Tabs/Breakdown/BreakdownScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/Tabs/Breakdown/BreakdownScene.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/Tabs/Breakdown/PercentilesSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/Tabs/Breakdown/PercentilesSelect.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/Tabs/Comparison/AttributesComparisonScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/Tabs/Comparison/AttributesComparisonScene.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/Tabs/Comparison/ComparisonScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/Tabs/Comparison/ComparisonScene.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/Tabs/Exceptions/ExceptionUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/Tabs/Exceptions/ExceptionUtils.test.ts -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/Tabs/Exceptions/ExceptionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/Tabs/Exceptions/ExceptionUtils.ts -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/Tabs/Exceptions/ExceptionsScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/Tabs/Exceptions/ExceptionsScene.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/Tabs/Spans/SpanListScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/Tabs/Spans/SpanListScene.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/Tabs/Spans/SpansScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/Tabs/Spans/SpansScene.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/Tabs/Structure/StructureScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/Tabs/Structure/StructureScene.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/Tabs/TabsBarScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/Tabs/TabsBarScene.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/TraceDrawerScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/TraceDrawerScene.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/TracesByServiceScene.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/TracesByServiceScene.test.tsx -------------------------------------------------------------------------------- /src/components/Explore/TracesByService/TracesByServiceScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/TracesByService/TracesByServiceScene.tsx -------------------------------------------------------------------------------- /src/components/Explore/actions/AddToFiltersAction.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/actions/AddToFiltersAction.test.tsx -------------------------------------------------------------------------------- /src/components/Explore/actions/AddToFiltersAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/actions/AddToFiltersAction.tsx -------------------------------------------------------------------------------- /src/components/Explore/actions/AddToInvestigationButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/actions/AddToInvestigationButton.tsx -------------------------------------------------------------------------------- /src/components/Explore/actions/InspectAttributeAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/actions/InspectAttributeAction.tsx -------------------------------------------------------------------------------- /src/components/Explore/actions/ShareExplorationAction.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/actions/ShareExplorationAction.test.tsx -------------------------------------------------------------------------------- /src/components/Explore/actions/ShareExplorationAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/actions/ShareExplorationAction.tsx -------------------------------------------------------------------------------- /src/components/Explore/behaviors/syncYaxis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/behaviors/syncYaxis.tsx -------------------------------------------------------------------------------- /src/components/Explore/layouts/HighestDifferencePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/layouts/HighestDifferencePanel.tsx -------------------------------------------------------------------------------- /src/components/Explore/layouts/allComparison.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/layouts/allComparison.ts -------------------------------------------------------------------------------- /src/components/Explore/layouts/attributeBreakdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/layouts/attributeBreakdown.ts -------------------------------------------------------------------------------- /src/components/Explore/layouts/attributeComparison.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/layouts/attributeComparison.ts -------------------------------------------------------------------------------- /src/components/Explore/panels/PanelMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/panels/PanelMenu.tsx -------------------------------------------------------------------------------- /src/components/Explore/panels/TraceViewPanelScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/panels/TraceViewPanelScene.tsx -------------------------------------------------------------------------------- /src/components/Explore/panels/barsPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/panels/barsPanel.ts -------------------------------------------------------------------------------- /src/components/Explore/panels/histogram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/panels/histogram.ts -------------------------------------------------------------------------------- /src/components/Explore/panels/linesPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/panels/linesPanel.ts -------------------------------------------------------------------------------- /src/components/Explore/queries/StepQueryRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/queries/StepQueryRunner.ts -------------------------------------------------------------------------------- /src/components/Explore/queries/comparisonQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/queries/comparisonQuery.ts -------------------------------------------------------------------------------- /src/components/Explore/queries/exceptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/queries/exceptions.ts -------------------------------------------------------------------------------- /src/components/Explore/queries/generateMetricsQuery.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/queries/generateMetricsQuery.test.ts -------------------------------------------------------------------------------- /src/components/Explore/queries/generateMetricsQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/queries/generateMetricsQuery.ts -------------------------------------------------------------------------------- /src/components/Explore/queries/histogram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/queries/histogram.ts -------------------------------------------------------------------------------- /src/components/Explore/queries/queries.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Explore/queries/queries.test.ts -------------------------------------------------------------------------------- /src/components/Home/AttributePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Home/AttributePanel.tsx -------------------------------------------------------------------------------- /src/components/Home/AttributePanelRow.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Home/AttributePanelRow.test.tsx -------------------------------------------------------------------------------- /src/components/Home/AttributePanelRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Home/AttributePanelRow.tsx -------------------------------------------------------------------------------- /src/components/Home/AttributePanelRows.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Home/AttributePanelRows.test.tsx -------------------------------------------------------------------------------- /src/components/Home/AttributePanelRows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Home/AttributePanelRows.tsx -------------------------------------------------------------------------------- /src/components/Home/AttributePanelScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Home/AttributePanelScene.tsx -------------------------------------------------------------------------------- /src/components/Home/ErroredServicesRows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Home/ErroredServicesRows.tsx -------------------------------------------------------------------------------- /src/components/Home/HeaderScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Home/HeaderScene.tsx -------------------------------------------------------------------------------- /src/components/Home/SlowestServicesRows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Home/SlowestServicesRows.tsx -------------------------------------------------------------------------------- /src/components/Home/SlowestTracesRows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Home/SlowestTracesRows.tsx -------------------------------------------------------------------------------- /src/components/Routes/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/Routes/Routes.tsx -------------------------------------------------------------------------------- /src/components/Routes/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Routes'; 2 | -------------------------------------------------------------------------------- /src/components/states/EmptyState/EmptyState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/states/EmptyState/EmptyState.tsx -------------------------------------------------------------------------------- /src/components/states/EmptyState/EmptyStateScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/states/EmptyState/EmptyStateScene.tsx -------------------------------------------------------------------------------- /src/components/states/EmptyState/GrotNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/states/EmptyState/GrotNotFound.tsx -------------------------------------------------------------------------------- /src/components/states/EmptyState/img/grot-404-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/states/EmptyState/img/grot-404-dark.svg -------------------------------------------------------------------------------- /src/components/states/EmptyState/img/grot-404-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/states/EmptyState/img/grot-404-light.svg -------------------------------------------------------------------------------- /src/components/states/EmptyState/useMousePosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/states/EmptyState/useMousePosition.ts -------------------------------------------------------------------------------- /src/components/states/ErrorState/ErrorStateScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/states/ErrorState/ErrorStateScene.tsx -------------------------------------------------------------------------------- /src/components/states/LoadingState/LoadingStateScene.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/components/states/LoadingState/LoadingStateScene.tsx -------------------------------------------------------------------------------- /src/exposedComponents/EmbeddedTraceExploration/EmbeddedTraceExploration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/exposedComponents/EmbeddedTraceExploration/EmbeddedTraceExploration.tsx -------------------------------------------------------------------------------- /src/exposedComponents/OpenInExploreTracesButton/OpenInExploreTracesButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/exposedComponents/OpenInExploreTracesButton/OpenInExploreTracesButton.tsx -------------------------------------------------------------------------------- /src/exposedComponents/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/exposedComponents/index.tsx -------------------------------------------------------------------------------- /src/exposedComponents/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/exposedComponents/types.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/useFavoriteAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/hooks/useFavoriteAttributes.ts -------------------------------------------------------------------------------- /src/img/errors-metric-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/img/errors-metric-flow.png -------------------------------------------------------------------------------- /src/img/errors-root-cause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/img/errors-root-cause.png -------------------------------------------------------------------------------- /src/img/histogram-breakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/img/histogram-breakdown.png -------------------------------------------------------------------------------- /src/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/img/logo.svg -------------------------------------------------------------------------------- /src/module.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/module.tsx -------------------------------------------------------------------------------- /src/pages/Explore/AttributeFiltersVariable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Explore/AttributeFiltersVariable.tsx -------------------------------------------------------------------------------- /src/pages/Explore/DataLinksCustomContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Explore/DataLinksCustomContext.tsx -------------------------------------------------------------------------------- /src/pages/Explore/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Explore/Drawer.tsx -------------------------------------------------------------------------------- /src/pages/Explore/PrimarySignalVariable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Explore/PrimarySignalVariable.tsx -------------------------------------------------------------------------------- /src/pages/Explore/SmartDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Explore/SmartDrawer.tsx -------------------------------------------------------------------------------- /src/pages/Explore/TraceExploration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Explore/TraceExploration.tsx -------------------------------------------------------------------------------- /src/pages/Explore/TraceExplorationPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Explore/TraceExplorationPage.tsx -------------------------------------------------------------------------------- /src/pages/Explore/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './TraceExploration'; 2 | -------------------------------------------------------------------------------- /src/pages/Explore/primary-signals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Explore/primary-signals.ts -------------------------------------------------------------------------------- /src/pages/Home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Home/Home.tsx -------------------------------------------------------------------------------- /src/pages/Home/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Home/HomePage.tsx -------------------------------------------------------------------------------- /src/pages/Home/bookmarks/BookmarkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Home/bookmarks/BookmarkIcon.tsx -------------------------------------------------------------------------------- /src/pages/Home/bookmarks/BookmarkItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Home/bookmarks/BookmarkItem.test.tsx -------------------------------------------------------------------------------- /src/pages/Home/bookmarks/BookmarkItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Home/bookmarks/BookmarkItem.tsx -------------------------------------------------------------------------------- /src/pages/Home/bookmarks/Bookmarks.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Home/bookmarks/Bookmarks.test.tsx -------------------------------------------------------------------------------- /src/pages/Home/bookmarks/Bookmarks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Home/bookmarks/Bookmarks.tsx -------------------------------------------------------------------------------- /src/pages/Home/bookmarks/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Home/bookmarks/utils.test.ts -------------------------------------------------------------------------------- /src/pages/Home/bookmarks/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Home/bookmarks/utils.ts -------------------------------------------------------------------------------- /src/pages/Home/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Home/utils.test.ts -------------------------------------------------------------------------------- /src/pages/Home/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/pages/Home/utils.ts -------------------------------------------------------------------------------- /src/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/plugin.json -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/analytics.ts -------------------------------------------------------------------------------- /src/utils/comparison.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/comparison.test.ts -------------------------------------------------------------------------------- /src/utils/comparison.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/comparison.ts -------------------------------------------------------------------------------- /src/utils/dates.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/dates.test.ts -------------------------------------------------------------------------------- /src/utils/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/dates.ts -------------------------------------------------------------------------------- /src/utils/exemplars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/exemplars.ts -------------------------------------------------------------------------------- /src/utils/filters-renderer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/filters-renderer.test.ts -------------------------------------------------------------------------------- /src/utils/filters-renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/filters-renderer.ts -------------------------------------------------------------------------------- /src/utils/frames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/frames.ts -------------------------------------------------------------------------------- /src/utils/links.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/links.test.ts -------------------------------------------------------------------------------- /src/utils/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/links.ts -------------------------------------------------------------------------------- /src/utils/rockets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/rockets.tsx -------------------------------------------------------------------------------- /src/utils/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/shared.ts -------------------------------------------------------------------------------- /src/utils/testIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/testIds.ts -------------------------------------------------------------------------------- /src/utils/trace-merge/merge.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/trace-merge/merge.test.ts -------------------------------------------------------------------------------- /src/utils/trace-merge/merge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/trace-merge/merge.ts -------------------------------------------------------------------------------- /src/utils/trace-merge/test-responses/service-struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/trace-merge/test-responses/service-struct.json -------------------------------------------------------------------------------- /src/utils/trace-merge/tree-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/trace-merge/tree-node.ts -------------------------------------------------------------------------------- /src/utils/trace-merge/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/trace-merge/utils.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /tsconfig-for-bundle-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/tsconfig-for-bundle-types.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/webpack.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/traces-drilldown/HEAD/yarn.lock --------------------------------------------------------------------------------