Skip to content
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

[UX Dashboard] Migrate page load duration chart out of APM #132970

Merged
merged 21 commits into from
Jul 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
113bd97
Delete page load distribution route from APM.
justinkambic May 25, 2022
880bee9
Finish conversion to exploratory view embeddable.
justinkambic Jun 3, 2022
1626a3e
Delete obsolete unit test.
justinkambic Jun 6, 2022
2cde512
Delete obsolete test snapshot.
justinkambic Jun 13, 2022
a4e1d87
Convert page views chart to exploratory view embeddable.
justinkambic Jun 13, 2022
ea6c5e8
Clean up `any` usage, prefer constants for field names, delete dead c…
justinkambic Jun 14, 2022
5aba647
Delete obsolete API tests.
justinkambic Jun 14, 2022
04cb046
Delete obsolete test snapshot.
justinkambic Jun 14, 2022
09f2be4
Remove obsolete test snapshot.
justinkambic Jun 14, 2022
b1517b9
Clean up field names, fix bug on page distribution chart.
justinkambic Jun 14, 2022
b6a476e
Merge branch 'main' into 454/page-load-distribution
justinkambic Jun 15, 2022
4a2b845
fix env filter
shahzad31 Jun 16, 2022
d99a46c
Merge branch 'main' into 454/page-load-distribution
kibanamachine Jun 20, 2022
133d7be
Merge branch 'main' of github.com:elastic/kibana into 454/page-load-d…
shahzad31 Jul 12, 2022
80bffa4
cleanup
shahzad31 Jul 12, 2022
34c366d
Merge branch 'main' of github.com:elastic/kibana into 454/page-load-d…
shahzad31 Jul 13, 2022
c49375b
Merge branch 'main' of github.com:elastic/kibana into 454/page-load-d…
shahzad31 Jul 13, 2022
c31f076
fix
shahzad31 Jul 13, 2022
e9aa96a
pr feedback
shahzad31 Jul 13, 2022
ffeaafd
update types
shahzad31 Jul 13, 2022
70cadb1
Merge branch 'main' into 454/page-load-distribution
shahzad31 Jul 13, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,6 @@
# Client Side Monitoring / Uptime (lives in APM directories but owned by Uptime)
/x-pack/plugins/apm/public/application/uxApp.tsx @elastic/uptime
/x-pack/plugins/apm/public/components/app/rum_dashboard @elastic/uptime
/x-pack/plugins/apm/server/lib/rum_client @elastic/uptime
/x-pack/plugins/apm/server/routes/rum_client.ts @elastic/uptime
/x-pack/plugins/apm/server/projections/rum_page_load_transactions.ts @elastic/uptime
/x-pack/test/apm_api_integration/tests/csm/ @elastic/uptime

### END Observability Plugins
Expand Down
4 changes: 0 additions & 4 deletions .github/paths-labeller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,3 @@
- "x-pack/plugins/synthetics/**/*.*"
- "x-pack/plugins/ux/**/*.*"
- "x-pack/plugins/observability/public/components/shared/exploratory_view/**/*.*"
- "x-pack/plugins/apm/server/lib/rum_client/**/*.*"
- "x-pack/plugins/apm/server/lib/rum_client/*.*"
- "x-pack/plugins/apm/server/routes/rum_client.ts"
- "x-pack/plugins/apm/server/projections/rum_overview.ts"
121 changes: 0 additions & 121 deletions x-pack/plugins/apm/server/projections/rum_page_load_transactions.ts

This file was deleted.

24 changes: 0 additions & 24 deletions x-pack/plugins/apm/server/projections/typings.ts

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import { infrastructureRouteRepository } from '../infrastructure/route';
import { latencyDistributionRouteRepository } from '../latency_distribution/route';
import { metricsRouteRepository } from '../metrics/route';
import { observabilityOverviewRouteRepository } from '../observability_overview/route';
import { rumRouteRepository } from '../rum_client/route';
import { serviceRouteRepository } from '../services/route';
import { serviceGroupRouteRepository } from '../service_groups/route';
import { serviceMapRouteRepository } from '../service_map/route';
Expand All @@ -50,7 +49,6 @@ function getTypedGlobalApmServerRouteRepository() {
...latencyDistributionRouteRepository,
...metricsRouteRepository,
...observabilityOverviewRouteRepository,
...rumRouteRepository,
...serviceMapRouteRepository,
...serviceNodeRouteRepository,
...serviceRouteRepository,
Expand Down
Loading