Skip to content

Commit

Permalink
loggingApp -> logsApp icon
Browse files Browse the repository at this point in the history
  • Loading branch information
thompsongl committed Oct 23, 2019
1 parent 9112b1b commit 100790b
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const TransactionActionMenu: FunctionComponent<Props> = (

const infraConfigItems: InfraConfigItem[] = [
{
icon: 'loggingApp',
icon: 'logsApp',
label: i18n.translate(
'xpack.apm.transactionActionMenu.showPodLogsLinkLabel',
{ defaultMessage: 'Show pod logs' }
Expand All @@ -91,7 +91,7 @@ export const TransactionActionMenu: FunctionComponent<Props> = (
query: { time }
},
{
icon: 'loggingApp',
icon: 'logsApp',
label: i18n.translate(
'xpack.apm.transactionActionMenu.showContainerLogsLinkLabel',
{ defaultMessage: 'Show container logs' }
Expand All @@ -101,7 +101,7 @@ export const TransactionActionMenu: FunctionComponent<Props> = (
query: { time }
},
{
icon: 'loggingApp',
icon: 'logsApp',
label: i18n.translate(
'xpack.apm.transactionActionMenu.showHostLogsLinkLabel',
{ defaultMessage: 'Show host logs' }
Expand All @@ -111,7 +111,7 @@ export const TransactionActionMenu: FunctionComponent<Props> = (
query: { time }
},
{
icon: 'loggingApp',
icon: 'logsApp',
label: i18n.translate(
'xpack.apm.transactionActionMenu.showTraceLogsLinkLabel',
{ defaultMessage: 'Show trace logs' }
Expand Down
4 changes: 2 additions & 2 deletions x-pack/legacy/plugins/infra/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function infra(kibana: any) {
defaultMessage: 'Explore your logs',
}),
icon: 'plugins/infra/images/logging_mono_white.svg',
euiIconType: 'loggingApp',
euiIconType: 'logsApp',
id: 'infra:logs',
order: 8001,
title: i18n.translate('xpack.infra.linkLogsTitle', {
Expand All @@ -76,7 +76,7 @@ export function infra(kibana: any) {
{
path: `/app/${APP_ID}#/logs`,
label: logsSampleDataLinkLabel,
icon: 'loggingApp',
icon: 'logsApp',
},
]);
},
Expand Down
2 changes: 1 addition & 1 deletion x-pack/legacy/plugins/infra/public/register_feature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ FeatureCatalogueRegistryProvider.register((i18n: I18nServiceType) => ({
defaultMessage:
'Stream logs in real time or scroll through historical views in a console-like experience.',
}),
icon: 'loggingApp',
icon: 'logsApp',
path: `/app/${APP_ID}#logs`,
showOnHomePage: true,
category: FeatureCatalogueCategory.DATA,
Expand Down
2 changes: 1 addition & 1 deletion x-pack/legacy/plugins/infra/server/kibana.index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const initServerWithKibana = (kbnServer: KbnServer) => {
name: i18n.translate('xpack.infra.featureRegistry.linkLogsTitle', {
defaultMessage: 'Logs',
}),
icon: 'loggingApp',
icon: 'logsApp',
navLinkId: 'infra:logs',
app: ['infra', 'kibana'],
catalogue: ['infralogging'],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"icon": "loggingApp"
"icon": "logsApp"
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export class Logs extends PureComponent {
title={i18n.translate('xpack.monitoring.logs.listing.calloutTitle', {
defaultMessage: 'Want to see more log entries?'
})}
iconType="loggingApp"
iconType="logsApp"
>
<p>
<FormattedMessage
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export const IntegrationGroup = ({
}
)}
href={getLoggingIpHref(summary, basePath)}
iconType="loggingApp"
iconType="logsApp"
message={i18n.translate(
'xpack.uptime.monitorList.loggingIntegrationAction.ip.message',
{
Expand All @@ -200,7 +200,7 @@ export const IntegrationGroup = ({
}
)}
href={getLoggingKubernetesHref(summary, basePath)}
iconType="loggingApp"
iconType="logsApp"
message={i18n.translate(
'xpack.uptime.monitorList.loggingIntegrationAction.kubernetes.message',
{
Expand All @@ -227,7 +227,7 @@ export const IntegrationGroup = ({
}
)}
href={getLoggingContainerHref(summary, basePath)}
iconType="loggingApp"
iconType="logsApp"
message={i18n.translate(
'xpack.uptime.monitorList.loggingIntegrationAction.container.message',
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { i18n } from '@kbn/i18n';
interface IntegrationLinkProps {
ariaLabel: string;
href: string | undefined;
iconType: 'apmApp' | 'metricsApp' | 'loggingApp';
iconType: 'apmApp' | 'metricsApp' | 'logsApp';
message: string;
tooltipContent: string;
}
Expand Down
2 changes: 1 addition & 1 deletion x-pack/legacy/plugins/watcher/common/types/action_types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export interface EmailAction extends BaseAction {

export interface LoggingAction extends BaseAction {
type: LoggingActionType;
iconClass: 'loggingApp';
iconClass: 'logsApp';
text: string;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class LoggingAction extends BaseAction {
static typeName = i18n.translate('xpack.watcher.models.loggingAction.typeName', {
defaultMessage: 'Logging',
});
static iconClass = 'loggingApp';
static iconClass = 'logsApp';
static selectMessage = i18n.translate('xpack.watcher.models.loggingAction.selectMessageText', {
defaultMessage: 'Add an item to the logs.',
});
Expand Down

0 comments on commit 100790b

Please sign in to comment.