Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Security Solution] Add linux and mac diagnostics switches to advanced Policy #95819

Merged
merged 2 commits into from
Mar 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,28 @@ export const AdvancedPolicySchema: AdvancedPolicySchemaType[] = [
}
),
},
{
key: 'linux.advanced.diagnostic.enabled',
first_supported_version: '7.12',
paul-tavares marked this conversation as resolved.
Show resolved Hide resolved
documentation: i18n.translate(
'xpack.securitySolution.endpoint.policy.advanced.linux.advanced.diagnostic.enabled',
{
defaultMessage:
"A value of 'false' disables running diagnostic features on Endpoint. Default: true.",
}
),
},
{
key: 'mac.advanced.diagnostic.enabled',
first_supported_version: '7.12',
documentation: i18n.translate(
'xpack.securitySolution.endpoint.policy.advanced.mac.advanced.diagnostic.enabled',
{
defaultMessage:
"A value of 'false' disables running diagnostic features on Endpoint. Default: true.",
}
),
},
{
key: 'windows.advanced.alerts.cloud_lookup',
first_supported_version: '7.12',
Expand Down