Deploy DESK OneAgent as a Docker container

This topic explains how to run OneAgent as a Docker container, as opposed to the standard script-based Linux installation approach.

Running OneAgent as a Docker container gives you full-stack visibility into your complete containerized environment. This includes deep monitoring of supported applications, services, and databases.

The OneAgent container image can also be used for deployment on Kubernetes, Google Kubernetes Engine, and Red Hat OpenShift.

Supported versions

OneAgent deployment via Docker container is supported for Docker Engine versions 1.10 - 1.13.1, 17.03+ CE and EE and is available only for Linux-based hosts. Installation within the container isn't supported. For more information, see the limitations of this deployment model.

Requirements

  • You need DESK environment credentials.

  • Your Docker environment must allow your OneAgent container to run in privileged mode.

Note:
Starting from the image version 1.11.1000, OneAgent Docker image no longer ships with the OneAgent installer contained within it. Instead the installer is downloaded from your environment during the image startup process. The image is forward compatible with new OneAgent versions and there is no specific link between the OneAgent version and the image version. The only dependency that exists is a requirement for a minimum supported OneAgent version for a given image version. For details see the table below:

Image version Minimum required OneAgent version
1.11.1000 - 1.12.1000 1.119
1.13.1000 - 1.21.1000 1.139
>= 1.22.1000 1.157

Locate your OneAgent installer URL

The first step is to obtain the location for ONEAGENT_INSTALLER_SCRIPT_URL. This information is presented to you during OneAgent installation.

To get your ONEAGENT_INSTALLER_SCRIPT_URL

  1. Select Deploy DESK from the navigation menu.
  2. Click Start installation and select Linux.
  3. Copy the URL, shown below. This is your ONEAGENT_INSTALLER_SCRIPT_URL.

Run OneAgent as a Docker container

To run OneAgent as a Docker container you need to execute the following docker run command on all your Docker hosts:

$ docker run -d --restart=unless-stopped --privileged=true --pid=host --net=host --ipc=host -v /:/mnt/root -e ONEAGENT_INSTALLER_SCRIPT_URL="REPLACE_WITH_YOUR_URL" desk/oneagent APP_LOG_CONTENT_ACCESS=1 <INSTALLER_PARAMETERS>

Be sure to replace REPLACE_WITH_YOUR_URL placeholder with the OneAgent installer URL as explained above.

Note:
Once the container is started, a regular OneAgent full-stack installer is executed and OneAgent files are deployed to the underlying file system of the machine running the container. The installation package and associated shell script are downloaded from your environment upon container startup, using the URL provided for launching the container. The signature of the installer is verified automatically following the download.

Deploy OneAgent via a container orchestration tool

If you use a container orchestration tool, your orchestrator can deploy the OneAgent container for you. The example snippets below show you how to take advantage of orchestration tools in deploying OneAgent to all your nodes.

Custom installation with command line parameters

You can alternatively perform a custom installation with command line parameters.

Security implications

OneAgent is what is referred to as a "super-privileged container." It's designed to have almost complete access to the host system as a root user. The following Docker command options open selected privileges to the host:

--ipc=host - Allows processes running inside the container to directly access the host’s IPC namespace.

--net=host - Allows processes running inside the container to directly access host network interfaces.

--pid=host - Allows processes running inside the container to see and work with all processes in the host process table.

-v /:/mnt/root - Mounts the host's root directory into the container at /mnt/root to enable the installation of OneAgent on the host at /opt/desk.

Limitations

  • Deep monitoring for native (i.e., non-containerized) processes on hosts is disabled. The injection file ld.so.preload on the host file system isn't modified, and therefore the automatic injection into processes running outside of containers isn't possible.
  • Because of this, the JMX plugin can only work with the processes that run inside containers. The JMX plugin is tightly coupled with deep monitoring of Java processes.
  • Capturing of application crashes and core dumps via oneagentdumpproc isn't supported.
  • OneAgent isn't registered in the system's autostart. Lifetime and startup of the container with OneAgent processes is managed by Docker.
  • All the command line parameters of the installer are supported, with the exception of INSTALL_PATH.
  • There is a startup dependency between the container in which OneAgent is deployed and application containers to be instrumented (i.e., which have deep process monitoring enabled). The OneAgent container must be started and the oneagenthelper process must be running prior to the application container being launched so that the application can be properly instrumented.