[Profiling] Use 'Universal Profiling' everywhere (#140906)

This commit is contained in:
Dario Gieselaar 2022-09-19 11:21:14 +02:00 committed by GitHub
parent 1d2aa8a531
commit fabdee3dde
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View file

@ -37,7 +37,7 @@ export function ProfilingAppPageTemplate({
<ObservabilityPageTemplate
pageHeader={{
pageTitle: i18n.translate('xpack.profiling.appPageTemplate.pageTitle', {
defaultMessage: 'Profiling',
defaultMessage: 'Universal Profiling',
}),
tabs,
}}

View file

@ -55,7 +55,7 @@ export class ProfilingPlugin implements Plugin {
{
// TODO: add beta badge to section label, needs support in Observability plugin
label: i18n.translate('xpack.profiling.navigation.sectionLabel', {
defaultMessage: 'Profiling',
defaultMessage: 'Universal Profiling',
}),
entries: links.map((link) => {
return {
@ -78,7 +78,7 @@ export class ProfilingPlugin implements Plugin {
coreSetup.application.register({
id: 'profiling',
title: 'Profiling',
title: 'Universal Profiling',
euiIconType: 'logoObservability',
appRoute: '/app/profiling',
category: DEFAULT_APP_CATEGORIES.observability,

View file

@ -23,7 +23,7 @@ const routes = {
element: (
<RouteBreadcrumb
title={i18n.translate('xpack.profiling.breadcrumb.profiling', {
defaultMessage: 'Profiling',
defaultMessage: 'Universal Profiling',
})}
href="/"
>

View file

@ -13,7 +13,7 @@ export const PROFILING_SERVER_FEATURE_ID = 'profiling';
export const PROFILING_FEATURE = {
id: PROFILING_SERVER_FEATURE_ID,
name: i18n.translate('xpack.profiling.featureRegistry.profilingFeatureName', {
defaultMessage: 'Profiling',
defaultMessage: 'Universal Profiling',
}),
order: 1200,
category: DEFAULT_APP_CATEGORIES.observability,