﻿---
title: Capture Elastic Agent diagnostics
description: Elastic's diagnostic tools capture point-in-time snapshots of Fleet and Elastic Agent related statistics and logs. They work against all product versions...
url: https://www.elastic.co/elastic/docs-builder/docs/3016/troubleshoot/ingest/fleet/diagnostics
products:
  - Elastic Agent
  - Fleet
applies_to:
  - Elastic Cloud Serverless: Generally available
  - Elastic Stack: Generally available
---

# Capture Elastic Agent diagnostics
Elastic's diagnostic tools capture point-in-time snapshots of Fleet and Elastic Agent related statistics and logs. They work against all product versions.
Their information can be used to troubleshoot problems with your setup. You can generate diagnostic information using this tool before [escalating to us](/elastic/docs-builder/docs/3016/troubleshoot/ingest/fleet/fleet-elastic-agent#troubleshooting-intro-escalate) to minimize turnaround time.

## Which information do I need?

For [Fleet-managed Elastic Agent](https://www.elastic.co/elastic/docs-builder/docs/3016/reference/fleet/install-fleet-managed-elastic-agent), related settings and states can by surfaced by:
- Kibana from the [Kibana Fleet APIs](https://www.elastic.co/elastic/docs-builder/docs/3016/reference/fleet/fleet-api-docs)
- Elastic Agent and Fleet from their [command reference](https://www.elastic.co/elastic/docs-builder/docs/3016/reference/fleet/agent-command-reference)

[Standalone Elastic Agents](https://www.elastic.co/elastic/docs-builder/docs/3016/reference/fleet/install-standalone-elastic-agent) are not associated to Kibana nor Fleet, but their diagnostics are still accessible from the CLI.
To pull data from the respective applicable locations, refer to:
- [Capture Kibana diagnostics](https://www.elastic.co/elastic/docs-builder/docs/3016/troubleshoot/kibana/capturing-diagnostics)
- [Collect Elastic Agent diagnostics](#agent-diagnostics-collect)
  - [Using the CLI](#agent-diagnostics-cli)
- [Using the Fleet UI](#agent-diagnostics-ui)
  <note applies-to="Elastic Cloud Hosted: Generally available">
  To pull Elastic Agent diagnostics for the managed [Fleet Server](https://www.elastic.co/elastic/docs-builder/docs/3016/reference/fleet/fleet-server) on your hosted deployment, you have to use the Fleet UI. The Fleet Server agent is associated with a managed agent policy named "Elastic Cloud agent policy".
  </note>

You need to determine which diagnostic types are needed to investigate your specific issue. This table shows common troubleshooting situations and which diagnostics are commonly associated:

| Situation                                      | Kibana | Elastic Agent | Fleet |
|------------------------------------------------|--------|---------------|-------|
| Kibana reports there's no Fleet Server         | Yes    | No            | Yes   |
| Elastic Agent is unable to connect to Fleet    | No     | Yes           | Yes   |
| Elastic Agent component or integration errors  | No     | Yes           | No    |
| Elastic Agent update issues or desynced status | Yes    | Yes           | No    |

When in doubt, start with the Kibana and Elastic Agent diagnostics.
<tip>
  Some Elastic Agent configuration issues only appear in the agent's start-up debug logs. This is more common for cloud-connecting [Elastic integrations](https://www.elastic.co/docs/reference/integrations) which maintain checkpoints. This can cause later logs to only document that the subprocess has stopped or that it has not changed state after an earlier error. In these situations, follow these steps:
  1. Enable [`debug` logging](/elastic/docs-builder/docs/3016/reference/fleet/monitor-elastic-agent#change-logging-level).
  2. [Restart Elastic Agent](/elastic/docs-builder/docs/3016/reference/fleet/agent-command-reference#elastic-agent-restart-command).
  3. Wait 10 minutes for the changes to sync from the Fleet Server to the Elastic Agent and for the Elastic Agent to restart.
  4. Pull the Elastic Agent diagnostics using your preferred method.
  5. Disable `debug` logging.
</tip>


## Collect Elastic Agent diagnostics

Elastic Agent comes bundled with a [`diagnostics` command](/elastic/docs-builder/docs/3016/reference/fleet/agent-command-reference#elastic-agent-diagnostics-command) which generates a zip archive containing troubleshooting diagnostic information. This export is intended only for debugging purposes and its structure can change between releases.
The Fleet UI provides the ability to remotely generate and gather an Elastic Agent's diagnostics bundle if it is online in a [`Healthy` or `Unhealthy` status](/elastic/docs-builder/docs/3016/reference/fleet/monitor-elastic-agent#view-agent-status). For Elastic Agents in other statuses, you must use the CLI to grab their diagnostic.
<warning>
  Diagnostics and logs mainly emit product metadata and settings, but they might expose sensitive data which needs to be redacted before being shared outside of your organization. For more details, refer to [Sanitize](#agent-diagnostics-sanitize).
</warning>


### Using the Fleet UI

The diagnostics are sent to Fleet Server which in turn sends it to Elasticsearch. Therefore, this works even with Elastic Agents that are not using the Elasticsearch output. To download the diagnostics bundle for local viewing:
1. In Fleet, open the **Agents** tab.
2. In the **Host** column, click the agent’s name.
3. Select the **Diagnostics** tab and click the **Request diagnostics .zip** button.
   ![Collect agent diagnostics under agent details](https://www.elastic.co/elastic/docs-builder/docs/3016/troubleshoot/images/fleet-collect-agent-diagnostics1.png)
4. In the **Request diagnostics** pop-up, select **Collect additional CPU metrics** if you’d like detailed CPU data.
   ![Collect agent diagnostics confirmation pop-up](https://www.elastic.co/elastic/docs-builder/docs/3016/troubleshoot/images/fleet-collect-agent-diagnostics2.png)
5. Click the **Request diagnostics** button.

When it is available, the new diagnostics bundle is listed on the **Diagnostics** tab along with any in-progress or previously collected bundles for the Elastic Agent.
The diagnostics bundles are stored in Elasticsearch and are removed automatically after 7 days. You can also delete any previously created bundles by clicking the trash can icon.

### Using the CLI

Run the [`diagnostics` command](/elastic/docs-builder/docs/3016/reference/fleet/agent-command-reference#elastic-agent-diagnostics-command) in the Elastic Agent's [install directory](https://www.elastic.co/elastic/docs-builder/docs/3016/reference/fleet/installation-layout). Depending on your operating system, run:
- Linux-based systems
  ```shell
  cd /opt/Elastic/Agent
  .elastic-agent diagnostics
  ```
- Windows Powershell
  ```shell
  cd "C:\Program Files\Elastic\Agent"
  .\elastic-agent.exe diagnostics
  ```
- Apple MacOS
  ```shell
  sudo -i
  cd /Library/Elastic/Agent
  ./elastic-agent diagnostics
  ```
- Docker
  1. Determine the container ID with Docker [`ps`](https://docs.docker.com/reference/cli/docker/container/ps/).
  ```shell
  docker ps | grep "beats/elastic-agent"
  ```
  1. Use Docker [`exec`](https://docs.docker.com/reference/cli/docker/container/exec/) to run the diagnostics, replacing the `CONTAINER_ID` placeholder.
  ```shell
  docker exec -it CONTAINER_ID elastic-agent diagnostics
  ```
  Note the filename and location of the output file.
  1. Use Docker [`cp`](https://docs.docker.com/reference/cli/docker/container/cp/) to copy the diagnostic file to your local machine, replacing the `CONTAINER_ID` and `FILE_NAME` placeholders:
  ```shell
  docker cp CONTAINER_ID:/usr/share/elastic-agent/FILE_NAME FILE_NAME
  ```
- Kubernetes
  1. Determine the container ID with [`get`](https://kubernetes.io/docs/reference/kubectl/generated/kubectl_get/).
  ```shell
  kubectl get pods --all-namespaces | grep agent
  ```
  1. Run the diagnostics with [`exec`](https://kubernetes.io/docs/reference/kubectl/generated/kubectl_exec/), replacing the `NAMESPACE` and `POD_NAME` placeholders:
  ```shell
  kubectl exec --stdin --tty POD_NAME -n NAMESPACE -- elastic-agent diagnostics
  ```
  Note the filename and location of the output file.
  1. Use [`cp`](https://kubernetes.io/docs/reference/kubectl/generated/kubectl_cp/) to copy the diagnostic file to your local machine, replacing the `NAMESPACE`, `POD_NAME`, and `FILE_NAME` placeholders.
  ```shell
  kubectl cp NAMESPACE/POD_NAME:FILE_NAME FILE_NAME
  ```


### Sanitize

Elastic Agent attempts to automatically redact credentials and API keys when creating [its diagnostic files](/elastic/docs-builder/docs/3016/reference/fleet/agent-command-reference#elastic-agent-diagnostics-command). Review the contents of the archive before sharing it to ensure that all forms of organizational private information is censored as needed. For example, ensure:
- There are no credentials in plain text in the [`*.yaml` diagnostic files](/elastic/docs-builder/docs/3016/reference/fleet/agent-command-reference#elastic-agent-diagnostics-command).
- The raw form of events failing to output is shown in `*.ndjson`. By default, only `warn` logs are registered. To log all events, enable the `debug` logging level. If you want to omit the raw events from the diagnostics, add the flag `--exclude-events`.