-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Improve alpha messaging #64692
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
Merged
Merged
Improve alpha messaging #64692
Changes from 8 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
3ddd775
use fixed table layout
ee9e0d3
Merge remote-tracking branch 'upstream/master'
01e5b24
Merge remote-tracking branch 'upstream/master'
0baf798
Merge remote-tracking branch 'upstream/master'
b400f4f
Merge remote-tracking branch 'upstream/master'
d2f103d
add alpha messaging flyout
0e1fbfd
Added alpha badge + data streams link
8ebc392
Merge remote-tracking branch 'upstream/master' into improve-alpha-mes…
2521887
Update x-pack/plugins/ingest_manager/public/applications/ingest_manag…
hbharding 9437dfe
Update x-pack/plugins/ingest_manager/public/applications/ingest_manag…
hbharding 1bb4d35
Update x-pack/plugins/ingest_manager/public/applications/ingest_manag…
hbharding a250a59
Update x-pack/plugins/ingest_manager/public/applications/ingest_manag…
hbharding ab88085
remove small tags
771153e
change messaging from alpha to experimental
70019b7
Merge branch 'master' into improve-alpha-messaging
elasticmachine 06d8835
add period
7d7b0e2
Merge branch 'improve-alpha-messaging' of github.com:hbharding/kibana…
430805a
remove unused imports
32ddab6
Merge remote-tracking branch 'upstream/master' into improve-alpha-mes…
508eb68
fixed i18n ids
e28f08f
Merge remote-tracking branch 'upstream/master' into improve-alpha-mes…
c1d7845
Merge branch 'master' into improve-alpha-messaging
elasticmachine File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
105 changes: 105 additions & 0 deletions
105
x-pack/plugins/ingest_manager/public/applications/ingest_manager/components/alpha_flyout.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,105 @@ | ||
| /* | ||
| * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
| * or more contributor license agreements. Licensed under the Elastic License; | ||
| * you may not use this file except in compliance with the Elastic License. | ||
| */ | ||
| import React, { useState } from 'react'; | ||
| import { | ||
| EuiCallOut, | ||
| EuiFlyout, | ||
| EuiFlyoutBody, | ||
| EuiFlyoutHeader, | ||
| EuiSpacer, | ||
| EuiTitle, | ||
| EuiIcon, | ||
| EuiText, | ||
| EuiTextColor, | ||
| EuiLink, | ||
| EuiFlexGroup, | ||
| EuiFlexItem, | ||
| EuiButtonEmpty, | ||
| EuiButton, | ||
| EuiFlyoutFooter, | ||
| } from '@elastic/eui'; | ||
| import { FormattedMessage } from '@kbn/i18n/react'; | ||
|
|
||
| interface Props { | ||
| onClose: () => void; | ||
| } | ||
|
|
||
| export const AlphaFlyout: React.FunctionComponent<Props> = ({ onClose }) => { | ||
| return ( | ||
| <EuiFlyout onClose={onClose} size="m" maxWidth={640}> | ||
| <EuiFlyoutHeader hasBorder aria-labelledby="AlphaMessagingFlyoutTitle"> | ||
| <EuiTitle size="m"> | ||
| <h2 id="AlphaMessagingFlyoutTitle"> | ||
| <FormattedMessage | ||
| id="xpack.ingestManager.alphaMessaging.flyoutTitle" | ||
| defaultMessage="About this release" | ||
| /> | ||
| </h2> | ||
| </EuiTitle> | ||
| </EuiFlyoutHeader> | ||
| <EuiFlyoutBody> | ||
| <EuiText size="m"> | ||
| <p> | ||
| <FormattedMessage | ||
| id="xpack.ingestManager.alphaMessaging.intro" | ||
| defaultMessage="This Alpha release is designed for users to test and offer feedback on the new Ingest | ||
| Manager and Elastic Agent. It is not intended for use in a production environments and | ||
| these features are not officially supported. We encourage you to read our {docsLink} or to ask for help and other feedback in our {forumLink}." | ||
| values={{ | ||
| docsLink: ( | ||
| <EuiLink href="https://ela.st/ingest-manager-docs" external target="_blank"> | ||
| <FormattedMessage | ||
| id="xpack.ingestManager.alphaMessaging.docsLink" | ||
| defaultMessage="documentation" | ||
| /> | ||
| </EuiLink> | ||
| ), | ||
| forumLink: ( | ||
| <EuiLink href="https://ela.st/ingest-manager-forum" external target="_blank"> | ||
| <FormattedMessage | ||
| id="xpack.ingestManager.alphaMessaging.forumLink" | ||
| defaultMessage="Discuss forum" | ||
| /> | ||
| </EuiLink> | ||
| ), | ||
| }} | ||
| /> | ||
| </p> | ||
|
|
||
| <p> | ||
| <FormattedMessage | ||
| id="xpack.ingestManager.alphaMessaging.warning" | ||
hbharding marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| defaultMessage=" {note}: you should not store important data with Ingest Manager | ||
hbharding marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| since you will have limited visibility to it in a future release. This version uses an | ||
| indexing strategy that will be deprecated in the next release and there is no migration | ||
| path. Also, the licensing for features is under consideration and may change before our | ||
| GA release. As a result, you may lose access to certain features based on your license | ||
| tier." | ||
| values={{ | ||
| note: ( | ||
| <strong> | ||
| <FormattedMessage | ||
| id="xpack.ingestManager.alphaMessaging.warningNote" | ||
| defaultMessage="Please note" | ||
| /> | ||
| </strong> | ||
| ), | ||
| }} | ||
| /> | ||
| </p> | ||
| </EuiText> | ||
| </EuiFlyoutBody> | ||
| <EuiFlyoutFooter> | ||
| <EuiButtonEmpty iconType="cross" onClick={onClose} flush="left"> | ||
| <FormattedMessage | ||
| id="xpack.ingestManager.agentEnrollment.cancelButtonLabel" | ||
| defaultMessage="Close" | ||
| /> | ||
| </EuiButtonEmpty> | ||
| </EuiFlyoutFooter> | ||
| </EuiFlyout> | ||
| ); | ||
| }; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.