Ingest JFrog Xray vulnerability findings, scan events, and audit logs into Dynatrace as security events.
Dynatrace integration with JFrog allows you to unify and contextualize JFrog Xray security findings and audit activity across repositories and artifacts for visualization, analysis, and automation in Dynatrace.
JFrog provides security scanning capabilities through JFrog Xray, which scans artifacts and dependencies stored in JFrog Artifactory to identify security vulnerabilities, license compliance issues, and other risks.
Dynatrace ingests and enriches JFrog findings with runtime context to help DevSecOps teams filter and prioritize the risks that affect production applications and code artifacts.
With the ingested data, you can accomplish various use cases, such as
See below for the JFrog and Dynatrace requirements.
A JFrog platform account with access to the Artifactory repositories and Xray policies that should be monitored.
JFrog Xray enabled on your JFrog platform instance.
An Access Token for API authentication with the required permissions to read Xray findings and audit logs.
Xray watches and policies configured to generate security violations on the repositories you want to monitor.
ActiveGate version 1.310+ that needs to be able to
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 JFrog and select Install.
Follow the on-screen instructions to configure the extension.
Configure audit log ingest in your JFrog Cloud Portal. For details, see the JFrog Cloud log streaming documentation.
The extension provides Processing in OpenPipeline to enrich the audit logs. A Configure a processing pipeline needs to be created to point the audit logs to the provided processor as follows:
log.source == "jfrog_artifactory"JFrog ExtensionVerify configuration by running the following queries in
Notebooks:
For audit logs:
fetch logs| filter log.source=="JFrog"
For finding events:
fetch security.events| filter dt.system.bucket == "default_securityevents"| filter event.provider=="JFrog"AND event.type=="VULNERABILITY_FINDING"
For scan events:
fetch security.events| filter dt.system.bucket == "default_securityevents"| filter event.provider=="JFrog"AND event.type=="VULNERABILITY_SCAN"
After the extension is installed and working, you can access and manage it in Dynatrace via
Extensions. For details, see About Extensions.

Dynatrace integration with JFrog is an extension running on Dynatrace ActiveGate. After you enable and configure the Dynatrace JFrog 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 JFrog Xray for affected artifacts and components.
Vulnerability scan events indicate scan coverage for individual artifacts.
Audit logs represent user activity logs.
If the extension is configured to ingest data at an interval of n hours, then each run ingests all security events updated in the last n hours.
On the first ingest, Dynatrace considers findings updated in the last m hours, where m is the first ingest interval configured in the monitoring configuration.
If no new or updated findings are detected, no findings are ingested.
The container_image namespace is added for container image related information:
container_image.digest represents the container image digest and can be used to match runtime containers.container_image.repository represents the container repository name.container_image.registry represents the container registry name.The jfrog namespace is added for JFrog-specific attributes on top of the core schema. The full upstream payload is stored in event.original_content.
Example fields:
jfrog.repository.name: Artifactory repository name.jfrog.repository.type: Repository type (e.g., local, remote, virtual).jfrog.artifact.path: Path of the affected artifact within the repository.CONTAINER_IMAGE: Findings generated by vulnerability assessments of container images stored in JFrog Artifactory are mapped with the CONTAINER_IMAGE value in the object.type field. The container_image namespace is added, and container_image.digest is used to match ingested findings to runtime containers monitored by Dynatrace.
CODE_ARTIFACT: Findings generated by vulnerability assessments of code artifacts are mapped with the CODE_ARTIFACT value in the object.type field. These findings aren't natively mapped to runtime entities 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.level is mapped from JFrog Xray severity values returned by the vulnerability findings API.
dt.security.risk.score is derived from dt.security.risk.level using Dynatrace static severity-to-score mapping.
dt.security.risk.level (mapped from finding.severity) | dt.security.risk.score (mapped from dt.security.risk.level) |
|---|---|
Critical -> CRITICAL | 10.0 |
High -> HIGH | 8.9 |
Medium -> MEDIUM | 6.9 |
Low -> LOW | 3.9 |
Unknown -> NONE | 0.0 |