Local development guide
This guide provides instructions for setting up and using local development features, such as development tracing.
Development tracing
Section titled “Development tracing”Development traces (dev traces) are OpenTelemetry (OTel) traces that help you debug your code by instrumenting interesting events like model calls, tool scheduler, tool calls, etc.
Dev traces are verbose and are specifically meant for understanding agent behaviour and debugging issues. They are disabled by default.
To enable dev traces, set the GEMINI_DEV_TRACING=true environment variable
when running Gemini CLI.
Viewing dev traces
Section titled “Viewing dev traces”You can view dev traces using either Jaeger or the Genkit Developer UI.
Using Genkit
Section titled “Using Genkit”Genkit provides a web-based UI for viewing traces and other telemetry data.
-
Start the Genkit telemetry server:
Run the following command to start the Genkit server:
Terminal window npm run telemetry -- --target=genkitThe script will output the URL for the Genkit Developer UI, for example:
Genkit Developer UI: http://localhost:4000 -
Run Gemini CLI with dev tracing:
In a separate terminal, run your Gemini CLI command with the
GEMINI_DEV_TRACINGenvironment variable:Terminal window GEMINI_DEV_TRACING=true gemini -
View the traces:
Open the Genkit Developer UI URL in your browser and navigate to the Traces tab to view the traces.
Using Jaeger
Section titled “Using Jaeger”You can view dev traces in the Jaeger UI. To get started, follow these steps:
-
Start the telemetry collector:
Run the following command in your terminal to download and start Jaeger and an OTEL collector:
Terminal window npm run telemetry -- --target=localThis command also configures your workspace for local telemetry and provides a link to the Jaeger UI (usually
http://localhost:16686). -
Run Gemini CLI with dev tracing:
In a separate terminal, run your Gemini CLI command with the
GEMINI_DEV_TRACINGenvironment variable:Terminal window GEMINI_DEV_TRACING=true gemini -
View the traces:
After running your command, open the Jaeger UI link in your browser to view the traces.
For more detailed information on telemetry, see the telemetry documentation.
Instrumenting code with dev traces
Section titled “Instrumenting code with dev traces”You can add dev traces to your own code for more detailed instrumentation. This is useful for debugging and understanding the flow of execution.
Use the runInDevTraceSpan function to wrap any section of code in a trace
span.
Here is a basic example:
import { runInDevTraceSpan } from '@google/gemini-cli-core';
await runInDevTraceSpan({ name: 'my-custom-span' }, async ({ metadata }) => { // The `metadata` object allows you to record the input and output of the // operation as well as other attributes. metadata.input = { key: 'value' }; // Set custom attributes. metadata.attributes['gen_ai.request.model'] = 'gemini-4.0-mega';
// Your code to be traced goes here try { const output = await somethingRisky(); metadata.output = output; return output; } catch (e) { metadata.error = e; throw e; }});In this example:
name: The name of the span, which will be displayed in the trace.metadata.input: (Optional) An object containing the input data for the traced operation.metadata.output: (Optional) An object containing the output data from the traced operation.metadata.attributes: (Optional) A record of custom attributes to add to the span.metadata.error: (Optional) An error object to record if the operation fails.