[Security Solution] Advanced Endpoint Policy otions for 8.3 (#133565)

* [Security Solution] Advanced Endpoint Policy otions for 8.3

* correct linux default

* update description

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Kevin Logan 2022-06-06 12:13:39 -04:00 committed by GitHub
parent 05b392a862
commit a4f2a81163
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -914,4 +914,26 @@ export const AdvancedPolicySchema: AdvancedPolicySchemaType[] = [
}
),
},
{
key: 'windows.advanced.utilization_limits.cpu',
first_supported_version: '8.3',
documentation: i18n.translate(
'xpack.securitySolution.endpoint.policy.advanced.windows.advanced.utilization_limits.cpu',
{
defaultMessage:
'The percentage of the aggregate system CPU to restrict Endpoint to. The range is 20-100%. Anything under 20 gets ignored and causes a policy warning. Default: 100',
}
),
},
{
key: 'linux.advanced.utilization_limits.cpu',
first_supported_version: '8.3',
documentation: i18n.translate(
'xpack.securitySolution.endpoint.policy.advanced.linux.advanced.utilization_limits.cpu',
{
defaultMessage:
'The percentage of the aggregate system CPU to restrict Endpoint to. The range is 20-100%. Anything under 20 gets ignored and causes a policy warning. Default: 50',
}
),
},
];