Skip to main content

Docker Sources

Docker is a lightweight open platform that provides a way to package applications in containers for a software development environment.

info

Windows operating systems are not supported.

You can add the following types of Docker Sources to an Installed Collector on Linux:

  • Docker Logs. Collects stdout/stderr logs from processes that are running within Docker containers.
  • Docker Stats. Collects metrics about Docker containers.
note

There are alternative methods for collecting Docker logs and metrics. See Docker Collection Methods for more information.

Notes regarding Docker Sources

  • We recommend running the Sumo collector on the same host where you run Docker. You can deploy the collector as a Docker container. For more information, see https://hub.docker.com/r/sumologic/collector.
  • The Sumo Logic Collector uses the Docker Remote API to collect Docker logs. This requires that the log driver configured on the container uses either the json-file or journald option, as described in https://docs.docker.com/engine/admin/logging/overview.
  • If you're using Kubernetes we recommend using an open source Sumo Logic Kubernetes Collection Helm Chart.
  • The Docker Log Source uses timestamps from logs to track collection. You need to ensure your log format has a well-defined timestamp and the Source is configured to detect it properly. If there are issues with timestamp detection and the Docker container is restarted the Source will reingest all log data since there are no timestamps to track.
  • Docker truncates logs at 16kb and Sumo Logic does not stitch them back together.

Add a Docker Logs Source

  1. In the Sumo web app, select Manage Data > Collection > Collection.

  2. Navigate to the collector you installed on the Docker host, and select Add > Add Source.

  3. Select Docker Logs. The Docker Logs page appears.

    docker logs source.png

  4. Configure the source fields:

    • Name. (Required).

    • Description. (Optional).

    • URI. Enter the URI of the Docker daemon.

      • If your collector runs on the same host as the Docker containers it will monitor, enter the non-networked Unix socket: unix:///var/run/docker.sock

      • If your collector runs on a different machine than the Docker host, you can determine its URI from a Docker environment variable. Run the docker-machine command to find the Docker environment variables. The command's syntax is $ docker-machine env machine-name. For example,

        $ docker-machine env default
        export DOCKER_TLS_VERIFY="1"
        export DOCKER_HOST="tcp://192.168.99.100:2376"
        export DOCKER_CERT_PATH="/Users/sumo/.docker/machine/machines/default"
        export DOCKER_MACHINE_NAME="default"
        # Run this command to configure your shell:
        # eval "$(docker-machine env default)"

        Take the value of the DOCKER_HOST variable, change "tcp" to "https", and enter that value as the URI. For example, https://192.168.99.100:2376.

    • Cert Path. (Required for remote access only) Enter the path to the certificate files on the local machine where the collector runs. In the example above, the cert path is: /Users/sumo/.docker/machine/machines/default.

    • Event Logs. Check this box to collect Docker events as well as standard Docker logs.

    • Collect From and Container Filters. If you want to collect from all containers, click the All Containers radio button. If you want to collect from selected containers, click the Specified Container Filters radio button, and specify filter expressions in the Container Filters field. For information about how to define container filters, see more about defining container filters below.

      By default, you can collect from up to 40 containers. To increase the limit, stop the Collector service, edit the collector.properties file (in the config subdirectory of the collector installation directory), and add the docker.maxPerContainerConnections property. The maximum supported value is 100. Then start the Collector service. See collector.properties for details on modifying this configuration file.

    • Source Host. Enter the hostname or IP address of the source host. If not specified, it’s assumed that the host is the machine where Docker is running. The hostname can be a maximum of 128 characters.  If desired, you can use Docker variables to construct the Source Host value. For more information, see Configure sourceCategory and sourceHost using variables.

    • Source Category. Enter a string used to tag the output collected from this Source with searchable metadata. For example, typing web_apps tags all the logs from this Source in the sourceCategory field, so running a search on _sourceCategory=web_apps would return logs from this Source. For more information, see Metadata Naming Conventions and our Best Practices: Good and Bad Source Categories. If desired, you can use Docker variables to construct the Source Category value. For more information, see Configure sourceCategory and sourceHost using variables.

    • Fields. Click the +Add Field link to define the fields you want to associate, each field needs a name (key) and value.

      • green check circle.png A green circle with a check mark is shown when the field exists in the Fields table schema.
      • orange exclamation point.png An orange triangle with an exclamation point is shown when the field doesn't exist in the Fields table schema. In this case, an option to automatically add the nonexistent fields to the Fields table schema is provided. If a field is sent to Sumo that does not exist in the Fields schema it is ignored, known as dropped.
  5. Configure the Advanced options.

    • Enable Timestamp Parsing. This option is checked by default and required. See the Notes section above for details.

    • Time Zone. Default is “Use time zone from log file”.

    • Timestamp Format. Default is “Automatically detect the format”.

    • Encoding. Default is “UTF-8”.

    • Enable Multiline Processing. The Detect messages spanning multiple lines option is checked by default. See Collecting Multiline Logs for details on multiline processing and its options.

      • Infer Boundaries. This option is checked by default.
      • Boundary Regex. If multiple processing is enabled, and Infer Boundaries is disabled, enter a regular expression for message boundaries.
  6. Configure processing rules. For more information, see Processing Rules.

Add a Docker Stats Source

  1. In Sumo select Manage Data > Collection > Collection.

  2. Navigate to the collector you installed on the Docker host, and select Add > Add Source.

  3. Select Docker Stats. The following Docker Stats page appears. There are two possible content types available, select Metrics to collect data as metrics, or select Logs (JSON) to collect data as JSON logs.

    note

    To collect metrics for the Docker ULM App, select Metrics as the Content Type.

    docker-stats.png

  4. Configure the source fields:

    • Name. (Required)

    • Description. (Optional)

    • URI. Enter the URI of the Docker daemon.

      • If your collector runs on the same host as the Docker containers it will monitor, enter the non-networked Unix socket: unix:///var/run/docker.sock

      • If your collector runs on a different machine than the Docker host, you can determine its URI from a Docker environment variable. Run the docker-machine command to find the Docker environment variables. The command's syntax is $ docker-machine env machine-name. For example:

        $ docker-machine env default
        export DOCKER_TLS_VERIFY="1"
        export DOCKER_HOST="tcp://192.168.99.100:2376"
        export DOCKER_CERT_PATH="/Users/sumo/.docker/machine/machines/default"
        export DOCKER_MACHINE_NAME="default"
        # Run this command to configure your shell:
        # eval "$(docker-machine env default)"

        Take the value of the DOCKER_HOST variable, change "tcp" to "https", and enter that value as the URI. For example, https://192.168.99.100:2376.

      • Cert Path. (Required for remote access only) Enter the path to the certificate files on the local machine where the collector runs. In the example above, the cert path is: /Users/sumo/.docker/machine/machines/default * Collect From and Container Filters. If you want to collect from all containers, click the All Containers radio button. If you want to collect from selected containers, click the Specified Container Filters radio button, and specify filter expressions in the Container Filters field. For information about how to define container filters, see more about defining container filters below.

      By default, you can collect from up to 40 containers. To increase the limit, stop the Collector service, edit the collector.properties file (in the config subdirectory of the collector installation directory), and add the docker.maxPerContainerConnections property. The maximum supported value is 100. Then start the Collector service. See collector.properties for details on modifying this configuration file.

    • Source Host. Enter the hostname or IP address of the source host. If not specified, it’s assumed that the host is the machine where Docker is running. The hostname can be a maximum of 128 characters. If desired, you can use Docker variables to construct the Source Host value. For more information, see Configure sourceCategory and sourceHost using variables.

    • Source Category. Enter a string used to tag the output collected from this Source with searchable metadata. For example, typing web_apps tags all the logs from this Source in the sourceCategory field, so running a search on _sourceCategory=web_apps would return logs from this Source. For more information, see Metadata Naming Conventions and our Best Practices: Good and Bad Source Categories. If desired, you can use Docker variables to construct the Source Host value. For more information, see Configure sourceCategory and sourceHost using variables.

    • Fields. Click the +Add Field link to add custom metric metadata. Define the fields you want to associate, providing a name (key) and value for each.

    • Scan Interval. This option sets how often the source is scanned. Setting a shorter frequency increases message volume, and can cause your deployment to incur additional charges. The minimum acceptable scan interval is 1 second.

    • Metrics (Available if content type selected is Metrics). Select the Docker metrics you want to be ingested, see Docker metrics definitions for details.

Docker metrics definitions

CPU

Metrics NameUnitDescription
cpu_percentagePercentPercentage of CPU used
online_cpusCountNumber of CPUs online (only available on API v1.27 or higher)
system_cpu_usageNanosecondsHost’s cumulative CPU usage
cpu_usage.percpu_usageNanosecondsRespective usage for every CPU (scalable with cpu=[0..x])
cpu_usage.total_usageNanoseconds on Linux 100's of nanoseconds on WindowsTotal CPU time consumed
cpu_usage.usage_in_kernelmodeNanosecondsCPU usage in the kernel mode
cpu_usage.usage_in_usermodeNanosecondsCPU usage in the user mode
throttling_data.periodsCountNumber of enforcement intervals that have elapsed
throttling_data.throttled_periodsCountNumber of enforcement intervals that have been throttled
throttling_data.throttled_timeNanosecondsTotal CPU time has been throttled

Memory

Metrics NameUnitDescription
failcntCountTimes of memory usage hit the limits
limitBytesMemory limit set on the container (or on the host if it's not set on container)
max_usageBytesMaximum of memory usage
memory_percentagePercentPercentage of memory used
usageBytesCurrent memory usage
stats.active_anonBytesThe anonymous memory that has been identified as active by the kernel
stats.active_fileBytesThe file cache memory that has been identified as active by the kernel
stats.cacheBytesThe memory used by the processes of this cgroup that can be associated precisely with a block on a block device
stats.hierarchical_memory_limitBytesThe hierarchical memory limit
stats.inactive_anonByteshe anonymous memory that has been identified as inactive by the kernel
stats.inactive_fileBytesThe file cache memory that has been identified as inactive by the kernel
stats.mapped_fileBytesThe cache memory mapped by the processes in the cgroup
stats.pgfaultCountThe number of times that a process of the cgroup triggered a 'page fault'
stats.pgmajfaultCountThe number of times that a process of the cgroup triggered a “major fault”
stats.pgpginCountThe number of times that the system has paged in from disk
stats.pgpgoutCountThe number of times that the system has paged out to disk
stats.rssBytesThe memory that does not correspond to anything on disk: stacks, heaps, or anonymous memory maps
stats.rss_hugeBytesThe anonymous memory transparent hugepages
stats.unevictableBytesThe memory that cannot be reclaimed
stats.writebackBytesFile anonymous cache that are queued for syncing to disk
stats.total_active_anonBytesThe anonymous memory that has been identified has respectively active by the kernel (includes sub-cgroups)
stats.total_active_fileBytesThe file cache memory that has been identified has respectively active by the kernel (includes sub-cgroups)
`stats.total_cacheBytes`The memory used by the processes of this cgroup that can be associated precisely with a block on a block device (includes sub-cgroups)
stats.total_inactive_anonBytesThe anonymous memory that has been identified has respectively inactive by the kernel (includes sub-cgroups)
stats.total_inactive_fileBytesThe file cache memory that has been identified has respectively inactive by the kernel (includes sub-cgroups)
stats.total_mapped_fileBytesThe cache memory mapped by the processes in the control group (includes sub-cgroups)
stats.total_pgfaultCountThe number of times that a process of the cgroup triggered a 'page fault' (includes sub-cgroups)
stats.total_pgmajfaultCountThe number of times that a process of the cgroup triggered a “major fault” (includes sub-cgroups)
stats.total_pgpginCountThe number of times that the system has paged in from disk (includes sub-cgroups)
stats.total_pgpgoutCountThe number of times that the system has paged out to disk (includes sub-cgroups)
stats.total_rssBytesThe memory that doesn’t correspond to anything on disk: stacks, heaps, and anonymous memory maps (includes sub-cgroups)
stats.total_rss_hugeBytesThe anonymous memory transparent hugepages (includes sub-cgroups)
stats.total_unevictableBytesThe memory that cannot be reclaimed (includes sub-cgroups)
stats.total_writebackBytesFile anonymous cache that are queued for syncing to disk (includes sub-cgroups)

Network - Scalable on API v1.21 or higher, with dimension "interface"

Metrics NameUnitDescription
rx_bytesBytesData volume (received)
rx_droppedCountNumber of dropped packets (received)
rx_errorsCountNumber of error packets (received)
rx_packetsCountNumber of total packets (received)
tx_bytesBytesData volume (transmitted)
tx_droppedCountNumber of dropped packets (transmitted)
tx_errorsCountNumber of error packets (transmitted)
tx_packetsCountNumber of total packets (transmitted)

BlockIO - Scalable with "major" and "minor" id of devices

Metrics NameUnitDescription
io_merged_recursiveCountNumber of bios/requests merged into requests belonging to all the descendant cgroups
io_queue_recursiveCountNumber of requests queued up at any given instant from all the descendant cgroups
io_service_bytes_recursiveBytesNumber of bytes transferred to/from the disk from all the descendant cgroups
io_service_time_recursiveMillisecondsAmount of time between request dispatch and request completion from all the descendant cgroups
io_serviced_recursiveCountTotal number of block I/O requests serviced in that container
io_time_recursiveMillisecondsDisk time allocated to all devices from all the descendant cgroups
io_wait_time_recursiveMillisecondsAmount of time the IOs for this cgroup spent waiting in the scheduler queues for service from all the descendant cgroups
sectors_recursiveCountNumber of sectors transferred to/from disk bys from all the descendant cgroups

PIDs

Metrics NameUnitDescription
currentCountNumber of PIDs (Not available on Windows)

More about defining container filters  

In the Container Filter field, you can enter a comma-separated list of one or more of the following types of filters:

  • A specific container name, for example, “my-container”
  • A wildcard filter, for example, “my-container-*”
  • An exclusion filter, which begins with an exclamation mark, for example, ”!master-container” or “!prod-*”

For example, this filter list:

prod-*, !prod-*-mysql, master-*-app-*, sumologic-collector

will cause the source to collect from all containers whose names start with “prod-”, except those that match “prod-*-mysql”. It will also collect from containers with names that match “master-*-app-*”, and from the “sumologic-collector” container.

If your filter list contains only exclusions, the source will collect all containers except from those that match your exclusion filters. For example:

!container123*, !prod-*

will cause the source to exclude containers whose names begin with “container123” and “prod-”.

Configure sourceCategory and sourceHost using variables

In collector version 19.216-22 and later, when you configure the sourceCategory and sourceHost for a Docker Log Source or a Docker Stats Source, you can specify the value using variables available from Docker and its host.

You build templates for sourceCategory and sourceHost specifying component variables in this form:

{{NAMESPACE.VAR_NAME}}

Where:

  • NAMESPACE is a namespace that indicates the variable type.
  • VAR_NAME is the variable name. These are case-sensitive.

The table below defines the types of variables you can use.

Docker engine events log data doesn't support the tagging with metadata.

Namespace/VAR_TYPEDescriptionVAR_NAME
containerContainer metadata fields provided by Docker for use in the --log-opt tag option. These are automatically added to data points. For more information, see Log tags for logging driver in Docker help.ID — The first 12 characters of the container ID.
FullID — The full container ID.
Name — The container name.
ImageID — The first 12 characters of the container’s image ID.
ImageFullID — The container’s full image ID.
ImageName — The name of the image used by the container.
labelUser-defined labels, supplied with the --label flag when starting a Docker container. This is automatically added to data points.The name of the variable. Dot characters (.) are not supported.
envUser-defined container environment variables that are set with `--env-e` flags when starting a container.

For example:

{{container.ID}}

You can use multiple variables, for example:

{{container.ID}}-{{label.label_name}}-{{env.var_name}}

You can incorporate text in the metadata expression, for example: 

ID{{container.ID}}-AnyTextYouWant{{label.label_name}}
tip

The example above uses a hyphen - character to separate variable components. Separator characters are not required. Curly brackets and spaces are not allowed. Underscores and hyphens are recommended.

If a user-defined variable doesn’t exist, that portion of the metadata field will be blank. 

Status
Legal
Privacy Statement
Terms of Use

Copyright © 2024 by Sumo Logic, Inc.