[APM] Beta message more prominant in APM schema settings with callout (#105651) (#106743)

This commit is contained in:
Oliver Gupte 2021-07-26 13:56:15 -04:00 committed by GitHub
parent 2b7d1396e3
commit 4b4b4c2bf2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,6 +7,7 @@
import {
EuiButton,
EuiCallOut,
EuiCard,
EuiFlexGroup,
EuiFlexItem,
@ -271,6 +272,30 @@ export function SchemaOverviewHeading() {
/>
</EuiText>
<EuiSpacer size="m" />
<EuiFlexGroup justifyContent="center">
<EuiFlexItem />
<EuiFlexItem grow={2}>
<EuiCallOut
size="s"
title={i18n.translate(
'xpack.apm.settings.schema.descriptionText.betaCalloutTitle',
{ defaultMessage: 'Data streams are beta in APM' }
)}
iconType="alert"
color="warning"
>
{i18n.translate(
'xpack.apm.settings.schema.descriptionText.betaCalloutMessage',
{
defaultMessage:
'This functionality is in beta and is subject to change. The design and code is less mature than official GA features and is being provided as-is with no warranties. Beta features are not subject to the support SLA of official GA features.',
}
)}
</EuiCallOut>
</EuiFlexItem>
<EuiFlexItem />
</EuiFlexGroup>
<EuiSpacer size="m" />
</>
);
}