-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added experimental banner and correlation
Signed-off-by: Riya Saxena <[email protected]>
- Loading branch information
1 parent
b2c4c98
commit 2fb6b6c
Showing
3 changed files
with
187 additions
and
97 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
public/pages/Correlations/components/ExperimentalBanner.tsx
This file contains 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,32 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import React from 'react'; | ||
import { EuiCallOut, EuiLink, EuiSpacer } from '@elastic/eui'; | ||
|
||
export const ExperimentalBanner = () => { | ||
return ( | ||
<> | ||
<EuiCallOut title="Experimental Feature" iconType="beaker"> | ||
<p> | ||
The feature is experimental and should not be used in a production environment. Any index | ||
patterns, visualization, and observability panels will be impacted if the feature is | ||
deactivated. For more information see | ||
<EuiLink | ||
href="https://opensearch.org/docs/2.4/security-analytics/index/" | ||
target="_blank" | ||
> | ||
Security Analytics documentation | ||
</EuiLink> | ||
. To leave feedback, visit | ||
<EuiLink target="_blank" href="https://forum.opensearch.org/"> | ||
forum.opensearch.org | ||
</EuiLink> | ||
</p> | ||
</EuiCallOut> | ||
<EuiSpacer /> | ||
</> | ||
); | ||
}; |
Oops, something went wrong.