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

[8.0] [SecuritySolution][Investigations] Add message about missing index in data view in analyzer (#122859) #124001

Merged
merged 2 commits into from
Jan 31, 2022
Merged
Changes from all commits
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 all of the indices that are stored in the source event at "{field}".`,
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