Skip to content

Commit

Permalink
[Security Solution] [Detection Engine] - Add tour for new eql missing…
Browse files Browse the repository at this point in the history
… events feature (#158863)

## Summary

Adds tour highlighting the new missing events EQL feature for 8.9.
  • Loading branch information
yctercero committed Jun 20, 2023
1 parent 58f0a3a commit 7153359
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion x-pack/plugins/security_solution/common/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ export const RULES_TABLE_MAX_PAGE_SIZE = 100;
* we will need to update these constants with the corresponding version.
*/
export const NEW_FEATURES_TOUR_STORAGE_KEYS = {
RULE_MANAGEMENT_PAGE: 'securitySolution.rulesManagementPage.newFeaturesTour.v8.6',
RULE_MANAGEMENT_PAGE: 'securitySolution.rulesManagementPage.newFeaturesTour.v8.9',
};

export const RULE_DETAILS_EXECUTION_LOG_TABLE_SHOW_METRIC_COLUMNS_STORAGE_KEY =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ export const CREATE_RULE_TOUR_TITLE = i18n.translate(
);

export const CREATE_RULE_TOUR_CONTENT = i18n.translate(
'xpack.securitySolution.detectionEngine.rules.tour.createRuleTourContent',
'xpack.securitySolution.detectionEngine.rules.tour.createRuleTourContent.eql',
{
defaultMessage: `Alert suppression options are now available for Custom Query rules and multiple fields can be selected in New Terms rules`,
defaultMessage: `EQL now allows you to specify events that should not occur in a sequence`,
}
);
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ import { MiniCallout } from '../../components/mini_callout/mini_callout';
import { usePrebuiltRulesStatus } from '../../../rule_management/logic/prebuilt_rules/use_prebuilt_rules_status';

import { MaintenanceWindowCallout } from '../../components/maintenance_window_callout/maintenance_window_callout';
import { RulesPageTourComponent } from '../../components/rules_table/alternative_tour/tour';
import { SuperHeader } from './super_header';
import {
NEW_PREBUILT_RULES_AVAILABLE_CALLOUT_TITLE,
Expand Down Expand Up @@ -168,15 +169,17 @@ const RulesPageComponent: React.FC = () => {
</EuiButtonEmpty>
</EuiFlexItem>
<EuiFlexItem grow={false}>
<SecuritySolutionLinkButton
data-test-subj="create-new-rule"
fill
iconType="plusInCircle"
isDisabled={!hasUserCRUDPermission(canUserCRUD) || loading}
deepLinkId={SecurityPageName.rulesCreate}
>
{i18n.ADD_NEW_RULE}
</SecuritySolutionLinkButton>
<RulesPageTourComponent>
<SecuritySolutionLinkButton
data-test-subj="create-new-rule"
fill
iconType="plusInCircle"
isDisabled={!hasUserCRUDPermission(canUserCRUD) || loading}
deepLinkId={SecurityPageName.rulesCreate}
>
{i18n.ADD_NEW_RULE}
</SecuritySolutionLinkButton>
</RulesPageTourComponent>
</EuiFlexItem>
</EuiFlexGroup>
</SuperHeader>
Expand Down
1 change: 0 additions & 1 deletion x-pack/plugins/translations/translations/fr-FR.json
Original file line number Diff line number Diff line change
Expand Up @@ -31331,7 +31331,6 @@
"xpack.securitySolution.detectionEngine.rules.stepActionsTitle": "Actions",
"xpack.securitySolution.detectionEngine.rules.stepDefinitionTitle": "Définition",
"xpack.securitySolution.detectionEngine.rules.stepScheduleTitle": "Planification",
"xpack.securitySolution.detectionEngine.rules.tour.createRuleTourContent": "Les options de suppression d'alerte sont maintenant disponibles pour les règles de requête personnalisée, et plusieurs champs peuvent être sélectionnés dans les règles relatives aux nouveaux termes",
"xpack.securitySolution.detectionEngine.rules.tour.createRuleTourTitle": "De nouvelles fonctionnalités de règle de sécurité sont disponibles",
"xpack.securitySolution.detectionEngine.rules.updateButtonTitle": "Mettre à jour",
"xpack.securitySolution.detectionEngine.rulesSnoozeBadge.error.unableToFetch": "Impossible de récupérer les paramètres de répétition",
Expand Down
1 change: 0 additions & 1 deletion x-pack/plugins/translations/translations/ja-JP.json
Original file line number Diff line number Diff line change
Expand Up @@ -31312,7 +31312,6 @@
"xpack.securitySolution.detectionEngine.rules.stepActionsTitle": "アクション",
"xpack.securitySolution.detectionEngine.rules.stepDefinitionTitle": "定義",
"xpack.securitySolution.detectionEngine.rules.stepScheduleTitle": "スケジュール",
"xpack.securitySolution.detectionEngine.rules.tour.createRuleTourContent": "カスタムクエリルールでアラート抑制オプションが利用可能になり、新規条件ルールで複数のフィールドを選択できるようになりました",
"xpack.securitySolution.detectionEngine.rules.tour.createRuleTourTitle": "新しいセキュリティルール機能が利用可能です",
"xpack.securitySolution.detectionEngine.rules.updateButtonTitle": "更新",
"xpack.securitySolution.detectionEngine.rulesSnoozeBadge.error.unableToFetch": "スヌーズ設定を取得できません",
Expand Down
1 change: 0 additions & 1 deletion x-pack/plugins/translations/translations/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -31308,7 +31308,6 @@
"xpack.securitySolution.detectionEngine.rules.stepActionsTitle": "操作",
"xpack.securitySolution.detectionEngine.rules.stepDefinitionTitle": "定义",
"xpack.securitySolution.detectionEngine.rules.stepScheduleTitle": "计划",
"xpack.securitySolution.detectionEngine.rules.tour.createRuleTourContent": "告警阻止选项现在可用于定制查询规则,并且可以在新字词规则中选择多个字段",
"xpack.securitySolution.detectionEngine.rules.tour.createRuleTourTitle": "有新的安全规则功能可用",
"xpack.securitySolution.detectionEngine.rules.updateButtonTitle": "更新",
"xpack.securitySolution.detectionEngine.rulesSnoozeBadge.error.unableToFetch": "无法提取暂停设置",
Expand Down

0 comments on commit 7153359

Please sign in to comment.