Skip to content

Commit

Permalink
pipeline: outputs: dash0: fix code toggle (#1534)
Browse files Browse the repository at this point in the history
Signed-off-by: Fabian Lange <[email protected]>
  • Loading branch information
CodingFabian authored Dec 18, 2024
1 parent 3b2d793 commit 80e61f4
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions pipeline/outputs/dash0.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 80e61f4

Please sign in to comment.