mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Entity Analytics] Enable risk engine privileges callout + API (#172163)
This commit is contained in:
parent
d85ebc5c42
commit
43f13c7532
5 changed files with 3 additions and 8 deletions
4
.github/CODEOWNERS
vendored
4
.github/CODEOWNERS
vendored
|
@ -1374,7 +1374,6 @@ x-pack/test/security_solution_cypress/cypress/tasks/expandable_flyout @elastic/
|
|||
/x-pack/plugins/security_solution/public/detection_engine/rule_exceptions @elastic/security-detection-engine
|
||||
/x-pack/plugins/security_solution/public/detections/containers/detection_engine/lists @elastic/security-detection-engine
|
||||
/x-pack/plugins/security_solution/public/detections/pages/alerts @elastic/security-detection-engine
|
||||
/x-pack/plugins/security_solution/public/entity_analytics @elastic/security-detection-engine
|
||||
/x-pack/plugins/security_solution/public/exceptions @elastic/security-detection-engine
|
||||
|
||||
/x-pack/plugins/security_solution/server/lib/detection_engine/migrations @elastic/security-detection-engine
|
||||
|
@ -1392,7 +1391,6 @@ x-pack/test/security_solution_cypress/cypress/tasks/expandable_flyout @elastic/
|
|||
/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_creation @elastic/security-detection-engine
|
||||
/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/rule_edit @elastic/security-detection-engine
|
||||
/x-pack/test/security_solution_cypress/cypress/e2e/detection_response/value_lists @elastic/security-detection-engine
|
||||
/x-pack/test/security_solution_cypress/cypress/e2e/entity_analytics @elastic/security-detection-engine
|
||||
/x-pack/test/security_solution_cypress/cypress/e2e/exceptions @elastic/security-detection-engine
|
||||
/x-pack/test/security_solution_cypress/cypress/e2e/overview @elastic/security-detection-engine
|
||||
/x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/exceptions @elastic/security-detection-engine
|
||||
|
@ -1476,6 +1474,8 @@ x-pack/plugins/security_solution/server/lib/entity_analytics @elastic/security-e
|
|||
x-pack/plugins/security_solution/server/lib/risk_score @elastic/security-entity-analytics
|
||||
x-pack/test/security_solution_api_integration/test_suites/entity_analytics @elastic/security-entity-analytics
|
||||
x-pack/plugins/security_solution/public/flyout/entity_details @elastic/security-entity-analytics
|
||||
/x-pack/plugins/security_solution/public/entity_analytics @elastic/security-entity-analytics
|
||||
/x-pack/test/security_solution_cypress/cypress/e2e/entity_analytics @elastic/security-entity-analytics
|
||||
|
||||
# Security Defend Workflows - OSQuery Ownership
|
||||
/x-pack/plugins/security_solution/common/api/detection_engine/model/rule_response_actions @elastic/security-defend-workflows
|
||||
|
|
|
@ -125,7 +125,7 @@ export const allowedExperimentalValues = Object.freeze({
|
|||
* Enables the risk engine privileges route
|
||||
* and associated callout in the UI
|
||||
*/
|
||||
riskEnginePrivilegesRouteEnabled: false,
|
||||
riskEnginePrivilegesRouteEnabled: true,
|
||||
|
||||
/*
|
||||
* Enables experimental Entity Analytics Asset Criticality feature
|
||||
|
|
|
@ -19,7 +19,6 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
|
|||
...functionalConfig.get('kbnTestServer.serverArgs'),
|
||||
`--xpack.securitySolution.enableExperimental=${JSON.stringify([
|
||||
'entityAnalyticsAssetCriticalityEnabled',
|
||||
'riskEnginePrivilegesRouteEnabled',
|
||||
])}`,
|
||||
],
|
||||
},
|
||||
|
|
|
@ -11,7 +11,6 @@ export default createTestConfig({
|
|||
kbnTestServerArgs: [
|
||||
`--xpack.securitySolution.enableExperimental=${JSON.stringify([
|
||||
'entityAnalyticsAssetCriticalityEnabled',
|
||||
'riskEnginePrivilegesRouteEnabled',
|
||||
])}`,
|
||||
],
|
||||
testFiles: [require.resolve('..')],
|
||||
|
|
|
@ -26,9 +26,6 @@ describe(
|
|||
'Entity analytics management page - Risk Engine Privileges Callout',
|
||||
{
|
||||
tags: ['@ess'],
|
||||
env: {
|
||||
ftrConfig: { enableExperimental: ['riskEnginePrivilegesRouteEnabled'] },
|
||||
},
|
||||
},
|
||||
() => {
|
||||
it('should not show the callout for superuser', () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue