Skip to content

Commit d69a3e4

Browse files
[APM] Update User Experience app callout code to reflect new name (#80641) (#80662)
1 parent d8f4a23 commit d69a3e4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import { TransactionTypeFilter } from '../../shared/LocalUIFilters/TransactionTy
3636
import { TransactionList } from './TransactionList';
3737
import { useRedirect } from './useRedirect';
3838
import { TRANSACTION_PAGE_LOAD } from '../../../../common/transaction_types';
39-
import { ClientSideMonitoringCallout } from './ClientSideMonitoringCallout';
39+
import { UserExperienceCallout } from './user_experience_callout';
4040

4141
function getRedirectLocation({
4242
urlParams,
@@ -129,7 +129,7 @@ export function TransactionOverview({ serviceName }: TransactionOverviewProps) {
129129
<EuiFlexItem grow={7}>
130130
{transactionType === TRANSACTION_PAGE_LOAD && (
131131
<>
132-
<ClientSideMonitoringCallout />
132+
<UserExperienceCallout />
133133
<EuiSpacer size="s" />
134134
</>
135135
)}
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,31 +9,31 @@ import { EuiButton, EuiCallOut, EuiSpacer, EuiText } from '@elastic/eui';
99
import { i18n } from '@kbn/i18n';
1010
import { useApmPluginContext } from '../../../hooks/useApmPluginContext';
1111

12-
export function ClientSideMonitoringCallout() {
12+
export function UserExperienceCallout() {
1313
const { core } = useApmPluginContext();
14-
const clientSideMonitoringHref = core.http.basePath.prepend(`/app/ux`);
14+
const userExperienceHref = core.http.basePath.prepend(`/app/ux`);
1515

1616
return (
1717
<EuiCallOut
1818
iconType="cheer"
1919
title={i18n.translate(
20-
'xpack.apm.transactionOverview.clientSideMonitoring.calloutTitle',
20+
'xpack.apm.transactionOverview.userExperience.calloutTitle',
2121
{ defaultMessage: 'Introducing: Elastic User Experience' }
2222
)}
2323
>
2424
<EuiText>
2525
{i18n.translate(
26-
'xpack.apm.transactionOverview.clientSideMonitoring.calloutText',
26+
'xpack.apm.transactionOverview.userExperience.calloutText',
2727
{
2828
defaultMessage:
2929
'We are beyond excited to introduce a new experience for analyzing the user experience metrics specifically for your RUM services. It provides insights into the core vitals and visitor breakdown by browser and location. The app is always available in the left sidebar among the other Observability views.',
3030
}
3131
)}
3232
</EuiText>
3333
<EuiSpacer size="m" />
34-
<EuiButton href={clientSideMonitoringHref}>
34+
<EuiButton href={userExperienceHref}>
3535
{i18n.translate(
36-
'xpack.apm.transactionOverview.clientSideMonitoring.linkLabel',
36+
'xpack.apm.transactionOverview.userExperience.linkLabel',
3737
{ defaultMessage: 'Take me there' }
3838
)}
3939
</EuiButton>

0 commit comments

Comments
 (0)