From 21e6a36cf1b17ff126b3d0253e68a6f3ebfc7c36 Mon Sep 17 00:00:00 2001 From: Jerop Kipruto Date: Mon, 23 Jun 2025 17:24:48 -0400 Subject: [PATCH] docs(telemetry): relocate telemetry documentation (#1327) Moves the telemetry.md file from docs/core to the top-level docs/ directory to make it more discoverable. Updates the link in the main index.md and removes the old reference from the CLI configuration page. --- docs/cli/configuration.md | 1 - docs/index.md | 1 + docs/{core => }/telemetry.md | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename docs/{core => }/telemetry.md (100%) diff --git a/docs/cli/configuration.md b/docs/cli/configuration.md index 8edc07d9..79eda825 100644 --- a/docs/cli/configuration.md +++ b/docs/cli/configuration.md @@ -30,7 +30,6 @@ Gemini CLI uses `settings.json` files for persistent configuration. There are tw In addition to a project settings file, a project's `.gemini` directory can contain other project-specific files related to Gemini CLI's operation, such as: - [Custom sandbox profiles](#sandboxing) (e.g., `.gemini/sandbox-macos-custom.sb`, `.gemini/sandbox.Dockerfile`). -- [Telemtry configurations](../core/telemetry.md#running-an-otel-collector) (e.g., `.gemini/otel/`). ### Available settings in `settings.json`: diff --git a/docs/index.md b/docs/index.md index e5fbb030..0c4ecba1 100644 --- a/docs/index.md +++ b/docs/index.md @@ -17,6 +17,7 @@ This documentation is organized into the following sections: - **[Commands](./cli/commands.md):** Description of available CLI commands. - **[Configuration](./cli/configuration.md):** Information on configuring the CLI. - **[Extensions](./extension.md):** How to extend the CLI with new functionality. + - **[Telemetry](./telemetry.md):** Overview of telemetry in the CLI. - **Core Details:** Documentation for `packages/core`. - **[Core Introduction](./core/index.md):** Overview of the core component. - **[Configuration](./core/configuration.md):** Information on configuring the core component. diff --git a/docs/core/telemetry.md b/docs/telemetry.md similarity index 100% rename from docs/core/telemetry.md rename to docs/telemetry.md