Skip to content
Merged
Show file tree
Hide file tree
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
@@ -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.
*/
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
},
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down