[Security Solution][Detection Engine] removes unsupported adv settings options for Serverless (#194108)

## Summary

 - addresses https://github.com/elastic/kibana/issues/188051
 - removes adv settings options:
   - CCS rule privileges warning
   - Exclude cold and frozen tiers in Analyzer
This commit is contained in:
Vitalii Dmyterko 2024-10-09 15:34:32 +01:00 committed by GitHub
parent 3b6cfb685d
commit f72ab5ef7e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 6 deletions

View file

@ -178,13 +178,9 @@ export const SECURITY_SOLUTION_RULES_TABLE_REFRESH_ID = 'securitySolution:rulesT
export const SECURITY_SOLUTION_ENABLE_NEWS_FEED_ID = 'securitySolution:enableNewsFeed';
export const SECURITY_SOLUTION_NEWS_FEED_URL_ID = 'securitySolution:newsFeedUrl';
export const SECURITY_SOLUTION_IP_REPUTATION_LINKS_ID = 'securitySolution:ipReputationLinks';
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 querying cold and frozen data tiers in analyzer */
export const SECURITY_SOLUTION_EXCLUDE_COLD_AND_FROZEN_TIERS_IN_ANALYZER =
'securitySolution:excludeColdAndFrozenTiersInAnalyzer' as const;
/** This Kibana Advanced Setting allows users to enable/disable the Asset Criticality feature */
export const SECURITY_SOLUTION_ENABLE_ASSET_CRITICALITY_SETTING =
'securitySolution:enableAssetCriticality' as const;

View file

@ -19,11 +19,9 @@ export const SECURITY_PROJECT_SETTINGS = [
settings.SECURITY_SOLUTION_DEFAULT_ANOMALY_SCORE_ID,
settings.SECURITY_SOLUTION_RULES_TABLE_REFRESH_ID,
settings.SECURITY_SOLUTION_IP_REPUTATION_LINKS_ID,
settings.SECURITY_SOLUTION_ENABLE_CCS_WARNING_ID,
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_ASSET_CRITICALITY_SETTING,
settings.SECURITY_SOLUTION_EXCLUDE_COLD_AND_FROZEN_TIERS_IN_ANALYZER,
];