Skip to content

Commit

Permalink
[APM] Remove UX app promo callout (#91118)
Browse files Browse the repository at this point in the history
Co-authored-by: Kibana Machine <[email protected]>
  • Loading branch information
formgeist and kibanamachine authored Feb 12, 2021
1 parent afed310 commit 6438cb0
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 69 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import { LatencyChart } from '../../shared/charts/latency_chart';
import { TransactionBreakdownChart } from '../../shared/charts/transaction_breakdown_chart';
import { TransactionErrorRateChart } from '../../shared/charts/transaction_error_rate_chart';
import { SearchBar } from '../../shared/search_bar';
import { UserExperienceCallout } from '../transaction_overview/user_experience_callout';
import { ServiceOverviewDependenciesTable } from './service_overview_dependencies_table';
import { ServiceOverviewErrorsTable } from './service_overview_errors_table';
import { ServiceOverviewInstancesChartAndTable } from './service_overview_instances_chart_and_table';
Expand Down Expand Up @@ -61,11 +60,6 @@ export function ServiceOverview({
<SearchBar prepend={transactionTypeLabel} showTimeComparison />
<EuiPage>
<EuiFlexGroup direction="column" gutterSize="s">
{isRumAgent && (
<EuiFlexItem>
<UserExperienceCallout serviceName={serviceName} />
</EuiFlexItem>
)}
<EuiFlexItem>
<EuiPanel>
<LatencyChart height={200} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import { Location } from 'history';
import React from 'react';
import { useLocation } from 'react-router-dom';
import { useTrackPageview } from '../../../../../observability/public';
import { TRANSACTION_PAGE_LOAD } from '../../../../common/transaction_types';
import { useApmServiceContext } from '../../../context/apm_service/use_apm_service_context';
import { IUrlParams } from '../../../context/url_params_context/types';
import { useUrlParams } from '../../../context/url_params_context/use_url_params';
Expand All @@ -33,7 +32,6 @@ import { TransactionTypeSelect } from '../../shared/transaction_type_select';
import { Correlations } from '../Correlations';
import { TransactionList } from './TransactionList';
import { useRedirect } from './useRedirect';
import { UserExperienceCallout } from './user_experience_callout';
import { useTransactionListFetcher } from './use_transaction_list';

function getRedirectLocation({
Expand Down Expand Up @@ -116,13 +114,6 @@ export function TransactionOverview({ serviceName }: TransactionOverviewProps) {
<Correlations />
</EuiFlexItem>
</EuiFlexGroup>

{transactionType === TRANSACTION_PAGE_LOAD && (
<>
<UserExperienceCallout serviceName={serviceName} />
<EuiSpacer size="s" />
</>
)}
<TransactionCharts />
<EuiSpacer size="s" />
<EuiPanel>
Expand Down

This file was deleted.

3 changes: 0 additions & 3 deletions x-pack/plugins/translations/translations/ja-JP.json
Original file line number Diff line number Diff line change
Expand Up @@ -5451,9 +5451,6 @@
"xpack.apm.transactionDurationLabel": "期間",
"xpack.apm.transactionErrorRateAlert.name": "トランザクションエラー率しきい値",
"xpack.apm.transactionErrorRateAlertTrigger.isAbove": "より大きい",
"xpack.apm.transactionOverview.userExperience.calloutText": "特にRUMサービスのユーザーエクスペリエンスメトリックを分析するための新しい経験が導入されます。ブラウザーと位置情報別に細分化されたコアバイタルとアクセスユーザーに関するインサイトを得ることができます。このアプリは、他のオブザーバビリティビューで左側のサイドバーで常に使用できます。",
"xpack.apm.transactionOverview.userExperience.calloutTitle": "導入:Elasticユーザーエクスペリエンス",
"xpack.apm.transactionOverview.userExperience.linkLabel": "移動",
"xpack.apm.transactionRateLabel": "{value} tpm",
"xpack.apm.transactions.latency.chart.95thPercentileLabel": "95 パーセンタイル",
"xpack.apm.transactions.latency.chart.99thPercentileLabel": "99 パーセンタイル",
Expand Down
3 changes: 0 additions & 3 deletions x-pack/plugins/translations/translations/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -5461,9 +5461,6 @@
"xpack.apm.transactionDurationLabel": "持续时间",
"xpack.apm.transactionErrorRateAlert.name": "事务错误率阈值",
"xpack.apm.transactionErrorRateAlertTrigger.isAbove": "高于",
"xpack.apm.transactionOverview.userExperience.calloutText": "我们非常高兴地推出一种用于分析用户体验指标的新体验,专门用于您的 RUM 服务。通过该体验,可深入了解按浏览器和位置细分的核心指标和访客。该应用始终位于其他“可观测性”视图的左侧边栏中。",
"xpack.apm.transactionOverview.userExperience.calloutTitle": "即将引入:Elastic 用户体验",
"xpack.apm.transactionOverview.userExperience.linkLabel": "带我前往此处",
"xpack.apm.transactionRateLabel": "{value} tpm",
"xpack.apm.transactions.latency.chart.95thPercentileLabel": "第 95 个百分位",
"xpack.apm.transactions.latency.chart.99thPercentileLabel": "第 99 个百分位",
Expand Down

0 comments on commit 6438cb0

Please sign in to comment.