Edge Delta on Docker

Installing the Edge Delta agent on Docker.

Overview

The Edge Delta agent can be installed using Docker. You can either run the Edge Delta image stored in the Edge Delta public repository with default settings or you can use a local configuration file. The Edge Delta agent is installed as a container, and it analyses logs and metrics from other containers on the host before streaming them to the configured destinations.


Installing with Default Settings

You can install Edge Delta using Docker without changing any default settings. You first create an Edge Delta agent configuration for Docker if one doesn’t exist in the Edge Delta web app. Then you deploy the agent by running the Edge Delta image, passing in a secret key to your Edge Delta web app configuration.

Create an Edge Delta Agent Configuration

Select the Docker template option in the following steps:

  1. In the Edge Delta App, click Pipelines, and select Pipelines.
  2. Click New Pipeline.
  3. Select the appropriate template.
  4. Specify a tag to identify the agent and environment.
  5. Click Create Configuration.
  6. A new default agent is created. Review the agent configuration in Visual Pipelines.

When you return to the Pipelines page, the new agent configuration is listed.

Deploy an Edge Delta Agent

  1. In the agent table, click the kebab (⋮) button for the newly created agent configuration and click Deploy Instructions.
  2. Select Docker.
  3. Copy and run the command on the Docker host.

This onscreen command creates a container named Edge Delta, passes in the API key required to connect your agent to your Edge Delta account on the web app, and installs the latest image located on the Edge Delta public repository. The following example shows the command in the instructions but with an example key 123456789.

docker run --rm -d --name edgedelta -v /var/run/docker.sock:/var/run/docker.sock:ro -e "ED_API_KEY=123456789" gcr.io/edgedelta/agent:latest

Alternatively, you can visit gcr.io/edgedelta/agent and choose a specific agent version.


Installing with Custom Settings

Using a Local Configuration File

If you have a local config.yaml file for the agent on the host, you can specify that file by adding the following parameter to the docker run command provided by the web app. In this example, you replace $PWD/config.yml with the absolute path of the local configuration file

-v $PWD/config.yml:/edgedelta/config.yml \

Specifying Resource Limits

The Edge Delta agent is a very lightweight resource. Nevertheless, you can limit the CPU or memory resources that the Edge Delta container consumes by adding the following parameter to the docker run command provided by the web app.

--cpus=".25" --memory="256m" \

In this instance the Edge Delta container is limited to one quarter of one CPU and a maximum of 256MB of RAM.

See here for other docker resource constraints that can be set.