From c65dfd5559064177e16b64669676d992390bc68b Mon Sep 17 00:00:00 2001 From: David Kilfoyle <41695641+kilfoyle@users.noreply.github.com> Date: Thu, 8 Feb 2024 13:48:57 -0500 Subject: [PATCH] Add troubleshooting for agent that can't be unenrolled (#903) * Add troubleshooting for agent that can't be uninstalled * change title * Add missing quotation mark (cherry picked from commit fe54e95fd617f2dd528479d2367e53aaa4835c86) --- .../troubleshooting/troubleshooting.asciidoc | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/docs/en/ingest-management/troubleshooting/troubleshooting.asciidoc b/docs/en/ingest-management/troubleshooting/troubleshooting.asciidoc index 3a8cc8ac2..77faf285a 100644 --- a/docs/en/ingest-management/troubleshooting/troubleshooting.asciidoc +++ b/docs/en/ingest-management/troubleshooting/troubleshooting.asciidoc @@ -29,6 +29,7 @@ Running {agent} standalone? Also refer to <<debug-standalone-agents>>. Find troubleshooting information for {fleet}, {fleet-server}, and {agent} in the following documentation: +* <<deleted-policy-unenroll>> * <<tsdb-illegal-argument>> * <<agents-in-cloud-stuck-at-updating>> * <<fleet-server-not-in-kibana-cloud>> @@ -59,6 +60,41 @@ Find troubleshooting information for {fleet}, {fleet-server}, and {agent} in the * <<fleet-server-integration-removed>> * <<agent-oom-k8s>> + + + +[discrete] +[[deleted-policy-unenroll]] +== {agent} unenroll fails + +In {fleet}, if you delete an {agent} policy that is associated with one or more inactive enrolled agents, when the agent returns back to a `Healthy` or `Offline` state, it cannot be unenrolled. Attempting to unenroll the agent results in an `Error unenrolling agent` message, and the unenrollment fails. + +To resolve this problem, you can use the <<fleet-api-docs,{kib} {fleet} APIs>> to force unenroll the agent. + +To uninstall a single {agent}: + +[source,"shell"] +---- +POST kbn:/api/fleet/agents/<agent_id>/unenroll +{ + "force": true, + "revoke": true +} +---- + +To bulk uninstall a set of {agents}: + +[source,"shell"] +---- +POST kbn:/api/fleet/agents/bulk_unenroll +{ "agents": ["<agent_id1>", "<agent-id2>"], + "force": true, + "revoke": true +} +---- + +We are also updating the {fleet} UI to prevent removal of an {agent} policy that is currently associated with any inactive agents. + [discrete] [[tsdb-illegal-argument]] == illegal_argument_exception when TSDB is enabled