This page aligns with the new Grail security events table. For the complete list of updates and actions needed to accomplish the migration, follow the steps in the Grail security table migration guide.
Ingest Docker Scout vulnerability findings and scan events into Dynatrace as security events. The integration runs as an Extension 2.0 on Dynatrace ActiveGate, which periodically polls Docker Hub for new container images, triggers scans via Docker Scout CLI, and ingests enriched findings with runtime context so you can prioritize, visualize, and automate remediation of vulnerabilities affecting production applications.
Dynatrace integration with Docker Scout allows teams to unify and contextualize vulnerability findings from container images hosted on Docker Hub, enabling centralized prioritization, visualization, and automation of security findings.
Docker Scout scans container images on Docker Hub and reports vulnerability findings and software bill of materials (SBOM) data.
Dynatrace observes the runtime entities that use those images. Ingesting and enriching Docker Scout findings with runtime context helps teams focus on high-impact vulnerabilities that affect production applications.
With the ingested data, you can accomplish various use cases, such as
See below for the Docker Scout and Dynatrace requirements.
Optional Activate Docker Scout on the Docker Hub repositories you want to monitor.
When enabled, Docker Scout automatically scans newly pushed images and updates results when vulnerability data changes. Docker Scout doesn't expose this trigger behavior through API endpoints, so Dynatrace integration triggers scans via Docker CLI on ActiveGate.
ActiveGate version 1.310+ that must:
Dedicated limits option for Performance profile—see ActiveGate performance profile configuration.Deploy and configure Docker and Docker Scout CLI on ActiveGate:
Install Docker Engine/CLI on the ActiveGate host so the docker command is available.
Create a dedicated home directory for the ActiveGate user:
mkdir -p /home/dtuserag
Assign ownership to the ActiveGate user:
chown dtuserag:dtuserag /home/dtuserag
Switch to the ActiveGate user and open a shell:
sudo -u dtuserag -s
Set HOME to the writable directory:
export HOME=/home/dtuserag
Install Docker Scout CLI in the ActiveGate user home (this adds the docker scout functionality):
HOME=/home/dtuserag curl -fsSL https://raw.githubusercontent.com/docker/scout-cli/main/install.sh | sh
Permissions: For a list of permissions required, go to Hub, select
Extensions, and display Technical information.
Generate an access token with the openpipeline.events_security scope and save it for later. For details, see Dynatrace API - Tokens and authentication.
In Dynatrace, search for Docker Scout and select Install.
Follow the on-screen instructions to configure the extension.
Verify configuration by running the following queries in
Notebooks:
For finding events:
fetch security.events| filter dt.system.bucket == "default_securityevents"| filter event.provider == "Docker Scout"AND event.type == "VULNERABILITY_FINDING"
For scan events:
fetch security.events| filter dt.system.bucket == "default_securityevents"| filter event.provider == "Docker Scout"AND event.type == "VULNERABILITY_SCAN"
Once the extension is installed and working, you can access and manage it in Dynatrace via
Extensions. For details, see About Extensions.

The Docker Scout extension polls Docker Hub for new container images, triggers scans via Docker Scout CLI on ActiveGate, and ingests vulnerability findings into Dynatrace security events.
Dynatrace integration with Docker Scout is an extension running on Dynatrace ActiveGate. Once you enable and configure the extension:
default_securityevents (for details, see Built-in Grail buckets).For billing information, see Events powered by Grail.
Vulnerability finding events store individual vulnerability findings reported by Docker Scout per affected artifacts and components.
Vulnerability scan events indicate coverage of scans for individual artifacts.
Docker Scout Common Vulnerabilities and Exposures (CVE) for various Software Bill of Materials (SBOM) components are reported as findings for discovered Docker Hub images based on the organization and repository selection in extension configuration.
The extension runs periodically (default: 24 hour interval). On each run, the extension checks for any newly pushed images in Docker Hub within the configured time window and scans them for new findings accordingly. Only the images pushed during that interval are considered for processing.
If no new container images are detected, no findings or scan events are ingested.
We recommend setting the security findings ingest frequency to 24 hours, as it allows the system to handle 100+ images on average per day. This estimate is based on an ActiveGate setup running on an EC2 instance with 4 CPUs and 16 GB RAM. Higher resource configurations may process a greater number of images.
The container_image namespace is added for container image-related information with the following fields:
container_image.digest represents the container image digest; this value can be used to match runtime containers.container_image.repository represents the container repository name.container_image.registry represents the container registry name.container_image.tags represents the tags associated with a container image in a repository.CONTAINER_IMAGE: Findings from Docker Scout are generated by vulnerability assessments of container images and are mapped with CONTAINER_IMAGE in object.type. The container_image namespace is added, and container_image.digest is used to match ingested findings to runtime containers monitored by Dynatrace.
Dynatrace normalizes severity and risk scores for all findings ingested through this integration. This helps you prioritize findings consistently, regardless of their source. For details, see Severity and score normalization.
dt.security.risk.score is taken from the severity score reported by Docker Scout in finding.score.
dt.security.risk.level is mapped to fixed values based on dt.security.risk.score.
dt.security.risk.score (mapped from finding.score) | dt.security.risk.level (mapped from dt.security.risk.score) |
|---|---|
| 9.0-10.0 | CRITICAL |
| 7.0-8.9 | HIGH |
| 4.0-6.9 | MEDIUM |
| 0.1-3.9 | LOW |