Skip to content

Commit

Permalink
addressed the comments by UX
Browse files Browse the repository at this point in the history
Signed-off-by: Riya Saxena <riysaxen@amazon.com>
  • Loading branch information
riysaxen-amzn committed Jun 20, 2024
1 parent aaf938b commit 557a403
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 47 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,13 @@ import {
import { parseAlertSeverityToOption } from '../../../CreateDetector/components/ConfigureAlerts/utils/helpers';
import { NotificationsStart } from 'opensearch-dashboards/public';
import { DataStore } from '../../../../store/DataStore';
import { CorrelationAlertItem, Finding } from '../../../../../types';
import { CorrelationAlertColumns, Finding } from '../../../../../types';

export interface CorrelationAlertFlyoutProps {
alertItem: CorrelationAlertItem;
alertItem: CorrelationAlertColumns;
notifications: NotificationsStart;
detectorService: DetectorsService;
opensearchService: OpenSearchService;
indexPatternService: IndexPatternsService;
onClose: () => void;
onAcknowledge: (selectedItems: CorrelationAlertItem[]) => void;
onAcknowledge: (selectedItems: CorrelationAlertColumns[]) => void;
}

export interface CorrelationAlertFlyoutState {
Expand Down
74 changes: 46 additions & 28 deletions public/pages/Alerts/containers/Alerts/Alerts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ import {
import { NotificationsStart } from 'opensearch-dashboards/public';
import { match, RouteComponentProps, withRouter } from 'react-router-dom';
import { ChartContainer } from '../../../../components/Charts/ChartContainer';
import { AlertItem, CorrelationAlertItem, DataSourceProps, DateTimeFilter, Detector } from '../../../../../types';
import { AlertItem, CorrelationAlertColumns, DataSourceProps, DateTimeFilter, Detector } from '../../../../../types';
import { DurationRange } from '@elastic/eui/src/components/date_picker/types';
import { DataStore } from '../../../../store/DataStore';

Expand All @@ -80,13 +80,13 @@ export interface AlertsState {
groupBy: string;
recentlyUsedRanges: DurationRange[];
selectedItems: AlertItem[];
correlatedItems: CorrelationAlertItem[];
correlatedItems: CorrelationAlertColumns[];
alerts: AlertItem[];
correlationAlerts: CorrelationAlertItem[];
correlationAlerts: CorrelationAlertColumns[];
flyoutData?: { alertItem: AlertItem };
flyoutCorrelationData?: { alertItem: CorrelationAlertItem };
flyoutCorrelationData?: { alertItem: CorrelationAlertColumns };
alertsFiltered: boolean;
filteredCorrelationAlerts: CorrelationAlertItem[];
filteredCorrelationAlerts: CorrelationAlertColumns[];
filteredAlerts: AlertItem[];
detectors: { [key: string]: Detector };
loading: boolean;
Expand Down Expand Up @@ -127,7 +127,7 @@ export class Alerts extends Component<AlertsProps, AlertsState> {
correlationAlerts: [],
alertsFiltered: false,
filteredAlerts: [],
filteredCorrelationAlerts:[],
filteredCorrelationAlerts: [],
detectors: {},
timeUnit: timeUnits.timeUnit,
dateFormat: timeUnits.dateFormat,
Expand All @@ -149,13 +149,13 @@ export class Alerts extends Component<AlertsProps, AlertsState> {
prevProps.dateTimeFilter?.endTime !== dateTimeFilter.endTime ||
prevState.alerts !== this.state.alerts ||
prevState.alerts.length !== this.state.alerts.length;
const correlationAlertsChanged =

const correlationAlertsChanged =
prevProps.dateTimeFilter?.startTime !== dateTimeFilter.startTime ||
prevProps.dateTimeFilter?.endTime !== dateTimeFilter.endTime ||
prevState.correlationAlerts !== this.state.correlationAlerts ||
prevState.correlationAlerts.length !== this.state.correlationAlerts.length;

if (prevState.tab !== this.state.tab) {
this.onRefresh();
}
Expand Down Expand Up @@ -328,7 +328,7 @@ export class Alerts extends Component<AlertsProps, AlertsState> {
];
}

getCorrelationColumns(): EuiBasicTableColumn<CorrelationAlertItem>[] {
getCorrelationColumns(): EuiBasicTableColumn<CorrelationAlertColumns>[] {
return [
{
field: 'start_time',
Expand All @@ -342,16 +342,23 @@ export class Alerts extends Component<AlertsProps, AlertsState> {
name: 'Alert trigger name',
sortable: false,
dataType: 'string',
render: (triggerName: string, alertItem: CorrelationAlertItem) => (
<EuiLink onClick={() => this.setCorrelationFlyout(alertItem)}>{triggerName}</EuiLink>
),
render: (triggerName: string) => triggerName || DEFAULT_EMPTY_DATA,
},
{
field: 'correlation_rule_name',
name: 'Correlation Rule Name',
sortable: true,
dataType: 'string',
render: (correlationRulename: string) => correlationRulename || DEFAULT_EMPTY_DATA,
render: (correlationRulename: string, alertItem: CorrelationAlertColumns) => (
<EuiLink onClick={() => this.setCorrelationFlyout(alertItem)}>{correlationRulename}</EuiLink>
),
},
{
field: 'correlation_rule_categories',
name: 'Log Types',
sortable: false,
dataType: 'string',
render: (correlationRuleCategories: string[]) => correlationRuleCategories.join(', ') || DEFAULT_EMPTY_DATA,
},
{
field: 'state',
Expand All @@ -373,7 +380,7 @@ export class Alerts extends Component<AlertsProps, AlertsState> {
sortable: false,
actions: [
{
render: (alertItem: CorrelationAlertItem) => {
render: (alertItem: CorrelationAlertColumns) => {
const disableAcknowledge = alertItem.state !== ALERT_STATE.ACTIVE;
return (
<EuiToolTip
Expand All @@ -392,7 +399,7 @@ export class Alerts extends Component<AlertsProps, AlertsState> {
},
},
{
render: (alertItem: CorrelationAlertItem) => (
render: (alertItem: CorrelationAlertColumns) => (
<EuiToolTip content={'View details'}>
<EuiButtonIcon
aria-label={'View details'}
Expand All @@ -411,7 +418,7 @@ export class Alerts extends Component<AlertsProps, AlertsState> {
this.setState({ flyoutData: alertItem ? { alertItem } : undefined });
}

setCorrelationFlyout(alertItem?: CorrelationAlertItem): void {
setCorrelationFlyout(alertItem?: CorrelationAlertColumns): void {
this.setState({ flyoutCorrelationData: alertItem ? { alertItem } : undefined });
}

Expand Down Expand Up @@ -445,7 +452,7 @@ export class Alerts extends Component<AlertsProps, AlertsState> {
});
}

generateCorrelationVisualizationSpec(alerts: CorrelationAlertItem[]) {
generateCorrelationVisualizationSpec(alerts: CorrelationAlertColumns[]) {
const visData = alerts.map((alert) => {
const time = new Date(alert.start_time);
time.setMilliseconds(0);
Expand Down Expand Up @@ -501,7 +508,18 @@ export class Alerts extends Component<AlertsProps, AlertsState> {
try {
const correlationRes = await correlationService.getCorrelationAlerts();
if (correlationRes.ok) {
this.setState({ correlationAlerts: correlationRes.response.correlationAlerts });
const alerts = correlationRes.response.correlationAlerts;
// Fetch correlation queries for each alert
const enrichedAlerts = await Promise.all(alerts.map(async (alert) => {
const correlation = await DataStore.correlations.getCorrelationRule(alert.correlation_rule_id);
const correlationQueries = correlation?.queries || [];
const correlationRuleCategories = correlationQueries.map((query) => query.logType);
return {
...alert,
correlation_rule_categories: correlationRuleCategories,
};
}));
this.setState({ correlationAlerts: enrichedAlerts });
} else {
errorNotificationToast(notifications, 'retrieve', 'correlations', correlationRes.error);
}
Expand Down Expand Up @@ -614,7 +632,7 @@ export class Alerts extends Component<AlertsProps, AlertsState> {
this.setState({ selectedItems });
};

onCorrelationSelectionChange = (correlatedItems: CorrelationAlertItem[]) => {
onCorrelationSelectionChange = (correlatedItems: CorrelationAlertColumns[]) => {
this.setState({ correlatedItems });
};

Expand Down Expand Up @@ -656,7 +674,7 @@ export class Alerts extends Component<AlertsProps, AlertsState> {
this.onRefresh();
};

onAcknowledgeCorrelationAlert = async (selectedItems: CorrelationAlertItem[] = []) => {
onAcknowledgeCorrelationAlert = async (selectedItems: CorrelationAlertColumns[] = []) => {
const { correlationService, notifications } = this.props;
let successCount = 0;
try {
Expand Down Expand Up @@ -788,9 +806,9 @@ export class Alerts extends Component<AlertsProps, AlertsState> {
selectableMessage: (selectable) => (selectable ? '' : DISABLE_ACKNOWLEDGED_ALERT_HELP_TEXT),
};

const correlationSelection: EuiTableSelectionType<CorrelationAlertItem> = {
const correlationSelection: EuiTableSelectionType<CorrelationAlertColumns> = {
onSelectionChange: this.onCorrelationSelectionChange,
selectable: (item: CorrelationAlertItem) => item.state === ALERT_STATE.ACTIVE,
selectable: (item: CorrelationAlertColumns) => item.state === ALERT_STATE.ACTIVE,
selectableMessage: (selectable) => (selectable ? '' : DISABLE_ACKNOWLEDGED_ALERT_HELP_TEXT),
};

Expand Down Expand Up @@ -872,10 +890,10 @@ export class Alerts extends Component<AlertsProps, AlertsState> {
</EuiFlexItem>
<EuiFlexItem>
<ContentPanel title={'Alerts'} actions={[
this.state.tab === 'findings'
? this.createAcknowledgeControl()
: this.createAcknowledgeControlForCorrelations()
]}>
this.state.tab === 'findings'
? this.createAcknowledgeControl()
: this.createAcknowledgeControlForCorrelations()
]}>
<EuiTabs>
<EuiTab onClick={() => this.setState({ tab: 'findings' })} isSelected={this.state.tab === 'findings'}>
Findings
Expand Down Expand Up @@ -911,7 +929,7 @@ export class Alerts extends Component<AlertsProps, AlertsState> {
selection={correlationSelection}
loading={loading}
message={widgetEmptyCorrelationMessage}
/>
/>
)}
</ContentPanel>
</EuiFlexItem>
Expand Down
4 changes: 1 addition & 3 deletions public/pages/Correlations/components/ExperimentalBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ export const ExperimentalBanner = () => {
<>
<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;
The alerts on correlations feature is experimental and should not be used in a production environment. Any generated alerts and created indexes in 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"
Expand Down
17 changes: 7 additions & 10 deletions public/pages/Correlations/containers/CreateCorrelationRule.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -371,9 +371,6 @@ export const CreateCorrelationRule: React.FC<CreateCorrelationRuleProps> = (
if (!values.trigger.severity) {
values.trigger.severity = ALERT_SEVERITY_OPTIONS.HIGHEST.value;
}
if (!values.trigger.name) {
values.trigger.name = `trigger-${randomTriggerId}`;
}
// Set default values for actions if present
if (values.trigger.actions) {
values.trigger.actions.forEach((action) => {
Expand Down Expand Up @@ -1009,8 +1006,8 @@ export const CreateCorrelationRule: React.FC<CreateCorrelationRuleProps> = (
{showForm && (
<>
<EuiSpacer size="m" />
<EuiFlexGroup>
<EuiFlexItem>
<EuiFlexGroup alignItems="center">
<EuiFlexItem grow={false}>
<EuiFormRow
label={
<EuiText size="s">
Expand All @@ -1019,9 +1016,9 @@ export const CreateCorrelationRule: React.FC<CreateCorrelationRuleProps> = (
}
>
<EuiFieldText
placeholder="Trigger Name"
placeholder="Trigger 1"
onChange={(e) => {
const triggerName = e.target.value || '';
const triggerName = e.target.value || 'Trigger 1';
props.setFieldValue('trigger.name', triggerName)
}}
value={trigger?.name}
Expand All @@ -1030,7 +1027,7 @@ export const CreateCorrelationRule: React.FC<CreateCorrelationRuleProps> = (
/>
</EuiFormRow>
</EuiFlexItem>
<EuiFlexItem>
<EuiFlexItem grow={false}>
<EuiFormRow
label={
<EuiText size="s">
Expand All @@ -1055,15 +1052,15 @@ export const CreateCorrelationRule: React.FC<CreateCorrelationRuleProps> = (
</EuiFormRow>
</EuiFlexItem>
<EuiFlexItem grow={false}>
<EuiToolTip content="Delete">
<EuiFormRow label={<p style={{ visibility: 'hidden' }}>_</p>}>
<EuiButtonIcon
aria-label="Delete Alert Trigger"
data-test-subj="delete-alert-trigger-icon"
iconType="trash"
color="danger"
onClick={() => setShowForm(false)}
/>
</EuiToolTip>
</EuiFormRow>
</EuiFlexItem>
</EuiFlexGroup>
<EuiSpacer size={'l'} />
Expand Down
5 changes: 5 additions & 0 deletions types/Alert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ export interface CorrelationAlertItem {
acknowledged_time: string | null;
}

export interface CorrelationAlertColumns extends CorrelationAlertItem{
correlation_rule_categories: string[];
}


export interface AlertResponse extends AlertItem {
version: number;
schema_version: number;
Expand Down

0 comments on commit 557a403

Please sign in to comment.