Remove beta messaging from Logstash output flyout (#135028)

This commit is contained in:
Kyle Pollich 2022-06-23 11:00:08 -04:00 committed by GitHub
parent d61253aa0e
commit 7fb3931bb1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,7 @@ export interface EditOutputFlyoutProps {
const OUTPUT_TYPE_OPTIONS = [
{ value: 'elasticsearch', text: 'Elasticsearch' },
{ value: 'logstash', text: 'Logstash (beta)' },
{ value: 'logstash', text: 'Logstash' },
];
export const EditOutputFlyout: React.FunctionComponent<EditOutputFlyoutProps> = ({
@ -134,24 +134,6 @@ export const EditOutputFlyout: React.FunctionComponent<EditOutputFlyoutProps> =
defaultMessage="Type"
/>
}
helpText={
isLogstashOutput && (
<FormattedMessage
id="xpack.fleet.editOutputFlyout.logstashTypeOutputBetaHelpText"
defaultMessage="Logstash output is in beta. Click {sendFeedback} to report bugs and suggest improvements."
values={{
sendFeedback: (
<strong>
<FormattedMessage
id="xpack.fleet.editOutputFlyout.sendFeedback"
defaultMessage="Send feedback"
/>
</strong>
),
}}
/>
)
}
>
<EuiSelect
fullWidth