From 80e61f4c50eb2be163673fca4cefaf8c6d064b37 Mon Sep 17 00:00:00 2001 From: Fabian Lange Date: Wed, 18 Dec 2024 11:18:27 +0100 Subject: [PATCH] pipeline: outputs: dash0: fix code toggle (#1534) Signed-off-by: Fabian Lange --- pipeline/outputs/dash0.md | 56 +++++++++++++++++++-------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/pipeline/outputs/dash0.md b/pipeline/outputs/dash0.md index d4e6877e1..59a858706 100644 --- a/pipeline/outputs/dash0.md +++ b/pipeline/outputs/dash0.md @@ -29,35 +29,35 @@ To get started with sending logs to Dash0: 1. Get an [Auth Token](https://www.dash0.com/documentation/dash0/key-concepts/auth-tokens) from **Settings** > **Auth Tokens**. 1. In your main Fluent Bit configuration file, append the following `Output` section: - {% tabs %} - {% tab title="fluent-bit.conf" %} - ```text - [OUTPUT] - Name opentelemetry - Match * - Host ingress.eu-west-1.aws.dash0.com - Port 443 - Header Authorization Bearer {your-Auth-token-here} - Metrics_uri /v1/metrics - Logs_uri /v1/logs - Traces_uri /v1/traces - ``` - {% endtab %} +{% tabs %} +{% tab title="fluent-bit.conf" %} +```text +[OUTPUT] + Name opentelemetry + Match * + Host ingress.eu-west-1.aws.dash0.com + Port 443 + Header Authorization Bearer {your-Auth-token-here} + Metrics_uri /v1/metrics + Logs_uri /v1/logs + Traces_uri /v1/traces +``` +{% endtab %} - {% tab title="fluent-bit.yaml" %} - ```yaml - [OUTPUT] - Name: opentelemetry - Match: * - Host: ingress.eu-west-1.aws.dash0.com - Port: 443 - Header: Authorization Bearer {your-Auth-token-here} - Metrics_uri: /v1/metrics - Logs_uri: /v1/logs - Traces_uri: /v1/traces - ``` - {% endtab %} - {% endtabs %} +{% tab title="fluent-bit.yaml" %} +```yaml +[OUTPUT] + Name: opentelemetry + Match: * + Host: ingress.eu-west-1.aws.dash0.com + Port: 443 + Header: Authorization Bearer {your-Auth-token-here} + Metrics_uri: /v1/metrics + Logs_uri: /v1/logs + Traces_uri: /v1/traces +``` +{% endtab %} +{% endtabs %} ## References