| Idle | Idle time for build workers, which can happen if you have configured a [max parallelism limit](/manuals/build/buildkit/configure.md#max-parallelism). |
### Build dependencies
The **Dependencies** section shows images and remote resources used during
the build. Resources listed here include:
- Container images used during the build
- Git repositories included using the `ADD` Dockerfile instruction
- Remote HTTPS resources included using the `ADD` Dockerfile instruction
### Arguments, secrets, and other parameters
The **Configuration** section of the Info tab shows parameters passed to the build:
- Build arguments, including the resolved value
- Secrets, including their IDs (but not their values)
- SSH sockets
- Labels
- [Additional contexts](/reference/cli/docker/buildx/build/#build-context)
### Outputs and artifacts
The **Build results** section shows a summary of the generated build artifacts,
including image manifest details, attestations, and build traces.
Attestations are metadata records attached to a container image.
The metadata describes something about the image,
for example how it was built or what packages it contains.
For more information about attestations, see [Build attestations](/manuals/build/metadata/attestations/_index.md).
Build traces capture information about the build execution steps in Buildx and
BuildKit. The traces are available in two formats: OTLP and Jaeger. You can
download build traces from Docker Desktop by opening the actions menu and
selecting the format you want to download.
#### Inspect build traces with Jaeger
Using a Jaeger client, you can import and inspect build traces from Docker
Desktop. The following steps show you how to export a trace from Docker Desktop
and view it in [Jaeger](https://www.jaegertracing.io/):
1. Start Jaeger UI:
```console
$ docker run -d --name jaeger -p "16686:16686" jaegertracing/all-in-one
```
2. Open the Builds view in Docker Desktop, and select a completed build.
3. Navigate to the **Build results** section, open the actions menu and select **Download as Jaeger format**.
<video controls>
<source src="/assets/video/build-jaeger-export.mp4" type="video/mp4" />