New Defend Advanced Policy options for 8.12.0 (#172502)

## Summary

New Defend Advanced Policy options for 8.12.0.

### Checklist

Delete any items that are not applicable to this PR.

- [x] Any text added follows [EUI's writing
guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses
sentence case text and includes [i18n
support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md)

### For maintainers

- [ ] This was checked for breaking API changes and was [labeled
appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
This commit is contained in:
Gabriel Landau 2023-12-04 14:46:37 -05:00 committed by GitHub
parent 2fe91d32b7
commit be61bb10b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1458,4 +1458,48 @@ export const AdvancedPolicySchema: AdvancedPolicySchemaType[] = [
}
),
},
{
key: 'linux.advanced.file_cache.file_object_cache_size',
first_supported_version: '8.12.0',
documentation: i18n.translate(
'xpack.securitySolution.endpoint.policy.advanced.linux.advanced.file_cache.file_object_cache_size',
{
defaultMessage:
'Maximum size of the file cache. Larger values can improve performance but increase memory usage. Default: 250',
}
),
},
{
key: 'mac.advanced.file_cache.file_object_cache_size',
first_supported_version: '8.12.0',
documentation: i18n.translate(
'xpack.securitySolution.endpoint.policy.advanced.mac.advanced.file_cache.file_object_cache_size',
{
defaultMessage:
'Maximum size of the file cache. Larger values can improve performance but increase memory usage. Default: 250',
}
),
},
{
key: 'windows.advanced.file_cache.file_object_cache_size',
first_supported_version: '8.12.0',
documentation: i18n.translate(
'xpack.securitySolution.endpoint.policy.advanced.windows.advanced.file_cache.file_object_cache_size',
{
defaultMessage:
'Maximum size of the file cache. Larger values can improve performance but increase memory usage. Default: 250',
}
),
},
{
key: 'windows.advanced.utilization_limits.resident_memory_target_mb',
first_supported_version: '8.12.0',
documentation: i18n.translate(
'xpack.securitySolution.endpoint.policy.advanced.windows.advanced.utilization_limits.resident_memory_target_mb',
{
defaultMessage:
'How much memory (in MB) should Endpoint aim to keep resident in RAM? This setting affects Private Working Set on Windows. It does not affect the amount of virtual memory that Endpoint requests from the OS (Private Bytes aka Commit Charge). If plenty of unused RAM is available, Windows may give Endpoint more RAM than requested to reduce unnecessary paging and improve performance. If the current Defend configuration requires regularly touching more than the requested amount of memory, then the Private Working Set will be higher than requested here. Default 200. This value cannot be decreased below 50.',
}
),
},
];