Skip to content

Commit 3d83315

Browse files
authored
Rename "service overview" to "service inventory" (#81933) (#82181)
To remove confusion when implementing #81718, rename the existing "service overview" to "service inventory." * Rename `ServiceOverviewLink` to `ServiceInventoryLink` * Remove service inventory test snapshots * Rename `ServiceOverview` to `ServiceInventory` * Add `service_inventory` to pageview tracking * Rename i18n keys for service inventory * Change "return to overview" link to "return to inventory" on settings page * Rename `fetchOverviewPageData` to `fetchObservabilityOverviewPageData`
1 parent 5af6312 commit 3d83315

File tree

23 files changed

+106
-883
lines changed

23 files changed

+106
-883
lines changed

x-pack/plugins/apm/e2e/cypress/support/step_definitions/apm.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { loginAndWaitForPage } from '../../integration/helpers';
1111
export const DEFAULT_TIMEOUT = 60 * 1000;
1212

1313
Given(`a user browses the APM UI application`, () => {
14-
// open service overview page
14+
// Open service inventory page
1515
loginAndWaitForPage(`/app/apm/services`, {
1616
from: '2020-06-01T14:59:32.686Z',
1717
to: '2020-06-16T16:59:36.219Z',

x-pack/plugins/apm/e2e/cypress/support/step_definitions/csm/csm_dashboard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { verifyClientMetrics } from './client_metrics_helper';
1212
export const DEFAULT_TIMEOUT = { timeout: 60 * 1000 };
1313

1414
Given(`a user browses the APM UI application for RUM Data`, () => {
15-
// open service overview page
15+
// Open UX landing page
1616
const RANGE_FROM = 'now-24h';
1717
const RANGE_TO = 'now';
1818
loginAndWaitForPage(

x-pack/plugins/apm/public/components/app/Home/index.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ import { ApmHeader } from '../../shared/ApmHeader';
2020
import { EuiTabLink } from '../../shared/EuiTabLink';
2121
import { AnomalyDetectionSetupLink } from '../../shared/Links/apm/AnomalyDetectionSetupLink';
2222
import { ServiceMapLink } from '../../shared/Links/apm/ServiceMapLink';
23-
import { ServiceOverviewLink } from '../../shared/Links/apm/ServiceOverviewLink';
23+
import { ServiceInventoryLink } from '../../shared/Links/apm/service_inventory_link';
2424
import { SettingsLink } from '../../shared/Links/apm/SettingsLink';
2525
import { TraceOverviewLink } from '../../shared/Links/apm/TraceOverviewLink';
2626
import { SetupInstructionsLink } from '../../shared/Links/SetupInstructionsLink';
2727
import { ServiceMap } from '../ServiceMap';
28-
import { ServiceOverview } from '../ServiceOverview';
28+
import { ServiceInventory } from '../service_inventory';
2929
import { TraceOverview } from '../TraceOverview';
3030
import { AlertingPopoverAndFlyout } from './alerting_popover_flyout';
3131

@@ -37,13 +37,13 @@ function getHomeTabs({
3737
const homeTabs = [
3838
{
3939
link: (
40-
<ServiceOverviewLink>
40+
<ServiceInventoryLink>
4141
{i18n.translate('xpack.apm.home.servicesTabLabel', {
4242
defaultMessage: 'Services',
4343
})}
44-
</ServiceOverviewLink>
44+
</ServiceInventoryLink>
4545
),
46-
render: () => <ServiceOverview />,
46+
render: () => <ServiceInventory />,
4747
name: 'services',
4848
},
4949
{

x-pack/plugins/apm/public/components/app/ServiceOverview/__test__/NoServicesMessage.test.tsx

Lines changed: 0 additions & 26 deletions
This file was deleted.

x-pack/plugins/apm/public/components/app/ServiceOverview/__test__/__snapshots__/NoServicesMessage.test.tsx.snap

Lines changed: 0 additions & 99 deletions
This file was deleted.

0 commit comments

Comments
 (0)