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

[Infra UI] Rename InfraOps to Infrastructure #25135

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 2 additions & 1 deletion x-pack/plugins/apm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ export function apm(kibana) {
description: 'APM for the Elastic Stack',
main: 'plugins/apm/index',
icon: 'plugins/apm/icon.svg',
euiIconType: 'apmApp'
euiIconType: 'apmApp',
order: 8100
},
home: ['plugins/apm/register_feature'],
injectDefaultVars(server) {
Expand Down
4 changes: 2 additions & 2 deletions x-pack/plugins/infra/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function infra(kibana: any) {
description: 'Explore your infrastructure',
icon: 'plugins/infra/images/infra_mono_white.svg',
main: 'plugins/infra/app',
title: 'InfraOps',
title: 'Infrastructure',
listed: false,
url: `/app/${APP_ID}#/home`,
},
Expand All @@ -34,7 +34,7 @@ export function infra(kibana: any) {
euiIconType: 'infraApp',
id: 'infra:home',
order: 8000,
title: 'Infra Ops',
title: 'Infrastructure',
url: `/app/${APP_ID}#/home`,
},
{
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/infra/public/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class Header extends React.PureComponent<HeaderProps> {
private staticBreadcrumbs = [
{
href: '#/',
text: 'InfraOps',
text: 'Infrastructure',
},
];

Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/infra/public/register_feature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const APP_ID = 'infra';

FeatureCatalogueRegistryProvider.register(() => ({
id: 'infraops',
title: 'InfraOps',
title: 'Infrastructure',
description:
'Explore infrastructure metrics and logs for common servers, containers, and services.',
icon: 'infraApp',
Expand Down