diff --git a/x-pack/plugins/security_solution/public/management/pages/policy/models/advanced_policy_schema.ts b/x-pack/plugins/security_solution/public/management/pages/policy/models/advanced_policy_schema.ts index 366f6e4219b4..b0af7cf2192e 100644 --- a/x-pack/plugins/security_solution/public/management/pages/policy/models/advanced_policy_schema.ts +++ b/x-pack/plugins/security_solution/public/management/pages/policy/models/advanced_policy_schema.ts @@ -209,6 +209,28 @@ export const AdvancedPolicySchema: AdvancedPolicySchemaType[] = [ } ), }, + { + key: 'linux.advanced.capture_command_line', + first_supported_version: '8.14', + documentation: i18n.translate( + 'xpack.securitySolution.endpoint.policy.advanced.linux.advanced.capture_command_line', + { + defaultMessage: + 'Include process command line in all events that are related to this process. Default: false.', + } + ), + }, + { + key: 'mac.advanced.capture_command_line', + first_supported_version: '8.14', + documentation: i18n.translate( + 'xpack.securitySolution.endpoint.policy.advanced.mac.advanced.capture_command_line', + { + defaultMessage: + 'Include process command line in all events that are related to this process. Default: false.', + } + ), + }, { key: 'mac.advanced.agent.connection_delay', first_supported_version: '7.9', @@ -422,6 +444,17 @@ export const AdvancedPolicySchema: AdvancedPolicySchemaType[] = [ } ), }, + { + key: 'windows.advanced.capture_command_line', + first_supported_version: '8.14', + documentation: i18n.translate( + 'xpack.securitySolution.endpoint.policy.advanced.windows.advanced.capture_command_line', + { + defaultMessage: + 'Include process command line in all events that are related to this process. Default: false.', + } + ), + }, { key: 'windows.advanced.agent.connection_delay', first_supported_version: '7.9',