From f87dff3eb67e641b44843f0abcf679cff4f7ace6 Mon Sep 17 00:00:00 2001 From: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com> Date: Thu, 3 Sep 2026 15:16:39 +0100 Subject: [PATCH] docs(telemetry): follow the traces_endpoint rename in the runbook The rename arrived from phase-1b by merge; the runbook still told operators to set `endpoint`, which the parser no longer reads. Updates the Quick Start ini block and the Configuration Reference row. No metrics_endpoint row is added: this branch exports no metrics, so documenting the key here would describe something the code ignores. --- docs/telemetry-runbook.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/telemetry-runbook.md b/docs/telemetry-runbook.md index 0a42eb3b96..6e6bff0757 100644 --- a/docs/telemetry-runbook.md +++ b/docs/telemetry-runbook.md @@ -29,7 +29,7 @@ Add to your `xrpld.cfg`: ```ini [telemetry] enabled=1 -endpoint=http://localhost:4318/v1/traces +traces_endpoint=http://localhost:4318/v1/traces ``` ### 3. Build with telemetry support @@ -45,7 +45,7 @@ cmake --build --preset default | Option | Default | Description | | -------------------------- | --------------------------------- | --------------------------------------------------------- | | `enabled` | `0` | Master switch for telemetry | -| `endpoint` | `http://localhost:4318/v1/traces` | OTLP/HTTP endpoint | +| `traces_endpoint` | `http://localhost:4318/v1/traces` | Full OTLP/HTTP URL for spans, used verbatim | | `service_name` | `xrpld` | OpenTelemetry service name resource attribute | | `service_instance_id` | node public key | OpenTelemetry service instance ID resource attribute | | `trace_rpc` | `1` | Enable RPC request tracing |