Skip to content
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

[SecuritySolution][Investigations] Add message about missing index in data view in analyzer #122859

Merged
merged 3 commits into from
Jan 28, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@ export const ResolverNoProcessEvents = () => (
})}
</EuiText>
<EuiSpacer size="m" />
<EuiText size="s">
{i18n.translate('xpack.securitySolution.resolver.noProcessEvents.dataView', {
defaultMessage: `In case you selected a different data view,
make sure your data view contains one of the inidices that are stored in the source event at "{field}".`,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

instead of 1, should probably be "all" of the indices (spelling as well)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 80c18ed

values: { field: 'kibana.alert.rule.parameters.index' },
})}
</EuiText>
<EuiSpacer size="m" />
<EuiText size="s">
{i18n.translate('xpack.securitySolution.resolver.noProcessEvents.eventCategory', {
defaultMessage: `You may also add the below to your timeline query to check for process events.
Expand Down