Skip to content

Commit

Permalink
added experimental banner and correlation
Browse files Browse the repository at this point in the history
Signed-off-by: Riya Saxena <[email protected]>
  • Loading branch information
riysaxen-amzn committed Jun 13, 2024
1 parent b2c4c98 commit 2fb6b6c
Show file tree
Hide file tree
Showing 3 changed files with 187 additions and 97 deletions.
32 changes: 32 additions & 0 deletions public/pages/Correlations/components/ExperimentalBanner.tsx
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&nbsp;
<EuiLink
href="https://opensearch.org/docs/2.4/security-analytics/index/"
target="_blank"
>
Security Analytics documentation
</EuiLink>
. To leave feedback, visit&nbsp;
<EuiLink target="_blank" href="https://forum.opensearch.org/">
forum.opensearch.org
</EuiLink>
</p>
</EuiCallOut>
<EuiSpacer />
</>
);
};
Loading

0 comments on commit 2fb6b6c

Please sign in to comment.