From 7a6e4f8fedb3dfe562fa960fd98bc9572dd83520 Mon Sep 17 00:00:00 2001 From: "grafana-delivery-bot[bot]" <132647405+grafana-delivery-bot[bot]@users.noreply.github.com> Date: Tue, 1 Jul 2025 12:22:50 +0200 Subject: [PATCH] [release-12.0.3] Docs: Update render service tracing (#107450) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Agnès Toulet <35176601+AgnesToulet@users.noreply.github.com> Co-authored-by: jtvdez --- .../setup-grafana/image-rendering/_index.md | 42 +++++++++++-------- 1 file changed, 24 insertions(+), 18 deletions(-) diff --git a/docs/sources/setup-grafana/image-rendering/_index.md b/docs/sources/setup-grafana/image-rendering/_index.md index 23ecd53aaa3..43c45bf19e5 100644 --- a/docs/sources/setup-grafana/image-rendering/_index.md +++ b/docs/sources/setup-grafana/image-rendering/_index.md @@ -365,6 +365,30 @@ RENDERING_DUMPIO=true } ``` +#### Tracing + +{{< admonition type="note" >}} +Tracing is supported in the image renderer v3.12.6 and later. +{{< /admonition >}} + +Set the tracing URL to enable OpenTelemetry Tracing. The default is empty (disabled). +You can also configure the service name that will be set in the traces. The default is `grafana-image-renderer`. + +```bash +RENDERING_TRACING_URL="http://localhost:4318/v1/traces" +``` + +```json +{ + "rendering": { + "tracing": { + "url": "http://localhost:4318/v1/traces", + "serviceName": "grafana-renderer" + } + } +} +``` + #### Custom Chrome/Chromium If you already have [Chrome](https://www.google.com/chrome/) or [Chromium](https://www.chromium.org/) @@ -580,21 +604,3 @@ RENDERING_VIEWPORT_PAGE_ZOOM_LEVEL=1 } } ``` - -#### Tracing - -Enable OpenTelemetry Tracing by setting the tracing URL. Default is empty (disabled). - -```bash -RENDERING_TRACING_URL="http://localhost:4318/v1/traces" -``` - -```json -{ - "rendering": { - "tracing": { - "url": "http://localhost:4318/v1/traces" - } - } -} -```