Upgrade your Datadog Agent

Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

Overview

Datadog recommends you update your Datadog Agent with every minor and patch release. This guide walks you through how to roll out a new Agent version across your hosts in a few clicks.

Upgrade between minor versions of the Agent

Upgrade remotely with Fleet Automation

Fleet Automation enables you to centrally manage your fleet of Datadog Agents. Fleet Automation includes Remote Agent Management, which allows you to remotely upgrade Agents across non-containerized Linux and Windows environments. See Remote Agent Management: Upgrade your Datadog Agents.

Upgrade with script or configuration management tooling

Follow the in-app instructions to upgrade Datadog Agents across container, host-based, and Infrastructure as Code (IaC) tool-managed environments. The guided flow generates an Agent installation command tailored to your platform for upgrading the Agent. By default, the command installs the latest version of the Agent. To upgrade to a specific minor version, set DD_AGENT_MINOR_VERSION=<TARGET_MINOR> before running the script.

Upgrade between major versions of the Agent

Agent 7 only supports Python 3 custom checks. Verify if your custom checks are Python 3 compatible before upgrading to Agent 7.

Upgrade from Agent 6 to Agent 7

Run the following Agent installation command to upgrade your Agent from version 6 to version 7:

The following command works on Amazon Linux, CentOS, Debian, Fedora, Red Hat, Ubuntu, and SUSE:
DD_API_KEY="<DATADOG_API_KEY>" bash -c "$(curl -L https://install.datadoghq.com/scripts/install_script_agent7.sh)"
  1. Download the Datadog Agent installer.
  2. Run the installer (as Administrator) by opening datadog-agent-7-latest.amd64.msi.
  3. Follow the prompts, accept the license agreement, and enter your Datadog API key.
  4. When the install finishes, you are given the option to launch the Datadog Agent Manager.

Note: Links to all available versions of the Windows Installer are provided in JSON format.

Run the Agent installation command with the environment variable DD_AGENT_MAJOR_VERSION=7 to upgrade your Agent from version 6 to version 7:

DD_AGENT_MAJOR_VERSION=7 DD_API_KEY="<DATADOG_API_KEY>" bash -c "$(curl -L https://install.datadoghq.com/scripts/install_mac_os.sh)"

Upgrade from Agent 5 to Agent 7

Run the Agent installation command with the environment variable DD_UPGRADE="true" to upgrade your Agent from version 5 to version 7. The Agent v7 installer can automatically convert v5 configurations during the upgrade:

The following command works on Amazon Linux, CentOS, Debian, Fedora, Red Hat, Ubuntu, and SUSE:
DD_UPGRADE="true" bash -c "$(curl -L https://install.datadoghq.com/scripts/install_script_agent7.sh)"
  1. Upgrade your Agent to version 6 following the manual upgrade process.
  2. Follow the From Agent v6 to Agent v7 upgrade instructions.

Run the Agent installation command with the environment variable DD_AGENT_MAJOR_VERSION=7 and DD_UPGRADE="true" to upgrade your Agent from version 5 to version 7. The Agent v7 installer can automatically convert v5 configurations during the upgrade:

DD_UPGRADE="true" DD_AGENT_MAJOR_VERSION=7 bash -c "$(curl -L https://install.datadoghq.com/scripts/install_mac_os.sh)"

Note: The upgrade process does not automatically move custom Agent checks. This is by design as Datadog cannot guarantee full backwards compatibility out of the box. See the Python 3 Custom Check Migration guide to discover how to migrate your custom check from Python 2 to Python 3.

Further reading

Documentation, liens et articles supplémentaires utiles:

PREVIEWING: ida.adjivon/DOCS-11256