[Security Solution] [Detections] Enables alert expandable flyout and alert tags options in the advanced settings for serverless (#170158)

Enables alert expandable flyout and alert tags options in the advanced
settings for serverless

Expandable flyout:
<img width="1472" alt="enable_alert_flyout"
src="3d22f96d-553d-4907-9fdf-8a474c02ebc2">

Alert tagging settings:
<img width="1502" alt="alert_tags"
src="a1472f10-f757-4357-b8fd-6fbdd6bf307c">
This commit is contained in:
Devin W. Hurley 2023-11-01 14:55:21 -04:00 committed by GitHub
parent 9051d768e3
commit d7dc3345bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

@ -163,6 +163,10 @@ export const SECURITY_SOLUTION_IP_REPUTATION_LINKS_ID = 'securitySolution:ipRepu
export const SECURITY_SOLUTION_ENABLE_CCS_WARNING_ID = 'securitySolution:enableCcsWarning';
export const SECURITY_SOLUTION_SHOW_RELATED_INTEGRATIONS_ID =
'securitySolution:showRelatedIntegrations';
export const SECURITY_SOLUTION_DEFAULT_ALERT_TAGS_KEY = 'securitySolution:alertTags' as const;
/** This Kibana Advanced Setting allows users to enable/disable the Expandable Flyout */
export const SECURITY_SOLUTION_ENABLE_EXPANDABLE_FLYOUT_SETTING =
'securitySolution:enableExpandableFlyout' as const;
// Timelion settings
export const TIMELION_ES_DEFAULT_INDEX_ID = 'timelion:es.default_index';

View file

@ -22,4 +22,6 @@ export const SECURITY_PROJECT_SETTINGS = [
settings.SECURITY_SOLUTION_SHOW_RELATED_INTEGRATIONS_ID,
settings.SECURITY_SOLUTION_NEWS_FEED_URL_ID,
settings.SECURITY_SOLUTION_ENABLE_NEWS_FEED_ID,
settings.SECURITY_SOLUTION_DEFAULT_ALERT_TAGS_KEY,
settings.SECURITY_SOLUTION_ENABLE_EXPANDABLE_FLYOUT_SETTING,
];