diff --git a/x-pack/solutions/security/plugins/security_solution/common/endpoint/data_loaders/index_workflow_insights.ts b/x-pack/solutions/security/plugins/security_solution/common/endpoint/data_loaders/index_workflow_insights.ts new file mode 100644 index 0000000000000..1fec1c76430eb --- /dev/null +++ b/x-pack/solutions/security/plugins/security_solution/common/endpoint/data_loaders/index_workflow_insights.ts @@ -0,0 +1,6 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0; you may not use this file except in compliance with the Elastic License + * 2.0. + */ diff --git a/x-pack/solutions/security/plugins/security_solution/public/management/cypress/tasks/insights.ts b/x-pack/solutions/security/plugins/security_solution/public/management/cypress/tasks/insights.ts index 9887481c99992..cd311891b9a96 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/management/cypress/tasks/insights.ts +++ b/x-pack/solutions/security/plugins/security_solution/public/management/cypress/tasks/insights.ts @@ -186,7 +186,7 @@ export const stubWorkflowInsightsApiResponse = (endpointId: string) => { list_id: 'endpoint_trusted_apps', name: 'ClamAV', os_types: ['linux'], - description: 'Suggested by Security Workflow Insights', + description: 'Suggested by Automatic Troubleshooting', tags: ['policy:all'], }, ], diff --git a/x-pack/solutions/security/plugins/security_solution/public/management/pages/endpoint_hosts/view/translations.ts b/x-pack/solutions/security/plugins/security_solution/public/management/pages/endpoint_hosts/view/translations.ts index cc87b20e1561d..118738ee746d9 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/management/pages/endpoint_hosts/view/translations.ts +++ b/x-pack/solutions/security/plugins/security_solution/public/management/pages/endpoint_hosts/view/translations.ts @@ -13,7 +13,7 @@ export const OVERVIEW = i18n.translate('xpack.securitySolution.endpointDetails.o export const WORKFLOW_INSIGHTS = { title: i18n.translate('xpack.securitySolution.endpointDetails.workflowInsights.sectionTitle', { - defaultMessage: 'Endpoint Insights', + defaultMessage: 'Automatic Troubleshooting', }), titleRight: i18n.translate( 'xpack.securitySolution.endpointDetails.workflowInsights.extraAction', @@ -23,7 +23,7 @@ export const WORKFLOW_INSIGHTS = { ), scan: { title: i18n.translate('xpack.securitySolution.endpointDetails.workflowInsights.scan.title', { - defaultMessage: 'Endpoint Insights scan', + defaultMessage: 'Automatic Troubleshooting', }), button: i18n.translate('xpack.securitySolution.endpointDetails.workflowInsights.scan.button', { defaultMessage: 'Scan', diff --git a/x-pack/solutions/security/plugins/security_solution/server/endpoint/services/workflow_insights/builders/incompatible_antivirus.test.ts b/x-pack/solutions/security/plugins/security_solution/server/endpoint/services/workflow_insights/builders/incompatible_antivirus.test.ts index fe03c909b5a65..0c8dc117d664c 100644 --- a/x-pack/solutions/security/plugins/security_solution/server/endpoint/services/workflow_insights/builders/incompatible_antivirus.test.ts +++ b/x-pack/solutions/security/plugins/security_solution/server/endpoint/services/workflow_insights/builders/incompatible_antivirus.test.ts @@ -106,7 +106,7 @@ describe('buildIncompatibleAntivirusWorkflowInsights', () => { { list_id: ENDPOINT_ARTIFACT_LISTS.trustedApps.id, name: 'AVGAntivirus', - description: 'Suggested by Security Workflow Insights', + description: 'Suggested by Automatic Troubleshooting', entries: [ { field: 'process.executable.caseless', diff --git a/x-pack/solutions/security/plugins/security_solution/server/endpoint/services/workflow_insights/builders/incompatible_antivirus.ts b/x-pack/solutions/security/plugins/security_solution/server/endpoint/services/workflow_insights/builders/incompatible_antivirus.ts index 727a6d09288e4..52c9d4b1e2427 100644 --- a/x-pack/solutions/security/plugins/security_solution/server/endpoint/services/workflow_insights/builders/incompatible_antivirus.ts +++ b/x-pack/solutions/security/plugins/security_solution/server/endpoint/services/workflow_insights/builders/incompatible_antivirus.ts @@ -113,7 +113,7 @@ export async function buildIncompatibleAntivirusWorkflowInsights( { list_id: ENDPOINT_ARTIFACT_LISTS.trustedApps.id, name: defendInsight.group, - description: 'Suggested by Security Workflow Insights', + description: 'Suggested by Automatic Troubleshooting', entries: [ { field: 'process.executable.caseless',