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

Co-authored-by: Oliver Gupte <ogupte@users.noreply.github.com>
This commit is contained in:
Kibana Machine 2021-07-26 16:16:58 -04:00 committed by GitHub
parent c3c363e08c
commit d3076aa1bd
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" />
</>
);
}