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

[Ingest Pipelines] Convert processor labels to sentence case #75278

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const mapProcessorTypeToDescriptor: MapProcessorTypeToDescriptor = {
FieldsComponent: DateIndexName,
docLinkPath: '/date-index-name-processor.html',
label: i18n.translate('xpack.ingestPipelines.processors.label.dateIndexName', {
defaultMessage: 'Date Index Name',
defaultMessage: 'Date index name',
}),
},
dissect: {
Expand All @@ -95,7 +95,7 @@ export const mapProcessorTypeToDescriptor: MapProcessorTypeToDescriptor = {
FieldsComponent: DotExpander,
docLinkPath: '/dot-expand-processor.html',
label: i18n.translate('xpack.ingestPipelines.processors.label.dotExpander', {
defaultMessage: 'Dot Expander',
defaultMessage: 'Dot expander',
}),
},
drop: {
Expand Down Expand Up @@ -144,7 +144,7 @@ export const mapProcessorTypeToDescriptor: MapProcessorTypeToDescriptor = {
FieldsComponent: undefined, // TODO: Implement
docLinkPath: '/htmlstrip-processor.html',
label: i18n.translate('xpack.ingestPipelines.processors.label.htmlStrip', {
defaultMessage: 'HTML Strip',
defaultMessage: 'HTML strip',
}),
},
inference: {
Expand Down Expand Up @@ -214,7 +214,7 @@ export const mapProcessorTypeToDescriptor: MapProcessorTypeToDescriptor = {
FieldsComponent: undefined, // TODO: Implement
docLinkPath: '/ingest-node-set-security-user-processor.html',
label: i18n.translate('xpack.ingestPipelines.processors.label.setSecurityUser', {
defaultMessage: 'Set Security User',
defaultMessage: 'Set security user',
}),
},
split: {
Expand Down Expand Up @@ -249,14 +249,14 @@ export const mapProcessorTypeToDescriptor: MapProcessorTypeToDescriptor = {
FieldsComponent: undefined, // TODO: Implement
docLinkPath: '/urldecode-processor.html',
label: i18n.translate('xpack.ingestPipelines.processors.label.urldecode', {
defaultMessage: 'URL Decode',
defaultMessage: 'URL decode',
}),
},
user_agent: {
FieldsComponent: undefined, // TODO: Implement
docLinkPath: '/user-agent-processor.html',
label: i18n.translate('xpack.ingestPipelines.processors.label.userAgent', {
defaultMessage: 'User Agent',
defaultMessage: 'User agent',
}),
},

Expand Down